diff --git a/.eslintrc.js b/.eslintrc.js
index 76dceafe..d480dd15 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -50,8 +50,13 @@ module.exports = {
'react/prop-types': 'off', // disable prop-types
'react/require-default-props': 'off', // disable require default props
'react/react-in-jsx-scope': 'off', // react in jsx scope
- 'react/jsx-filename-extension': [2, { extensions: ['.ts', '.tsx'] }],
+ 'react/jsx-filename-extension': [2, { extensions: ['.js', '.jsx', '.ts', '.tsx'] }],
'react/function-component-definition': 'off',
+ "react/no-array-index-key": "off",
+ "react/jsx-props-no-spreading": "off",
+ "no-use-before-define": "off",
+ "import/no-default-export": "off",
+ "import/prefer-named-exports": "off",
// TS
'@typescript-eslint/no-explicit-any': 'warn', // disable explicit any
diff --git a/packages/contracts/package.json b/packages/contracts/package.json
index 6b9d2313..ba8076c4 100644
--- a/packages/contracts/package.json
+++ b/packages/contracts/package.json
@@ -50,7 +50,7 @@
"deploy-factory": "hardhat run scripts/deploy-factory.ts --network",
"deploy-spoils-manager": "hardhat run scripts/deploy-spoils-manager.ts --network",
"deploy-zap": "hardhat run scripts/deploy-zap.ts --network",
- "flatten-all": "yarn flatten-factory && yarn flatten-instant && yarn flatten-escrow && yarn flatten-updatable && yarn flatten-spoils && yarn flatten-zap && yarn flatten-dao-zap",
+ "flatten-all": "mkdir -p flat && yarn flatten-factory && yarn flatten-instant && yarn flatten-escrow && yarn flatten-updatable && yarn flatten-spoils && yarn flatten-zap && yarn flatten-dao-zap",
"flatten-dao-zap": "hardhat flatten contracts/SafeSplitsDaoEscrowZap.sol > flat/SafeSplitsDaoEscrowZap.sol",
"flatten-escrow": "hardhat flatten contracts/SmartInvoiceEscrow.sol > flat/SmartInvoiceEscrow.sol",
"flatten-factory": "hardhat flatten contracts/SmartInvoiceFactory.sol > flat/SmartInvoiceFactory.sol",
diff --git a/packages/docs/.eslintrc.js b/packages/docs/.eslintrc.js
deleted file mode 100644
index bcd821e6..00000000
--- a/packages/docs/.eslintrc.js
+++ /dev/null
@@ -1,20 +0,0 @@
-module.exports = {
- extends: '../../.eslintrc.js',
- ignorePatterns: ['**/node_modules/*', 'dist/*', 'build/*'],
- overrides: [
- {
- // assuming docusaurus application
- files: '**/pages/**/*.{ts,tsx,js,jsx}',
- rules: {
- 'import/no-default-export': 'off', // pages have to have a default export
- 'import/prefer-default-export': 'error',
- 'react/jsx-filename-extension': [
- 'error',
- {
- extensions: ['.tsx', '.jsx'],
- },
- ],
- },
- },
- ],
-};
diff --git a/packages/docs/.firebaserc b/packages/docs/.firebaserc
deleted file mode 100644
index e03996a1..00000000
--- a/packages/docs/.firebaserc
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "projects": {
- "default": "smart-invoice-docs"
- }
-}
diff --git a/packages/docs/CHANGELOG.md b/packages/docs/CHANGELOG.md
deleted file mode 100644
index 0d4b7203..00000000
--- a/packages/docs/CHANGELOG.md
+++ /dev/null
@@ -1,49 +0,0 @@
-# @smartinvoicexyz/docs
-
-## 0.1.17
-
-### Patch Changes
-
-- updated useEscrowZap for DM
-
-## 0.1.7
-
-### Patch Changes
-
--
-
-## 0.1.6
-
-### Patch Changes
-
-- fixed invoice pdf
-
-## 0.1.5
-
-### Patch Changes
-
-- refactored chains
-
-## 0.1.4
-
-### Patch Changes
-
-- view invoices without wallet
-
-## 0.1.3
-
-### Patch Changes
-
-- publishing to npm
-
-## 0.1.2
-
-### Patch Changes
-
-- using latest metadata schema
-
-## 0.1.1
-
-### Patch Changes
-
-- Setting up changeset
diff --git a/packages/docs/README.md b/packages/docs/README.md
deleted file mode 100644
index 98e89930..00000000
--- a/packages/docs/README.md
+++ /dev/null
@@ -1,67 +0,0 @@
-# Smart Invoice Docs
-
-The Smart Invoice Docs package is a documentation site built with Docusaurus. It provides detailed guides, API references, and user instructions for the Smart Invoice protocol, helping developers and users understand and interact with the platform effectively.
-
-## Installation
-
-To set up the Smart Invoice documentation site locally, follow these steps:
-
-1. Clone the repository:
-
- ```bash
- git clone https://github.com/SmartInvoiceXYZ/smart-invoice.git
- cd smart-invoice/packages/docs
- ```
-
-2. Install the dependencies:
- ```bash
- pnpm install
- ```
-
-## Development
-
-To start the documentation site locally, run:
-
-```bash
-pnpm start
-```
-
-This command starts the Docusaurus development server on `http://localhost:3000` and watches for file changes.
-
-## Building for Production
-
-To build the documentation site for production, run:
-
-```bash
-pnpm build
-```
-
-This command generates an optimized static site in the `build` directory, ready to be deployed.
-
-## Deployment
-
-To deploy the documentation site, use the following command:
-
-```bash
-pnpm deploy
-```
-
-This command builds the site and deploys it according to the configuration set in Docusaurus.
-
-## Cleaning Up
-
-To clear the Docusaurus cache and artifacts, run:
-
-```bash
-pnpm clear
-```
-
-## Customization
-
-Docusaurus provides a `swizzle` command to customize components and themes. To use it:
-
-```bash
-pnpm swizzle
-```
-
-This command allows you to extend or override the default components to better fit your needs.
diff --git a/packages/docs/babel.config.js b/packages/docs/babel.config.js
deleted file mode 100644
index e00595da..00000000
--- a/packages/docs/babel.config.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = {
- presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
-};
diff --git a/packages/docs/docs/FAQ.md b/packages/docs/docs/FAQ.md
deleted file mode 100644
index a1090a6e..00000000
--- a/packages/docs/docs/FAQ.md
+++ /dev/null
@@ -1,93 +0,0 @@
----
-title: FAQ
----
-
-
- What is Lock? (CLIENT/PROVIDER)
-
-
-
-###### Lock is a feature that allows clients and providers to lock the funds deposited into their smart invoice, triggering arbitration.
-
-###### If the client loses confidence in the provider at any time or the provider under delivers on their promise, the client may lock any remaining funds in smart invoice so they cannot be released or withdrawn.
-
-###### Alternatively, if the client has not released funds after a milestone is complete, the provider may lock any remaining funds in smart invoice.
-
-
-
-
- What is Arbitration? (CLIENT/PROVIDER)
-
-
-
-###### Arbitration is triggered by either the client or provider locking funds held by their smart invoice. Arbitration is the process of resolving a dispute between a client and a provider, and it is facilitated by a third-party adjudicator.
-
-
-
-
- How does the dispute resolution process work? (CLIENT/PROVIDER)
-
-
-
-###### Lock triggers the arbitration provider (i.e., LexDAO or Custom) to review and resolve the dispute.
-
-###### Based on their review, the arbitration provider will determine which party should receive "x" amount of funds, and will send a transaction to smart invoice that transfers the appropriate amount to each party.
-
-
-
-
-How is Deposit different from Release? (CLIENT/PROVIDER)
-
-
-
-###### Deposit is a function that allows the client to deposit funds into the milestone(s), and before or after the milestone is completed, the client can use the release function to release the funds to the provider for their service. In order to release funds, the client must first make a deposit!
-
-
-
-
-Why can't I release or withdraw my payment? (CLIENT)
-
-
-
-###### In order to release or withdraw your payment, first you will want to navigate to "view existing invoice" and check the status shown in the right column next to your smart invoice. If the status of your smart invoice shows:
-
-1. Awaiting deposit - this means you need to make a deposit, following your deposit you will be able to release payment
-2. In dispute - You will not be able to release/withdraw payment until the dispute is resolved
-3. Safety valve withdrawal date passed
-
-
-
-
-Can I make multiple payments? (through “deposit” or “release”) to the provider with one transaction? (CLIENT)
-
-
-
-###### Yes, you can execute one transaction for all milestone deposits and releases respectivley.
-
-
-
-
-What statuses can an invoice have? (CLIENT/PROVIDER)
-
-
-
-1. Awaiting Deposit
-2. Funded
-3. Completed
-4. Expired
-5. In dispute
-
-
-
-
-What are the supported networks on Smart Invoice? (CLIENT/PROVIDER)
-
-
-
-1. Ethereum Mainnet
-2. Gnosis Chain
-3. Polygon
-
-
-
-##### Have additional questions? Drop into our discord where we will be happy to help you! https://discord.gg/M2QaDPgKFR
diff --git a/packages/docs/docs/complete-invoice.md b/packages/docs/docs/complete-invoice.md
deleted file mode 100644
index 6ca45ff9..00000000
--- a/packages/docs/docs/complete-invoice.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-title: Complete Invoice (Provider)
----
-
-Finally, you have submitted a transaction to complete your smart invoice Registration! We ask that you wait patiently for the transaction to be processed.
-
-![](https://i.imgur.com/YV1NGoE.png)
-
-After your transaction has processed, you should see the invoice has been registered. You can check to see the transaction by clicking just below the “Invoice Registered” header.
-
-![](https://i.imgur.com/Z4cIklf.png)
-
-Following submission, you will see a copyable link to your Invoice ID as well as a link to your invoice agreement.
-
-As a provider, send your `Invoice ID` or inform the client that they can input their wallet address into the “View Existing Invoice” tab on smartinvoice.xyz. This will enable the client to view the smart invoice and make payments to the provider.
-
-###### Note: The Invoice ID can be used to look up your invoice if you do not have access to the Client's Wallet Address provided intitailly.
diff --git a/packages/docs/docs/creating-a-smart-invoice.md b/packages/docs/docs/creating-a-smart-invoice.md
deleted file mode 100644
index 5e7c58da..00000000
--- a/packages/docs/docs/creating-a-smart-invoice.md
+++ /dev/null
@@ -1,92 +0,0 @@
----
-title: Creating a Smart Invoice (Provider)
----
-
-## Step 1: Project Details
-
-Here you will enter your project's details in sequential order:
-
-1. Project Name or ID
-2. Link to Project Agreement
-3. Project Description
-4. Project Start / End / Safety Valve Withdrawal (Date)
-
-![](https://i.imgur.com/bwcIPM5.png)
-
-
- Mini Glossary
-
-
-
-###### Project Name or ID - The name of your project
-
-###### Link to Project Agreement - Link to supporting documents or website
-
-###### Project Description - This acts as a brief explainer for your project
-
-###### Project Start / End / Safety Valve - These are the dates you will start, finish, and allow the client to withdraw all funds by.
-
-
-
-
- What is Safety Valve and Why is it Important?
-
-
-###### Safety Valve is a built in function that allows the client to withdraw funds from the contract on the date specified in the date entry field. This can be a useful feature in the scenario that a provider goes unresponsive or bails on the project, in which case the client can withdraw all funds deposited into smart invoice on or after the Safety Valve date.
-
-
-
-## Step 2: Payment Details
-
-In this step you will enter the following payment details:
-
-1. Client Address
-2. Service Provider Address
-3. Total Payment Due
-4. Payment Token
-5. Number of Payments
-6. Arbitration Provider
-7. Max Dispute Fee
-8. Terms-of-Service
-
-![](https://i.imgur.com/1xe9znr.png)
-
-
- Mini Glossary
-
-
-
-###### Client Address - Address the client will use to send funds to smart invoice
-
-###### Service Provider Address - Address the provider will use to receive funds from smart invoice
-
-###### Total Payment Due - Total amount your requesting for completing the project
-
-###### Payment Token - The token you wish to accept payment in
-
-###### Number of Payments - The count of payments broken down by milestone
-
-###### Arbitration Provider - This is the third party adjudicator responsible for providing a resoution if a dispute is raised
-
-###### Max Dispute Fee - This is the maximum fee the arbitration provider will charge on the remaining funds held in smart invoice
-
-###### Terms-of-Service - An agreement outlining the usage of the arbitration provider
-
-
-
-## Step 3: Payment Chunks
-
-1. Enter Payment amount per milestone
-2. Enter Amount up until total amount is paid
-
-![](https://i.imgur.com/gKrQLG5.png)
-
-## Step 4: Create Invoice
-
-Review that all of the details of your invoice are correct, if they are not you will want to re-enter the correct information in each of the fields you filled out incorrectly.
-
-![](https://i.imgur.com/zd5A8hZ.png)
-
-###### Note: If you enter the incorrect client address or if any of the information you provide in the smart invoice form is wrong, you will not be able to edit or change that information later. This is because every completed smart invoice form executes on-chain, meaning it cannot be reversed and is immutable. Therefore, take extra caution and make sure to double or triple check that the details you enter are correct.
-
-###### Note: By clicking on the “back” tab, you can navigate between previously completed steps in order to review or change any incorrect information inputted into the smart invoice form. (Do not click the back-arrow in the search engine or your previous entries will be lost)
diff --git a/packages/docs/docs/deposit-or-release.md b/packages/docs/docs/deposit-or-release.md
deleted file mode 100644
index 9dd81f57..00000000
--- a/packages/docs/docs/deposit-or-release.md
+++ /dev/null
@@ -1,19 +0,0 @@
----
-title: Making Payment (Client)
----
-
-If you are a client and would like to **make a deposit**, simply click the deposit button and select each of the milestones that you would like to make a deposit for, then click the deposit button that appears in the pop up. This will redirect you to your WalletConnect or your MetaMask to approve the transaction.
-
-![](https://i.imgur.com/a4Ofgf0.png)
-
-![](https://i.imgur.com/Qk0v8Z6.png)
-
-After you complete the transaction, you will see `Deposited` and the `Date` indicating that your deposit has been received by smart invoice. This does not indicate that the provider has received payment from you, but rather that smart invoice holds the funds you deposited, enabling you to release the funds when the first milestone is reached or lock the funds if you feel the provider hasn't delivered.
-
-![](https://i.imgur.com/EWcmDYb.png)
-
-After depositing, if you would like to **release payment** to the provider, you can click the release button, which will redirect you to your WalletConnect or MetaMask where you will be asked to approve the transaction. Once the transaction is complete, you will see `Released` and the `Date` indicating that your payment has been received by the provider wallet address.
-
-![](https://i.imgur.com/O5vsTwn.png)
-
-If for some reason you need to **lock** the funds you deposited into your smart invoice, click the lock button and approve the transaction with either your WalletConnect or MetaMask wallet. Then after the transaction approves, you can see in the status bar if you navigate back to `View Existing Invoice` that it is currently `In Dispute`.
diff --git a/packages/docs/docs/glossary.md b/packages/docs/docs/glossary.md
deleted file mode 100644
index 5254605e..00000000
--- a/packages/docs/docs/glossary.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
- Mini Glossary
-
-
-
-###### Lock triggers the arbitration provider (i.e., LexDAO or Custom) to review and resolve the dispute.
-
-###### Based on their review, the arbitration provider will determine which party should receive "x" amount of funds, and will send a transaction to smart invoice that transfers the appropriate amount to each party.
-
-
diff --git a/packages/docs/docs/how-does-it-work.md b/packages/docs/docs/how-does-it-work.md
deleted file mode 100644
index 864e5200..00000000
--- a/packages/docs/docs/how-does-it-work.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-title: How Does it Work?
----
-
-Smart Invoice leverages smart contracts built on Ethereum to create a framework by which service providers can rapidly create invoices and deploy them to xDai sidechain.
-
-After the provider has setup the smart invoice, the client can deposit their payment to smart invoice in the form of milestones. Milestones allow payment to be released by the client as work is completed by the provider.
-
-When a client deposits funds into a milestone or milstone(s), payment is sent to and held by smart invoice, and when the client releases those funds, they are sent to the service provider's wallet address.
-
-In the case either a client or provider decides to lock funds in smart invoice, a submission is made to a third party arbitration provider who will help by resolving the dispute.
-
-As a client or provider of Smart-Invoice, first you will need to visit https://smartinvoice.xyz
-
-Once you arrive at the landing page, you will have the option to select between “Create a New Smart Invoice” and “View Existing Invoice”.
-
-![](https://i.imgur.com/os8MWzA.png)
diff --git a/packages/docs/docs/introducing-smart-invoice.md b/packages/docs/docs/introducing-smart-invoice.md
deleted file mode 100644
index 8404ea52..00000000
--- a/packages/docs/docs/introducing-smart-invoice.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-title: What is Smart Invoice?
----
-
-Smart Invoice is a sophisticated invoicing tool that facilitates payments between organizations or `Clients`, and freelancers or `Providers`. Smart Invoice establishes a set of shared expectations between a client and a provider who are engaged in business with one another. v1 features are as follows:
-
-1. Each invoice is its own contract
-2. Deposits may come from any address
-3. Client can make deposits by milestone
-4. Milestone payments can be variable in size
-5. Custom arbitration can be set (LexDAO or any Ethereum Address)
-6. Client can deposit more than the total amount (for gratuity)
-7. Tokens accidentally sent directly to invoice can be recovered
-
-
- Who Should Use Smart Invoice?
-
-
-##### An example of two parties using Smart Invoice could be a service provider and a consumer/client who want:
-
-###### 1. Streamlined Experience: A simple interface to create and view payments
-
-###### 2. Information Access: Reliable, auditable, and immutable information flows
-
-###### 3. Contractual Enforcement: Serviced through Impartial third-party dispute resolution
-
-
diff --git a/packages/docs/docs/view-existing-invoice.md b/packages/docs/docs/view-existing-invoice.md
deleted file mode 100644
index 6c61ef33..00000000
--- a/packages/docs/docs/view-existing-invoice.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-title: View Existing Invoice(s)
----
-
-1. Go to the Smart Invoice Landing Page
-2. Click on "View Existing Invoices"
-3. Enter Invoice ID or Client Wallet Address
-4. Click on the invoice you want to select
-
-![](https://i.imgur.com/5WnmZQI.png)
-
-Now you can see the Invoice name on the left hand side, above the arbitration provider address and the project description. To the right, you can see payment details such as milestones, amount deposited, amount released, as well as remaining amount due.
-
-![](https://i.imgur.com/7yrrdJY.png)
-
-In the next section we will cover depositing, releasing, and locking payments to the provider.
diff --git a/packages/docs/docusaurus.config.js b/packages/docs/docusaurus.config.js
deleted file mode 100644
index 2f1601ca..00000000
--- a/packages/docs/docusaurus.config.js
+++ /dev/null
@@ -1,84 +0,0 @@
-/** @type {import('@docusaurus/types').DocusaurusConfig} */
-module.exports = {
- title: 'Smart Invoice FAQ',
- tagline: 'Your #1 Guide to Smart Invoice',
- url: 'https://your-docusaurus-test-site.com',
- baseUrl: '/',
- onBrokenLinks: 'throw',
- onBrokenMarkdownLinks: 'warn',
- favicon: 'img/logo.png',
- organizationName: 'raid-guild',
- projectName: 'smart-invoice',
- themeConfig: {
- navbar: {
- title: 'Smart Invoice',
- logo: {
- alt: 'RaidGuild Logo',
- src: 'img/logo.png',
- },
- items: [
- {
- href: 'https://smartinvoice.xyz',
- label: 'Dapp',
- position: 'right',
- },
- {
- href: 'https://github.com/raid-guild/smart-invoice',
- label: 'GitHub',
- position: 'right',
- },
- ],
- },
- footer: {
- style: 'dark',
- links: [
- {
- title: 'Docs',
- items: [
- {
- label: 'Getting Started',
- to: 'docs/introducing-smart-invoice',
- position: 'left',
- },
- {
- label: 'GitHub',
- href: 'https://github.com/raid-guild/smart-invoice',
- position: 'left',
- },
- ],
- },
- {
- title: 'Community',
- items: [
- {
- label: 'Discord',
- href: 'https://discord.gg/CanD2WcK7W',
- position: 'right',
- },
- {
- label: 'Twitter',
- href: 'https://twitter.com/RaidGuild',
- position: 'right',
- },
- ],
- },
- ],
- copyright: `Copyright © ${new Date().getFullYear()} RaidGuild, DAO`,
- },
- },
- presets: [
- [
- '@docusaurus/preset-classic',
- {
- docs: {
- sidebarPath: require.resolve('./sidebars.js'),
- editUrl:
- 'https://github.com/raid-guild/smart-invoice/edit/master/packages/docs/',
- },
- theme: {
- customCss: require.resolve('./src/css/custom.css'),
- },
- },
- ],
- ],
-};
diff --git a/packages/docs/package.json b/packages/docs/package.json
deleted file mode 100644
index 033d4767..00000000
--- a/packages/docs/package.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "name": "@smartinvoicexyz/docs",
- "description": "Documentation site for the Smart Invoice protocol, built with Docusaurus to provide comprehensive guides, API references, and user instructions.",
- "version": "0.1.17",
- "browserslist": {
- "production": [
- ">0.5%",
- "not dead",
- "not op_mini all"
- ],
- "development": [
- "last 1 chrome version",
- "last 1 firefox version",
- "last 1 safari version"
- ]
- },
- "dependencies": {
- "@docusaurus/core": "^2.0.0",
- "@docusaurus/preset-classic": "^2.0.0",
- "@mdx-js/react": "^1.6.21",
- "clsx": "^1.1.1",
- "react": "^18.2.0",
- "react-dom": "^18.2.0"
- },
- "devDependencies": {
- "eslint-plugin-import": "^2.29.1"
- },
- "private": true,
- "scripts": {
- "build": "docusaurus build",
- "clear": "docusaurus clear",
- "deploy": "docusaurus deploy",
- "docusaurus": "docusaurus",
- "lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
- "serve": "docusaurus serve",
- "start": "docusaurus start",
- "swizzle": "docusaurus swizzle",
- "write-heading-ids": "docusaurus write-heading-ids",
- "write-translations": "docusaurus write-translations"
- }
-}
diff --git a/packages/docs/sidebars.js b/packages/docs/sidebars.js
deleted file mode 100644
index dba9e14b..00000000
--- a/packages/docs/sidebars.js
+++ /dev/null
@@ -1,17 +0,0 @@
-module.exports = {
- docs: [
- {
- type: 'category',
- label: 'Overview',
- items: [
- 'introducing-smart-invoice',
- 'how-does-it-work',
- 'creating-a-smart-invoice',
- 'complete-invoice',
- 'view-existing-invoice',
- 'deposit-or-release',
- 'FAQ',
- ],
- },
- ],
-};
diff --git a/packages/docs/src/css/custom.css b/packages/docs/src/css/custom.css
deleted file mode 100644
index 67231f9f..00000000
--- a/packages/docs/src/css/custom.css
+++ /dev/null
@@ -1,25 +0,0 @@
-/* stylelint-disable docusaurus/copyright-header */
-/**
- * Any CSS included here will be global. The classic template
- * bundles Infima by default. Infima is a CSS framework designed to
- * work well for content-centric websites.
- */
-
-/* You can override the default Infima variables here. */
-:root {
- --ifm-color-primary: #f53862;
- --ifm-color-primary-dark: rgb(224, 52, 89);
- --ifm-color-primary-darker: rgb(191, 44, 76);
- --ifm-color-primary-darkest: rgb(153, 35, 61);
- --ifm-color-primary-light: rgb(243, 68, 109);
- --ifm-color-primary-lighter: rgb(239, 89, 122);
- --ifm-color-primary-lightest: rgb(239, 120, 147);
- --ifm-code-font-size: 95%;
-}
-
-.docusaurus-highlight-code-line {
- background-color: rgb(72, 77, 91);
- display: block;
- margin: 0 calc(-1 * var(--ifm-pre-padding));
- padding: 0 var(--ifm-pre-padding);
-}
diff --git a/packages/docs/src/pages/index.jsx b/packages/docs/src/pages/index.jsx
deleted file mode 100644
index 02445f4b..00000000
--- a/packages/docs/src/pages/index.jsx
+++ /dev/null
@@ -1,88 +0,0 @@
-/* eslint-disable import/no-unresolved */
-import Link from '@docusaurus/Link';
-import useBaseUrl from '@docusaurus/useBaseUrl';
-import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
-import Layout from '@theme/Layout';
-import clsx from 'clsx';
-import React from 'react';
-
-import getHashCode from '../util/getHashCode';
-import styles from './styles.module.css';
-
-const features = [
- {
- title: 'Streamlined Experience',
- imageUrl: 'img/undraw_docusaurus_mountain.svg',
- description: <>Enabling a simple interface to create and view payments>,
- },
- {
- title: 'Information Access',
- imageUrl: 'img/undraw_docusaurus_tree.svg',
- description: (
- <>Providing reliable, auditable, and immutable information flows.>
- ),
- },
- {
- title: 'Contractual Enforcement',
- imageUrl: 'img/undraw_docusaurus_react.svg',
- description: <>Through Impartial third-party dispute resolution>,
- },
-];
-
-function Feature({ imageUrl, title, description }) {
- const imgUrl = useBaseUrl(imageUrl);
- return (
-
- {imgUrl && (
-
-
-
- )}
-
{title}
-
{description}
-
- );
-}
-
-export default function Home() {
- const context = useDocusaurusContext();
- const { siteConfig = {} } = context;
- return (
-
-
-
-
{siteConfig.title}
-
{siteConfig.tagline}
-
-
- Get Started
-
-
-
-
-
- {features && features.length > 0 && (
-
-
-
- {features.map(props => (
- // eslint-disable-next-line react/jsx-props-no-spreading
-
- ))}
-
-
-
- )}
-
-
- );
-}
diff --git a/packages/docs/src/pages/styles.module.css b/packages/docs/src/pages/styles.module.css
deleted file mode 100644
index c1aa8512..00000000
--- a/packages/docs/src/pages/styles.module.css
+++ /dev/null
@@ -1,37 +0,0 @@
-/* stylelint-disable docusaurus/copyright-header */
-
-/**
- * CSS files with the .module.css suffix will be treated as CSS modules
- * and scoped locally.
- */
-
-.heroBanner {
- padding: 4rem 0;
- text-align: center;
- position: relative;
- overflow: hidden;
-}
-
-@media screen and (max-width: 966px) {
- .heroBanner {
- padding: 2rem;
- }
-}
-
-.buttons {
- display: flex;
- align-items: center;
- justify-content: center;
-}
-
-.features {
- display: flex;
- align-items: center;
- padding: 2rem 0;
- width: 100%;
-}
-
-.featureImage {
- height: 200px;
- width: 200px;
-}
diff --git a/packages/docs/src/util/getHashCode.js b/packages/docs/src/util/getHashCode.js
deleted file mode 100644
index f019425a..00000000
--- a/packages/docs/src/util/getHashCode.js
+++ /dev/null
@@ -1,15 +0,0 @@
-/* eslint-disable no-bitwise */
-function getHashCode(string) {
- let hash = 0;
-
- if (string.length === 0) return hash;
-
- for (let i = 0; i < string.length; i += 1) {
- const char = string.charCodeAt(i);
- hash &= (hash << 5) - hash + char;
- }
-
- return hash;
-}
-
-module.exports = getHashCode;
diff --git a/packages/docs/static/.nojekyll b/packages/docs/static/.nojekyll
deleted file mode 100644
index e69de29b..00000000
diff --git a/packages/docs/static/img/logo.png b/packages/docs/static/img/logo.png
deleted file mode 100644
index ddae4e59..00000000
Binary files a/packages/docs/static/img/logo.png and /dev/null differ
diff --git a/packages/docs/static/img/undraw_docusaurus_mountain.svg b/packages/docs/static/img/undraw_docusaurus_mountain.svg
deleted file mode 100644
index c22be866..00000000
--- a/packages/docs/static/img/undraw_docusaurus_mountain.svg
+++ /dev/null
@@ -1,170 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/docs/static/img/undraw_docusaurus_react.svg b/packages/docs/static/img/undraw_docusaurus_react.svg
deleted file mode 100644
index 6495c84f..00000000
--- a/packages/docs/static/img/undraw_docusaurus_react.svg
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/docs/static/img/undraw_docusaurus_tree.svg b/packages/docs/static/img/undraw_docusaurus_tree.svg
deleted file mode 100644
index c9b6ffaf..00000000
--- a/packages/docs/static/img/undraw_docusaurus_tree.svg
+++ /dev/null
@@ -1 +0,0 @@
-docu_tree
diff --git a/packages/website/.eslintrc.json b/packages/website/.eslintrc.json
new file mode 100644
index 00000000..bffb357a
--- /dev/null
+++ b/packages/website/.eslintrc.json
@@ -0,0 +1,3 @@
+{
+ "extends": "next/core-web-vitals"
+}
diff --git a/packages/website/.gitignore b/packages/website/.gitignore
new file mode 100644
index 00000000..c87c9b39
--- /dev/null
+++ b/packages/website/.gitignore
@@ -0,0 +1,36 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+.pnpm-debug.log*
+
+# local env files
+.env*.local
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
diff --git a/packages/website/README.md b/packages/website/README.md
new file mode 100644
index 00000000..b12f3e33
--- /dev/null
+++ b/packages/website/README.md
@@ -0,0 +1,34 @@
+This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
+
+[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
+
+The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
+
+## Learn More
+
+To learn more about Next.js, take a look at the following resources:
+
+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
+
+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
+
+## Deploy on Vercel
+
+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
+
+Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
diff --git a/packages/website/components/about/Hero.jsx b/packages/website/components/about/Hero.jsx
new file mode 100644
index 00000000..c486060c
--- /dev/null
+++ b/packages/website/components/about/Hero.jsx
@@ -0,0 +1,40 @@
+import { Flex, Heading, Text, VStack } from '@chakra-ui/react';
+import React from 'react';
+
+export function HeroSection({ ...props }) {
+ return (
+
+
+
+ Get to know Smart Invoice
+
+
+ About Us
+
+
+
+ );
+}
diff --git a/packages/website/components/about/Story.jsx b/packages/website/components/about/Story.jsx
new file mode 100644
index 00000000..c422d3ff
--- /dev/null
+++ b/packages/website/components/about/Story.jsx
@@ -0,0 +1,184 @@
+import { Flex, Grid, GridItem, Heading, Link, Text } from '@chakra-ui/react';
+import NextImage from 'next/image';
+import { useEffect, useState } from 'react';
+
+import asset2 from '../../public/assets/about/escrow-invoice-original-2.svg';
+import asset1 from '../../public/assets/about/rg-laptop-1.svg';
+import asset3 from '../../public/assets/product-about-3.svg';
+
+export function Story({ ...props }) {
+ const [columns, setColumns] = useState(2);
+
+ useEffect(() => {
+ if (window) {
+ adjustColumns();
+ window.addEventListener('resize', adjustColumns);
+ }
+ });
+
+ function adjustColumns() {
+ if (window.innerWidth < 800) {
+ setColumns(1);
+ } else {
+ setColumns(2);
+ }
+ }
+
+ return (
+
+
+ Our Story
+
+
+
+ In October 2020, a development service DAO by the name of{' '}
+
+ RaidGuild
+ {' '}
+ realized they had a problem: there was no easy, or affordable, way
+ to safely transact with their web3 clients.
+
+
+ Without the safeguards of the traditional banking system, a simple
+ mistake when transferring cryptocurrencies could result in all
+ funds being lost forever. Not ideal for the DAO, or the client.
+
+
+ An invoicing system was needed.
+
+ But that wasn’t enough.
+
+ In the web3 world, it’s normal to “do business” with people you
+ don’t know, and who don’t share their real identity with you.
+
+
+ So there needed to be a way to ensure the service provider didn’t
+ run away with the money, and the client didn’t run away without
+ paying.
+
+
+ An escrow system was needed.
+
+ But that still wasn’t enough.
+
+ What if there was a dispute? How would the funds get released from
+ escrow? Who would make that decision, and would they be unbiased?
+
+
+
+
+
+
+
+
+
+
+ Integrated arbitration was needed.
+
+ But that still wasn’t enough.
+
+ Who would control this invoicing, escrow, and arbitration tool?
+ Would there be a conflict of interest if the DAO controlled the
+ technology behind the payment system, and was the service
+ provider?
+
+
+ Smart contracts were needed.
+
+
+ So a team of RaidGuild developers began building a tool that
+ combined cryptocurrency invoicing, escrow, arbitration, and smart
+ contracts.
+
+
+ The result was an internal tool called Smart Escrow.
+
+
+ It solved the DAO’s biggest challenges when transacting with web3
+ clients, and was provably safe to use. This tool proved to be so
+ effective and popular with clients, that the DAO decided to create
+ a public version that anyone online could use, even if they were
+ not part of the RaidGuild DAO.
+
+ And so… Smart Invoice was born.
+
+
+
+ As time went by, several members of the DAO realized Smart Invoice
+ was just a bit too difficult to use by non-developers. And that it
+ didn’t provide similar functionality to the web2 software most
+ freelancers already used.
+
+
+ So this new team of 4 decided to reboot Smart Invoice to make it
+ even more powerful and easier to use, so that any freelancer,
+ anywhere, could safely get paid for their work with
+ cryptocurrency.
+
+
+ MolochDAO supported the team’s vision and awarded them with a
+ grant so they could build the ultimate crypto invoicing and escrow
+ tool as a public good.
+
+
+ Since then, the team has been working hard to build the Smart
+ Invoice you see today.
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/packages/website/components/about/Supporters.jsx b/packages/website/components/about/Supporters.jsx
new file mode 100644
index 00000000..12fbcd3c
--- /dev/null
+++ b/packages/website/components/about/Supporters.jsx
@@ -0,0 +1,68 @@
+import { Box, Flex, Heading, Text, VStack } from '@chakra-ui/react';
+import NextImage from 'next/image';
+import NextLink from 'next/link';
+import { useEffect, useState } from 'react';
+
+import mdLogo from '../../public/logos/molochdao.svg';
+import rgLogo from '../../public/logos/raidguild.svg';
+
+export function Supporters({ ...props }) {
+ const [flexDirection, setFlexDirection] = useState('row');
+ const [alignment, setAlignment] = useState('flex-start');
+
+ useEffect(() => {
+ if (window) {
+ changeFlexDirection();
+ window.addEventListener('resize', changeFlexDirection);
+ }
+ });
+
+ function changeFlexDirection() {
+ if (window.innerWidth < 800) {
+ setFlexDirection('column');
+ setAlignment('center');
+ } else {
+ setFlexDirection('row');
+ setAlignment('flex-start');
+ }
+ }
+
+ return (
+
+
+ Our Supporters
+ Meet the organizations helping Smart Invoice succeed.
+
+
+
+
+
+
+ In October 2020, several members of Raid Guild DAO began
+ developing the initial version of Smart Invoice as an internal
+ tool to handle invoicing and escrow for the contract work the DAO
+ provided to clients.
+
+
+
+
+
+
+
+ In May 2022, the MolochDAO community passed an $82,000 grant
+ proposal to support the continued development of Smart Invoice as
+ a public good.
+
+
+
+
+
+ );
+}
diff --git a/packages/website/components/about/Team.jsx b/packages/website/components/about/Team.jsx
new file mode 100644
index 00000000..44f36f0a
--- /dev/null
+++ b/packages/website/components/about/Team.jsx
@@ -0,0 +1,173 @@
+import { Box, Flex, Grid, GridItem, Heading, Text } from '@chakra-ui/react';
+import NextImage from 'next/image';
+import NextLink from 'next/link';
+
+import facebookIcon from '../../public/icons/socials/facebook.svg';
+import githubIcon from '../../public/icons/socials/github.svg';
+import linkedinIcon from '../../public/icons/socials/linkedin.svg';
+import twitterIcon from '../../public/icons/socials/twitter.svg';
+import websiteIcon from '../../public/icons/socials/website.svg';
+import bingoPfp from '../../public/pfp/bingo.svg';
+import dan13ramPfp from '../../public/pfp/dan13ram.svg';
+import georgehPfp from '../../public/pfp/georgeh.svg';
+import jaqiPfp from '../../public/pfp/jaqi.svg';
+import launchninjaPfp from '../../public/pfp/launchninja.svg';
+import manoPfp from '../../public/pfp/manolingam.svg';
+import plorPfp from '../../public/pfp/plor.svg';
+import spengrahPfp from '../../public/pfp/spengrah.svg';
+import tufnelPfp from '../../public/pfp/tufnel.svg';
+
+// TODO: update team to 2025
+export function TeamSection() {
+ const teamMembers = [
+ {
+ name: 'launchninja',
+ position: 'Product Lead',
+ pfp: launchninjaPfp,
+ twitter: 'https://twitter.com/launchninja0x',
+ },
+ {
+ name: 'plor',
+ position: 'Project Manager',
+ pfp: plorPfp,
+ twitter: 'https://twitter.com/plor',
+ github: 'https://github.com/plor',
+ },
+ {
+ name: 'Tufnel_Enterprises',
+ position: 'Developer',
+ pfp: tufnelPfp,
+ github: 'https://github.com/psparacino',
+ },
+ {
+ name: 'georgeh',
+ position: 'Developer',
+ pfp: georgehPfp,
+ github: 'https://github.com/geovgy',
+ },
+ {
+ name: 'spengrah',
+ position: 'Developer',
+ pfp: spengrahPfp,
+ twitter: 'https://twitter.com/spengrah',
+ },
+ {
+ name: 'dan13ram',
+ position: 'Developer',
+ pfp: dan13ramPfp,
+ twitter: 'https://twitter.com/dan13ram',
+ },
+ {
+ name: 'manolingam',
+ position: 'Developer',
+ pfp: manoPfp,
+ twitter: 'http://twitter.com/saimano1996',
+ },
+ {
+ name: 'Jaqi',
+ position: 'Designer',
+ pfp: jaqiPfp,
+ twitter: 'https://twitter.com/jaclynlenee',
+ linkedin: 'https://www.linkedin.com/in/jaclynlenee/',
+ website: 'https://www.jaclynlenee.com/',
+ },
+ {
+ name: 'Bingo',
+ position: 'Designer',
+ pfp: bingoPfp,
+ website: 'https://www.bingothedesigner.com/',
+ },
+ ];
+
+ return (
+
+
+ A team of exceptional people
+
+
+ Meet the team, past and present, that’s worked to make crypto invoicing
+ and escrow free for all web3 freelancers.
+
+
+
+ {teamMembers.map(member => (
+
+
+
+ {member.name}
+
+
+ {member.position}
+
+
+ {member.facebook && (
+
+
+
+ )}
+ {member.twitter && (
+
+
+
+ )}
+ {member.linkedin && (
+
+
+
+ )}
+ {member.github && (
+
+
+
+ )}
+ {member.website && (
+
+
+
+ )}
+
+
+ ))}
+
+
+
+ );
+}
diff --git a/packages/website/components/about/Testimonials.jsx b/packages/website/components/about/Testimonials.jsx
new file mode 100644
index 00000000..f6168cd9
--- /dev/null
+++ b/packages/website/components/about/Testimonials.jsx
@@ -0,0 +1,89 @@
+import {
+ Box,
+ Button,
+ Flex,
+ Grid,
+ GridItem,
+ Heading,
+ Text,
+} from '@chakra-ui/react';
+import NextImage from 'next/image';
+import NextLink from 'next/link';
+
+import quoteIcon from '../../public/quote-icon.svg';
+
+export function Testimonials({ ...props }) {
+ const testimonials = [
+ {
+ id: 1,
+ quote:
+ "This is the best invoicing tool we've ever used to accept crypto payments. It rocks!",
+ name: 'John Smith',
+ title: 'Title',
+ company: 'Company',
+ },
+ {
+ id: 2,
+ quote: 'Another testimonial statement.',
+ name: 'Jane Doe',
+ title: 'Title',
+ company: 'Company',
+ },
+ {
+ id: 3,
+ quote: 'Hello world!',
+ name: 'Joe Jones',
+ title: 'Title',
+ company: 'Company',
+ },
+ ];
+
+ return (
+
+
+
+
+ What web3 freelancers are saying
+
+ Here’s what a few freelancers have to say about Smart Invoice and
+ their experience.
+
+
+
+ Open dApp
+
+
+
+ {testimonials.map(item => (
+
+
+
+
+ {item.quote}
+
+
+
+
+ {item.name}
+
+ {item.title}
+
+
+ ))}
+
+
+
+ );
+}
diff --git a/packages/website/components/doc-layout/DocLayout.jsx b/packages/website/components/doc-layout/DocLayout.jsx
new file mode 100644
index 00000000..95b925ee
--- /dev/null
+++ b/packages/website/components/doc-layout/DocLayout.jsx
@@ -0,0 +1,261 @@
+import {
+ Button,
+ Drawer,
+ DrawerBody,
+ DrawerCloseButton,
+ DrawerContent,
+ DrawerFooter,
+ DrawerHeader,
+ DrawerOverlay,
+ Flex,
+ Link,
+ Text,
+ useBreakpointValue,
+ useDisclosure,
+ VStack,
+} from '@chakra-ui/react';
+import Head from 'next/head';
+import { useRouter } from 'next/router';
+import Script from 'next/script';
+import React, { useEffect, useState } from 'react';
+
+import { docV3Menu } from '../../sidebars';
+import { Footer } from '../layout/Footer';
+import { NavBar } from '../layout/NavBar';
+
+export function DocLayout({ children, title, active }) {
+ const [category, setCategory] = useState('');
+ const [isLoaded, setIsLoaded] = useState(false);
+ const router = useRouter();
+
+ const { isOpen, onOpen, onClose } = useDisclosure();
+ const mobile = useBreakpointValue({ base: true, lg: false });
+ const mobileMenuBtnRef = React.useRef();
+
+ useEffect(() => {
+ const docMenuItem = docV3Menu.find(item =>
+ router.pathname.includes(item.path),
+ );
+ setCategory(docMenuItem.category);
+ setIsLoaded(true);
+ }, [router.pathname]);
+
+ return (
+
+
+
+
+ {title} | Smart Invoice Documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {isLoaded &&
+ (mobile ? (
+
+
+ View All Documentation
+
+
+
+
+
+ Documentation
+
+
+
+ {docV3Menu.map((item, i) => (
+
+
+ {item.category}
+
+ {router.pathname.includes(item.path) && (
+
+ {item.topics.map(topic => (
+
+ {topic.title}
+
+ ))}
+
+ )}
+
+ ))}
+
+
+
+
+
+ Close
+
+
+
+
+
+ {category}
+
+ {children}
+
+ ) : (
+
+
+ {docV3Menu.map((item, i) => (
+
+
+ {item.category}
+
+ {router.pathname.includes(item.path) && (
+
+ {item.topics.map(topic => (
+
+ {topic.title}
+
+ ))}
+
+ )}
+
+ ))}
+
+
+ {children}
+
+
+ ))}
+ {!isLoaded && }
+
+
+ );
+}
diff --git a/packages/website/components/home/Demo.jsx b/packages/website/components/home/Demo.jsx
new file mode 100644
index 00000000..ae3a9631
--- /dev/null
+++ b/packages/website/components/home/Demo.jsx
@@ -0,0 +1,170 @@
+import {
+ Accordion,
+ AccordionButton,
+ AccordionItem,
+ AccordionPanel,
+ Box,
+ Button,
+ Divider,
+ Flex,
+ Heading,
+ Text,
+} from '@chakra-ui/react';
+import NextImage from 'next/image';
+import NextLink from 'next/link';
+import React, { useEffect, useState } from 'react';
+
+import imgConnectWallet from '../../public/product/si-connect-wallet-mockup.png';
+import imgCreateInvoice from '../../public/product/si-create-invoice-mockup.png';
+import imgDepositFunds from '../../public/product/si-deposit-funds-mockup.png';
+import imgFunds from '../../public/product/si-funds-smart-contract-mockup.png';
+import imgReceive from '../../public/product/si-receive-funds-mockup.png';
+import imgRelease from '../../public/product/si-release-funds-mockup.png';
+import imgArbitration from '../../public/product/si-request-arbitration-mockup.png';
+
+export function DemoSection({ ...props }) {
+ const [flexDirection, setFlexDirection] = useState('row');
+ const [active, setActive] = useState(0);
+
+ const demoItems = [
+ {
+ title: 'Connect your wallet',
+ description:
+ 'No email signup needed. Just connect your crypto wallet and Smart Invoice is ready to use.',
+ img: imgConnectWallet,
+ },
+ {
+ title: 'Create your invoice',
+ description:
+ 'Follow the prompts to quickly create a new invoice with one or more project milestones.',
+ img: imgCreateInvoice,
+ },
+ {
+ title: 'Client deposits funds',
+ description:
+ 'Share the invoice with your client so they can fund one or more milestones.',
+ img: imgDepositFunds,
+ },
+ {
+ title: 'Funds held in smart contracts',
+ description:
+ 'Once your client has sent payment, those funds are held in the smart contract linked to your invoice.',
+ img: imgFunds,
+ },
+ {
+ title: 'Client releases funds',
+ description:
+ 'When you complete a milestone, ask your client to release that milestone’s funds to you. Also ask your client to fund the next milestone so you can continue work.',
+ img: imgRelease,
+ },
+ {
+ title: 'Receive funds',
+ description:
+ 'Within a few minutes, released funds will be automatically sent to your wallet address.',
+ img: imgReceive,
+ },
+ {
+ title: 'Request arbitration (optional)',
+ description:
+ 'In the event of a dispute, you or your client can lock funds in Smart Invoice and a submission will automatically be made to a 3rd party arbitrator to help resolve the dispute.',
+ img: imgArbitration,
+ },
+ ];
+
+ useEffect(() => {
+ if (window) {
+ toggleDirection();
+ window.addEventListener('resize', toggleDirection);
+ }
+ });
+
+ function toggleDirection() {
+ if (window.innerWidth < 800) {
+ setFlexDirection('column');
+ } else {
+ setFlexDirection('row');
+ }
+ }
+
+ return (
+
+
+
+
+ Designed for all freelancers
+
+ Smart Invoice was created to be a simple and secure tool that
+ freelancers in all fields could easily use, regardless of project
+ size. You don’t have to be a developer or “technical.”
+
+
+
+
+ Open dApp
+
+
+
+
+
+
+ {demoItems.map((item, i) => (
+
+ setActive(i)}
+ >
+ {item.title}
+
+
+ {item.description}
+
+
+ ))}
+
+
+ {/* Image */}
+
+
+
+
+ );
+}
diff --git a/packages/website/components/home/FAQ.jsx b/packages/website/components/home/FAQ.jsx
new file mode 100644
index 00000000..daecec29
--- /dev/null
+++ b/packages/website/components/home/FAQ.jsx
@@ -0,0 +1,366 @@
+import {
+ Accordion,
+ AccordionButton,
+ AccordionIcon,
+ AccordionItem,
+ AccordionPanel,
+ Flex,
+ Heading,
+ Text,
+} from '@chakra-ui/react';
+import NextLink from 'next/link';
+import React from 'react';
+
+export function FAQSection() {
+ return (
+
+
+ Frequently asked questions
+
+
+
+
+ Can I accept credit card payments and ACH transfers?
+
+
+
+ No. Smart Invoice is cryptocurrency specific.
+
+
+
+
+ What cryptocurrencies can I accept payment with?
+
+
+
+
+ Smart Invoice can be used on Ethereum Mainnet, Gnosis, Polygon,
+ Arbitrum, Optimism, Base, Holesky, and Sepolia Testnet networks.
+
+
+ Invoices can be paid with any ERC-20 token available on your
+ chosen network. Ensure that you and your and client have agreed on
+ the network and token choice prior to invoice creation.
+
+
+ * Network-native tokens cannot be used for invoice payment.
+
+
+
+
+
+ Can I accept Bitcoin (BTC) payments?
+
+
+
+ No. Smart Invoice is NOT configured to accept BTC payments. If your
+ client sends a BTC payment to the wallet address listed on your
+ invoice, those funds will be lost forever.
+
+
+
+
+ Is this software really free?
+
+
+
+ Yes! Smart Invoice doesn’t charge any fees for you to use it.
+ There’s no trials, subscriptions, or hidden fees.
+
+
+
+
+ Do you have your own token?
+
+
+
+ Nope. Smart Invoice is a free public goods tool and doesn’t require
+ any tokens to use.
+
+
+
+
+ How do you make money?
+
+
+
+ We don’t. Smart Invoice is a public good tool and its development
+ has been funded through web3 grants and donations.
+
+
+
+
+ Why are you doing this for free?
+
+
+
+
+ To improve the overall freelance experience in web3, for both
+ freelancers and their clients.
+
+
+ To minimize the risk of hiring a web3 freelancer online.
+
+
+ To have a safe and credible way to handle disputes without the
+ burden of a formal written contract with an attorney and
+ litigation.
+
+
+ To provide a trusted, common solution for the greater freelancer
+ community around the world.
+
+
+
+
+
+ Do I need to install any software?
+
+
+
+ No. Smart Invoice is a web-based app. You just need a browser and an
+ internet connection.
+
+
+
+
+ How do I create an account?
+
+
+
+
+ Smart Invoice is a web3 application, which means you don’t
+ actually create an account with an email address like you would
+ with credit card invoicing tools.
+
+
+ To use Smart Invoice, you simply connect your cryptocurrency
+ wallet to the site and you are logged in. Super easy and safe.
+
+
+
+
+
+ How private are my transactions?
+
+
+
+
+ Transactions on the blockchain are public for anyone to see.
+
+
+ Your transactions with Smart Invoice are no different. Your wallet
+ address, balance, client’s wallet address, payment history, and
+ payment amount are all visible to anyone that looks.
+
+
+ Additionally, all invoice data is stored publicly on IPFS and can
+ be viewed by anyone. If you have privacy concerns, we recommend
+ encrypting or adding permissions to your project agreement
+ document before linking to it in the invoice.
+
+
+
+
+
+ How does arbitration work?
+
+
+
+
+ If there is a dispute, you or your client can “lock” funds held by
+ that invoice. This lock triggers the arbitration provider to
+ review and resolve the dispute.
+
+
+ Based on the arbitrator’s review, they will determine who should
+ receive funds and will send a transaction to Smart Invoice that
+ transfers those funds to you or your client. Our recommended
+ arbitrator, Kleros, currently charges a 5% fee that is
+ automatically deducted from the funded milestone for their
+ arbitration services.
+
+
+
+
+
+ Do you provide support if I need help?
+
+
+
+ Yes. Please view our FAQ and documentation here first. If you still
+ need help, you can post a message in the support channel in the
+
+ {' '}
+ Smart Invoice Discord
+
+ . Our team usually responds within a few hours, Monday through
+ Friday.
+
+
+
+
+ );
+}
diff --git a/packages/website/components/home/FeatureArbitration.jsx b/packages/website/components/home/FeatureArbitration.jsx
new file mode 100644
index 00000000..76f81267
--- /dev/null
+++ b/packages/website/components/home/FeatureArbitration.jsx
@@ -0,0 +1,140 @@
+import {
+ Box,
+ Flex,
+ Heading,
+ List,
+ ListIcon,
+ ListItem,
+ Text,
+} from '@chakra-ui/react';
+import NextImage from 'next/image';
+import React, { useEffect, useState } from 'react';
+
+// import productImg from '../../public/assets/home/invoices-list-screenshot.svg'
+import productImg from '../../public/assets/home/lock-funds-screenshot.png';
+import { CustomIcon } from '../icons/CheckSquare';
+
+export function FeatureArbitration({ ...props }) {
+ const [flexDirection, setFlexDirection] = useState('row');
+ // const [columns, setColumns] = useState(2)
+
+ useEffect(() => {
+ if (window) {
+ toggleDirection();
+ window.addEventListener('resize', toggleDirection);
+ }
+ });
+
+ function toggleDirection() {
+ if (window.innerWidth < 800) {
+ setFlexDirection('column-reverse');
+ // setColumns(1)
+ } else {
+ setFlexDirection('row');
+ // setColumns(2)
+ }
+ }
+
+ return (
+
+
+ {/* Image */}
+
+ {/* */}
+
+
+
+
+
+ {/* Text */}
+
+
+ THIRD PARTY ARBITRATION
+
+ Dispute resolution,
+ without the stress.
+
+
+
+
+ Benefit from impartial decision making in case of conflict
+
+
+
+
+
+ Maximum arbitration service fee of 5%, automatically deducted
+ from escrow
+
+
+
+
+ No need to find a third party arbitrator on your own
+
+
+
+
+
+ );
+}
diff --git a/packages/website/components/home/FeatureCrypto.jsx b/packages/website/components/home/FeatureCrypto.jsx
new file mode 100644
index 00000000..af38b219
--- /dev/null
+++ b/packages/website/components/home/FeatureCrypto.jsx
@@ -0,0 +1,105 @@
+import {
+ Box,
+ Flex,
+ Grid,
+ GridItem,
+ Heading,
+ Text,
+ VStack,
+} from '@chakra-ui/react';
+import NextImage from 'next/image';
+import React from 'react';
+
+import flexibleIcon from '../../public/icons/features/flexible.svg';
+import impartialIcon from '../../public/icons/features/impartial.svg';
+import secureIcon from '../../public/icons/features/secure.svg';
+
+export function FeatureCrypto({ ...props }) {
+ return (
+
+
+ Accept cryptocurrency payments for your work
+ {/*
+ Choose from 17 tokens to get paid with, including USDT, USDC, WETH, DAI and more!
+ */}
+
+
+
+ {/* Icon */}
+
+
+
+ Flexible
+
+
+ Decide which cryptocurrency to be paid with and in how many
+ payments.
+
+
+
+
+
+
+ {/* Icon */}
+
+
+
+ Secure
+
+
+ Escrow funds are secured via a smart contract until released
+ to your wallet.
+
+
+
+
+
+
+ {/* Icon */}
+
+
+
+ Impartial
+
+
+ Integrated dispute resolution through a third party
+ arbitrator, if you need it.
+
+
+
+
+
+
+
+ );
+}
diff --git a/packages/website/components/home/FeatureEscrow.jsx b/packages/website/components/home/FeatureEscrow.jsx
new file mode 100644
index 00000000..295e9bc9
--- /dev/null
+++ b/packages/website/components/home/FeatureEscrow.jsx
@@ -0,0 +1,131 @@
+import {
+ Box,
+ Flex,
+ Heading,
+ List,
+ ListIcon,
+ ListItem,
+ Text,
+} from '@chakra-ui/react';
+import NextImage from 'next/image';
+
+import productImg from '../../public/assets/home/escrow-release-screenshot.svg';
+import { CustomIcon } from '../icons/CheckSquare';
+
+export function FeatureEscrow({ ...props }) {
+ return (
+
+
+ {/* Text */}
+
+
+ CRYPTOCURRENCY ESCROW
+
+ Protect your money.
+ Protect your time.
+
+
+
+
+ Do business with anyone, anywhere, even if you don’t know or
+ trust them yet
+
+
+
+
+
+ Gain the peace of mind that you will get paid if you do the work
+
+
+
+
+
+ Get paid as you complete project milestones, instead of at the
+ end of your project
+
+
+
+
+ Protect yourself from chargebacks and fraud
+
+
+
+
+ {/* Image */}
+
+
+
+
+
+ );
+}
diff --git a/packages/website/components/home/FeatureInvoice.jsx b/packages/website/components/home/FeatureInvoice.jsx
new file mode 100644
index 00000000..12a66f6e
--- /dev/null
+++ b/packages/website/components/home/FeatureInvoice.jsx
@@ -0,0 +1,139 @@
+import {
+ Box,
+ Flex,
+ Heading,
+ List,
+ ListIcon,
+ ListItem,
+ Text,
+} from '@chakra-ui/react';
+import NextImage from 'next/image';
+import React, { useEffect, useState } from 'react';
+
+import productImg from '../../public/assets/home/invoices-list-screenshot.svg';
+import { CustomIcon } from '../icons/CheckSquare';
+
+export function FeatureInvoice({ ...props }) {
+ const [flexDirection, setFlexDirection] = useState('row');
+
+ useEffect(() => {
+ if (window) {
+ toggleDirection();
+ window.addEventListener('resize', toggleDirection);
+ }
+ });
+
+ function toggleDirection() {
+ if (window.innerWidth < 800) {
+ setFlexDirection('column-reverse');
+ } else {
+ setFlexDirection('row');
+ }
+ }
+
+ return (
+
+
+ {/* Image */}
+
+ {/* */}
+
+
+
+ {/* Text */}
+
+
+ CRYPTOCURRENCY INVOICING
+
+
+ The smart way to get paid as a web3 freelancer.
+
+
+
+
+
+ Prevent clients sending funds to the wrong wallet address
+
+
+
+
+ Stay organized with all of your invoices in one place
+
+
+
+ Quickly check the status of each of your invoices
+
+
+
+ Download PDFs of each invoice for your records
+
+
+
+
+
+ );
+}
diff --git a/packages/website/components/home/Hero.jsx b/packages/website/components/home/Hero.jsx
new file mode 100644
index 00000000..2250f77c
--- /dev/null
+++ b/packages/website/components/home/Hero.jsx
@@ -0,0 +1,106 @@
+import { Box, Button, Flex, Heading, Text, VStack } from '@chakra-ui/react';
+import NextImage from 'next/image';
+import NextLink from 'next/link';
+import React, { useEffect, useState } from 'react';
+
+import heroImg from '../../public/assets/home/hero-image.svg';
+
+export function HeroSection({ ...props }) {
+ const [flexDirection, setFlexDirection] = useState('row');
+
+ useEffect(() => {
+ if (window) {
+ toggleDirection();
+ window.addEventListener('resize', toggleDirection);
+ }
+ });
+
+ function toggleDirection() {
+ if (window.innerWidth < 800) {
+ setFlexDirection('column');
+ } else {
+ setFlexDirection('row');
+ }
+ }
+
+ return (
+
+
+
+
+
+ Crypto invoicing
+
+
+ that's simple & free
+
+
+
+ Smart Invoice is an easy-to-use tool that provides web3 freelancers
+ with cryptocurrency invoicing, escrow, and arbitration.
+
+
+
+ Open dApp
+
+
+
+ Free to use. No email signup required.
+
+
+
+ {/* Image */}
+
+
+
+ );
+}
diff --git a/packages/website/components/home/StoryOverview.jsx b/packages/website/components/home/StoryOverview.jsx
new file mode 100644
index 00000000..9ae82db2
--- /dev/null
+++ b/packages/website/components/home/StoryOverview.jsx
@@ -0,0 +1,87 @@
+import { Box, Button, Flex, Heading, Text, VStack } from '@chakra-ui/react';
+import NextImage from 'next/image';
+import NextLink from 'next/link';
+import React, { useEffect, useState } from 'react';
+
+import mdLogo from '../../public/logos/molochdao.svg';
+import rgLogo from '../../public/logos/raidguild.svg';
+
+export function StoryOverviewSection({ ...props }) {
+ const [flexDirection, setFlexDirection] = useState('row');
+
+ useEffect(() => {
+ if (window) {
+ toggleDirection();
+ window.addEventListener('resize', toggleDirection);
+ }
+ });
+
+ function toggleDirection() {
+ if (window.innerWidth < 800) {
+ setFlexDirection('column');
+ } else {
+ setFlexDirection('row');
+ }
+ }
+
+ return (
+
+
+
+
+ Not your typical web3 story
+
+
+ Built by freelancers,
+
+
+ for freelancers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Smart Invoice is a free tool, built as a public good, by a team of
+ web3 freelancers operating out of the RaidGuild DAO.
+
+
+ It was originally created as an internal tool by the RaidGuild DAO
+ to solve the most common challenges around receiving cryptocurrency
+ payments for our service work. It proved to be so effective, simple,
+ and secure to use that we decided to spin up a public version.
+
+
+ Through the generosity of MolochDAO and their grants program, we’ve
+ been able to continue building out Smart Invoice for anyone to use
+ regardless of economic status, location, or technical ability.
+
+
+
+ Learn more
+
+
+
+
+
+ );
+}
diff --git a/packages/website/components/home/Testimonials.jsx b/packages/website/components/home/Testimonials.jsx
new file mode 100644
index 00000000..9064f37e
--- /dev/null
+++ b/packages/website/components/home/Testimonials.jsx
@@ -0,0 +1,129 @@
+import {
+ Box,
+ Flex,
+ Heading,
+ HStack,
+ Slide,
+ Text,
+ useInterval,
+} from '@chakra-ui/react';
+import NextImage from 'next/image';
+import React, { useState } from 'react';
+
+import quoteIcon from '../../public/quote-icon.svg';
+
+export function Testimonials() {
+ const [index, setIndex] = useState(0);
+ const testimonials = [
+ {
+ id: 1,
+ quote: 'Super smooth, great UI. The most straightforward escrow.',
+ name: 'MadFinance team',
+ title: '',
+ company: '',
+ },
+ {
+ id: 2,
+ quote: 'This changes everything!',
+ name: '0xhanvalen',
+ title: 'Freelance Developer',
+ company: '',
+ },
+ {
+ id: 3,
+ quote: "We're forking this!",
+ name: 'Based Ghouls Dev Team',
+ title: '',
+ company: '',
+ },
+ {
+ id: 4,
+ quote: 'That time we really got f***ed we forgot to use Smart Invoice.',
+ name: 'Ξ2T',
+ title: '',
+ company: '',
+ },
+ ];
+
+ useInterval(toggleInterval, 5000);
+
+ function toggleInterval() {
+ if (index + 1 < testimonials.length) {
+ setIndex(index + 1);
+ } else {
+ setIndex(0);
+ }
+ }
+
+ return (
+
+ {testimonials.map((t, i) => (
+
+
+
+
+ {t.quote}
+
+
+
+ {t.name}
+
+ {t.title && t.company && (
+
+ {t.title}, {t.company}
+
+ )}
+ {t.title && !t.company && {t.title} }
+ {!t.title && t.company && {t.company} }
+
+
+
+ ))}
+
+ {testimonials.map((t, i) => (
+ setIndex(i)}
+ />
+ ))}
+
+
+ );
+}
diff --git a/packages/website/components/icons/CheckSquare.jsx b/packages/website/components/icons/CheckSquare.jsx
new file mode 100644
index 00000000..7f2af07e
--- /dev/null
+++ b/packages/website/components/icons/CheckSquare.jsx
@@ -0,0 +1,39 @@
+import { Icon } from '@chakra-ui/react';
+import NextImage from 'next/image';
+import React from 'react';
+
+import avoid from '../../public/icons/boxed/avoid.svg';
+import client from '../../public/icons/boxed/client.svg';
+import menu from '../../public/icons/boxed/list.svg';
+import pdf from '../../public/icons/boxed/pdf.svg';
+import piechart from '../../public/icons/boxed/piechart.svg';
+import progress from '../../public/icons/boxed/progress.svg';
+import scale from '../../public/icons/boxed/scale.svg';
+import search from '../../public/icons/boxed/search.svg';
+import status from '../../public/icons/boxed/status.svg';
+import trust from '../../public/icons/boxed/trust.svg';
+import warning from '../../public/icons/boxed/warning.svg';
+
+export function CustomIcon({ ...props }) {
+ if (props.type === 'avoid') return ;
+ if (props.type === 'client') return ;
+ if (props.type === 'menu') return ;
+ if (props.type === 'pdf') return ;
+ if (props.type === 'piechart') return ;
+ if (props.type === 'progress') return ;
+ if (props.type === 'scale') return ;
+ if (props.type === 'search') return ;
+ if (props.type === 'status') return ;
+ if (props.type === 'trust') return ;
+ if (props.type === 'warning') return ;
+}
+
+export const CheckSquareIcon = ({ ...props }) => (
+
+
+
+
+);
diff --git a/packages/website/components/layout/CallToAction.jsx b/packages/website/components/layout/CallToAction.jsx
new file mode 100644
index 00000000..45f127af
--- /dev/null
+++ b/packages/website/components/layout/CallToAction.jsx
@@ -0,0 +1,90 @@
+import { Box, Button, Flex, Heading, Icon, Text } from '@chakra-ui/react';
+import NextLink from 'next/link';
+import React, { useEffect, useState } from 'react';
+
+import { CheckSquareIcon } from '../icons/CheckSquare';
+
+export function CallToAction({ ...props }) {
+ const [flexDirection, setFlexDirection] = useState('row');
+
+ useEffect(() => {
+ if (window) {
+ toggleDirection();
+ window.addEventListener('resize', toggleDirection);
+ }
+ });
+
+ function toggleDirection() {
+ if (window.innerWidth < 800) {
+ setFlexDirection('column');
+ } else {
+ setFlexDirection('row');
+ }
+ }
+
+ return (
+
+
+
+
+ Create your first invoice
+
+
+
+
+ Free to use
+
+
+
+ No email sign up needed
+
+
+
+ Integrated escrow
+
+
+
+ Arbitration available
+
+
+
+
+
+ Open dApp
+
+
+
+
+ );
+}
diff --git a/packages/website/components/layout/Footer.jsx b/packages/website/components/layout/Footer.jsx
new file mode 100644
index 00000000..6ce2692a
--- /dev/null
+++ b/packages/website/components/layout/Footer.jsx
@@ -0,0 +1,165 @@
+import {
+ Box,
+ Button,
+ Divider,
+ Flex,
+ FormControl,
+ Heading,
+ Input,
+ Text,
+ useToast,
+} from '@chakra-ui/react';
+import NextImage from 'next/image';
+import NextLink from 'next/link';
+import React, { useEffect, useState } from 'react';
+
+import logo from '../../public/logos/smart-invoice/white.svg';
+
+export function Footer({ ...props }) {
+ const [email, setEmail] = useState('');
+ const [submitting, setSubmitting] = useState(false);
+ const [flexDirection, setFlexDirection] = useState('row');
+ const toast = useToast();
+
+ useEffect(() => {
+ if (window) {
+ toggleDirection();
+ window.addEventListener('resize', toggleDirection);
+ }
+ });
+
+ function toggleDirection() {
+ if (window.innerWidth < 800) {
+ setFlexDirection('column');
+ } else {
+ setFlexDirection('row');
+ }
+ }
+
+ async function submitForm(e) {
+ e.preventDefault();
+ setSubmitting(true);
+ try {
+ await fetch(process.env.GETFORM_URL, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ body: JSON.stringify({ email }),
+ });
+ const toastId = 'email-submitted';
+ if (!toast.isActive(toastId)) {
+ toast({
+ id: toastId,
+ duration: 3000,
+ position: 'bottom',
+ status: 'success',
+ title: 'Email submitted!',
+ });
+ }
+ setEmail('');
+ } catch (error) {
+ console.error(error);
+ }
+ setSubmitting(false);
+ }
+
+ return (
+
+
+
+
+ Get the web3 freelancer edge
+
+
+
+ Web3 moves fast. Things are always changing.{' '}
+
+ Add yourself to our notification list to get updates on new product
+ features, and when something major happens in the web3 freelance
+ space.
+
+
+
+
+
+
+
+
+ Home
+
+ Docs
+
+
+ Twitter
+
+
+ Discord
+
+
+
+
+ );
+}
diff --git a/packages/website/components/layout/Head.jsx b/packages/website/components/layout/Head.jsx
new file mode 100644
index 00000000..0ca0d042
--- /dev/null
+++ b/packages/website/components/layout/Head.jsx
@@ -0,0 +1,70 @@
+export function HomeMeta() {
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
+
+export function AboutMeta() {
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/packages/website/components/layout/Layout.jsx b/packages/website/components/layout/Layout.jsx
new file mode 100644
index 00000000..a0659ccb
--- /dev/null
+++ b/packages/website/components/layout/Layout.jsx
@@ -0,0 +1,42 @@
+import { Box, Flex } from '@chakra-ui/react';
+import Head from 'next/head';
+import Script from 'next/script';
+import React from 'react';
+
+import { Footer } from './Footer';
+import { NavBar } from './NavBar';
+
+export function Layout({ children, metatags, title }) {
+ return (
+
+
+
+
+ {title}
+ {metatags}
+
+
+
+
+
+
+ {children}
+
+
+ );
+}
diff --git a/packages/website/components/layout/NavBar.jsx b/packages/website/components/layout/NavBar.jsx
new file mode 100644
index 00000000..9fa3cb75
--- /dev/null
+++ b/packages/website/components/layout/NavBar.jsx
@@ -0,0 +1,93 @@
+import { Button, Flex } from '@chakra-ui/react';
+import NextImage from 'next/image';
+import NextLink from 'next/link';
+import React, { useEffect, useState } from 'react';
+
+import logo from '../../public/logos/smart-invoice/normal.svg';
+
+export function NavBar({ ...props }) {
+ const [mobile, setMobile] = useState(false);
+
+ useEffect(() => {
+ if (window) {
+ toggleMobile();
+ window.addEventListener('resize', toggleMobile);
+ }
+ });
+
+ function toggleMobile() {
+ if (window.innerWidth < 800) {
+ setMobile(true);
+ } else {
+ setMobile(false);
+ }
+ }
+
+ return (
+
+
+ {/* Logo */}
+
+
+
+
+
+
+
+
+ {/* Navigation Links */}
+ {!mobile && (
+
+
+ Documentation
+
+ About
+ Help
+
+ )}
+
+ {/* App Button */}
+
+
+
+ Open dApp
+
+
+
+
+
+ {/* Navigation Links */}
+ {mobile && (
+
+
+ Documentation
+
+ About
+ Help
+
+ )}
+
+ );
+}
diff --git a/packages/website/docs-v3/arbitration/arbitration-infra.md b/packages/website/docs-v3/arbitration/arbitration-infra.md
new file mode 100644
index 00000000..306e24a2
--- /dev/null
+++ b/packages/website/docs-v3/arbitration/arbitration-infra.md
@@ -0,0 +1,41 @@
+---
+title: Arbitration Infrastructure
+---
+
+## Introduction
+
+Behind every arbitration safe that is offered by SmartInvoice alone, or together with *Kleros* stands a sophisticated governance structure that ensures the proper handling of locked funds. As SmartInvoice stands for transparent verifiability, we provide you with an overview of the smart contracts behind every arbitration on any given network Smart Invoice supports.
+
+## Network-Specific Smart Contract Addresses
+
+For making it as easy and transparent as possible for you, Smart Invoice operates a single smart contract arbitration address across all supported networks. Nevertheless, always verify that your network settings and Safe address are configured properly **especially when sending funds directly to one of these Safes for appeal or resubmission**.
+
+### Arbitrum
+
+- DAO [Safe](https://app.safe.global/home?safe=arb1:0xb7Cbc9C648f53c843470adF5cfA13a29D0c0deF6)
+- [Top Hat](https://app.hatsprotocol.xyz/trees/42161/16)
+- Arbitration [Safe](https://app.safe.global/home?safe=arb1:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+
+### Base
+
+- DAO [Safe](https://app.safe.global/home?safe=base:0x768831b22A1a651481c4CcFD33Ff8CDEE06938f3)
+- [Top Hat](https://app.hatsprotocol.xyz/trees/8453/14)
+- Arbitration [Safe](https://app.safe.global/home?safe=base:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+
+### Gnosis
+
+- DAO [Safe](https://app.safe.global/home?safe=gno:0x7dbf961efba7518799f616dc4d295f47334f96d5)
+- [Top Hat](https://app.hatsprotocol.xyz/trees/100/108?hatId=108)
+- Arbitration [Safe](https://app.safe.global/home?safe=gno:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+
+### Optimism
+
+- DAO [Safe](https://app.safe.global/home?safe=oeth:0x04531cE340e8315338a3e66A651D8ec61F60F967)
+- [Top Hat](https://app.hatsprotocol.xyz/trees/10/96)
+- Arbitration [Safe](https://app.safe.global/home?safe=oeth:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+
+### Polygon
+
+- DAO [Safe](https://app.safe.global/home?safe=matic:0xb09F7Ada3F914356daB3eCDb3aAeac772700D4D0)
+- [Top Hat](https://app.hatsprotocol.xyz/trees/137/40?hatId=40)
+- Arbitration [Safe](https://app.safe.global/home?safe=matic:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
\ No newline at end of file
diff --git a/packages/website/docs-v3/arbitration/custom-arbitration.md b/packages/website/docs-v3/arbitration/custom-arbitration.md
new file mode 100644
index 00000000..53f008e5
--- /dev/null
+++ b/packages/website/docs-v3/arbitration/custom-arbitration.md
@@ -0,0 +1,54 @@
+---
+title: Custom Arbitration Policy
+---
+
+## Introduction
+
+Smart Invoice is determined to provide users with the utmost flexibility when configuring the escrow functionality of their escrow contract. To this end, Smart Invoice offers users to include their custom contract address for arbitration when creating their invoice. All users are advised to verify that the smart contract acting as arbitrator is deployed on the same network the Smart Invoice escrow contract is going to be created.
+
+Furthermore, we advise users to agree with their counterparty on the use of a custom arbitrator in writing, as an improper configuration of an arbitrator MAY severely limit the functionality and security of the smart invoice protocol. The escrow functionality is non-custodial, thus, once the Smart Invoice escrow contract is deployed and funded, **we cannot help you** in recovering funds locked in the contract.
+
+The platform, however, provides minimal functionality to support any arbitration and independently of the provider chosen, by prompting users to file a claim that is propagated to IPFS when locking the funds.
+
+## Setup of Custom Arbitration Provider
+
+For choosing a custom arbitration provider select “**Custom**” in the dropdown menu for selecting an arbitration provider. Once you selected the option “**Custom**”, please proceed to input the desired smart contract address for the contract acting as arbitrator. You can now continue the flow as you would with any other arbitration provider.
+
+
+
+
+## Arbitration Process
+
+1. A conflict arises between two SmartInvoice users, who have chosen a custom arbitration provider. One of the parties locks the funds in the Smart Invoice escrow by calling the `lock()`.
+2. The user locking the funds is prompted to complete a form detailing the reason for the claim, a justification, and evidence.
+3. After `lock()` was called, the funds are forwarded to the smart contract specified upon signup.
+4. The specified smart contract, acting as arbitrator, receives the funds.
+5. The form is publicly available through an IPFS hash.
+6. An operator, controlling the smart contract acting as arbitrator SHALL review the information provided in the document on IPFS, which are associated with the contested SmartInvoice escrow.
+7. Based on the information provided, an operator controlling the smart contract acting as custom arbitration provider, SHALL make a ruling and release the funds accordingly.
+
+## Fees
+
+SmartInvoice cannot provide any information on the fees that are incurred when choosing a custom arbitration provider as SmartInvoice has neither control over the provider used, nor knowledge of which provider is being used.
+
+## Specification
+
+SmartInvoice cannot provide any details on the arbitration architecture and safeguards in place, when choosing a custom arbitration provider.
+
+## Terms
+
+**Disclaimer Regarding the Selection of Custom Arbitration Arbitrators**
+
+In the event of a user (hereinafter “the User”) choosing a custom arbitration provider for [smartinvoice.xyz](https://smartinvoice.xyz) (hereinafter referred to as "Custom Arbitrator") instead of a pre-approved arbitration providers endorsed by [smartinvoice.xyz](https://smartinvoice.xyz), such as LexDAO or Kleros, the User assumes full and exclusive responsibility for the selection, engagement, and outcomes associated with the use of said Custom Arbitrator. The User, hereby, agrees and acknowledges that SmartInvoice.xyz, its affiliates, representatives, agents, advisors (collectively, "SmartInvoice.xyz") SHALL bear no liability, whether direct, indirect, incidental, special, punitive, consequential, or otherwise, for any and all claims, damages, losses, expenses, costs, obligations, or liabilities, including but not limited to legal fees, arising out of, related to, or in connection with the User's decision to utilise a Custom Arbitrator for arbitration purposes.
+
+The User acknowledges and agrees that SmartInvoice.xyz provides no warranties, express or implied, as to the suitability, legality, reliability, quality, integrity, or availability of any Custom Arbitrator selected by the User. Furthermore, the User explicitly absolves SmartInvoice.xyz from any responsibility for the acts, omissions, decisions, or outcomes produced by the Custom Arbitrator, including but not limited to the resolution of disputes, the handling of any funds in escrow, and the enforcement of any arbitration awards.
+
+By choosing a Custom Arbitrator, the User confirms their understanding of and agreement to the fact that SmartInvoice.xyz's provision of its platform and related services does not extend to the vetting, approval, or endorsement of any Custom Arbitrator. The user further agrees that the use of a Custom Arbitrator SHALL be governed entirely by the terms and conditions, rules, and procedures established by such Custom Arbitrator, and that any recourse for dissatisfaction or dispute with a Custom Arbitrator shall lie solely against the Custom Arbitrator and not SmartInvoice.xyz.
+
+**Indemnification Clause**
+
+The User hereby agrees to indemnify, defend, and hold harmless SmartInvoice.xyz from and against any and all claims, damages, liabilities, costs, and expenses, including reasonable attorneys’ fees and costs, arising out of or in any way connected with the User’s selection, engagement, and use of a Custom Arbitrator, or the User’s breach of any representation, warranty, or covenant under this disclaimer or the terms and conditions of SmartInvoice.xyz. This indemnification obligation will survive the termination or expiration of the User’s use of SmartInvoice.xyz and/or the selection of a Custom Arbitrator.
+
+**Severability Clause**
+
+If any provision of this disclaimer, or the application thereof to any person or circumstance, is found to be invalid, void, or unenforceable to any extent, such invalidity, voidness, or unenforceability shall not affect the remaining provisions hereof, and the application of such provision to other persons or circumstances, which shall enforce to the fullest extent permitted by law. The parties hereby agree to replace any invalid, void, or unenforceable provision with a valid and enforceable provision that most closely matches the intent of the original provision. The remaining provisions of this disclaimer shall continue in full force and effect.
\ No newline at end of file
diff --git a/packages/website/docs-v3/arbitration/kleros-arbitration.md b/packages/website/docs-v3/arbitration/kleros-arbitration.md
new file mode 100644
index 00000000..5f309809
--- /dev/null
+++ b/packages/website/docs-v3/arbitration/kleros-arbitration.md
@@ -0,0 +1,135 @@
+---
+title: Kleros Arbitration Policy
+---
+
+## Introduction
+
+Smart Invoice is committed to providing resilient and flexible arbitration solutions that satisfy institutional needs, as well as cost-effective alternatives for users working as freelancers or use Smart Invoice for small sums only. Our partnership with [Kleros](https://kleros.io) helps us to deliver on our objectives for chains. Kleros is a trialled and tested solution that allows Smart Invoice users with small to medium sized invoices, with a minimum value of USD 1,000 at the time of the dispute, a reliable option for settling their disputes. Should your invoice fall below the threshold value at the time of dispute, the arbitration is handled internally by Smart Invoice. Please refer to *Arbitration by Smart Invoice* for reference. Smart Invoice is handling the collection of further information on claims and executes the decision made by Kleros through a [HATs Signer Gate-protected](https://hats-signer-gate-portal.vercel.app/deploy/hsgws) multi-sig wallet.
+
+Smart Invoice is Kleros recognised jurisdictions, which means that you will have to provide information about your claim to Smart Invoice, using a [Google Form](https://forms.gle/K3oMAzAb32G5SbpM9). We will then share the information with the responsible Kleros Court. After a decision was made, Smart Invoice shares the result with the disputants and releases the funds. In that process, you have the ability to appeal twice if your invoice exceeds a value of USD 2,000. In the following, the arbitration process, detailed conditions for enforcement and escalation, our arbitration policy, the court parameters, and the Kleros integration type are described. Finally, this documents references the multi-sig addresses for executing the arbitration, the fees, and the arbitration interface.
+
+## *Kleros* Arbitration Process
+
+1. A conflict arises between two Smart Invoice users, who have chosen Kleros as arbitration provider. One of the parties locks the funds in the Smart Invoice escrow by calling the `lock()` function.
+2. The user locking the funds is prompted to complete a form detailing the reason for the claim, a justification, and evidence.
+3. After `lock()` was called, the funds are forwarded to a three out of five signers multi-signature wallet controlled by Smart Invoice representatives.
+4. Kleros receives both forms and automatically converts them into a document that is easy for the jurors to read.
+5. Kleros initiates the dispute in the appropriate court and uploads the statements from both parties. Then the Kleros court takes over the dispute and resolves it in four stages.
+ 1. Evidence - Evidence can be submitted and parties can withdraw.
+ 2. Vote - Jurors reveal/cast their vote.
+ 3. Appeal - The dispute can be appealed.
+ 4. Execution - Tokens are redistributed, and the ruling is executed.
+6. Kleros informs Smart Invoice of the case resolution, and the Smart Invoice representatives execute the multi-sig accordingly.
+
+### Submission of Evidence
+
+The evidence you are submitting to the Kleros Court consists of the following:
+- Smart Invoice data, including the project description, linked project specification
+- additional information you are providing through the [Google form](https://forms.gle/K3oMAzAb32G5SbpM9)
+- a claim statement collected from you when locking the funds
+
+Please note that all evidence must be provided through the forms provided on [smartinvoice.xyz](https://smartinvoice.xyz)to be admitted to the arbitration process. **Failing to provide relevant information in the project description and through the forms will lead to its exclusion in the arbitration process.** It is your sole responsibility to provide all necessary information. Providing additional information when locking the funds shall be done through this [Google form](https://forms.gle/K3oMAzAb32G5SbpM9).
+
+For a project description that is linked to an escrow account on SmartInvoice upon creation, to be valid and considered as evidence by Kleros, the project description must be available as tamperproof and non-repudiable document. That may be a linked document that was signed using DocuSign, an IPFS hash, or similar. Otherwise, you will have to submit evidence in the [Google Form for claim submissions](https://forms.gle/K3oMAzAb32G5SbpM9) that irrefutably proofs that the version of the document linked in the escrow description matches the version and document that was agreed upon by both parties.
+
+## Escalation and Enforcement
+
+Smart Invoice will only escalate claims to Kleros that are linked to smart escrows holding tokens with **a minimum value of USD 1,000 at the time of locking the funds**. Smart Invoice is a **Kleros recognised jurisdictions**, when choosing the Kleros arbitration you acknowledge and agree to Smart Invoice executing the arbitration result on behalf of Kleros. Furthermore, you agree your case to be arbitrated by a Kleros court of Kleros' sole discretion and with a fixed number of three jurors assigned exclusively by Kleros. Finally, you acknowledge that from the time of locking the funds until their release, the funds are safeguarded by a multi-sig under the control of Smart Invoice. The arbitration process is provided as is and without warranty.
+
+### Escalation conditions
+
+If you adhere to the following conditions, SmartInvoice escalates the dispute to Kleros courts for resolution. Please keep in mind that the Kleros courts, however, reject your claim in cases where the requested remedy exceeds the value of the claim. You are thus encouraged to properly quantify damages to avoid unnecessary resubmissions of your claim.
+
+1. You have selected Kleros Arbitration when creating the escrow contract on Smart Invoice.
+2. The Smart Invoice holds tokens with a minimum value of USD 1,000 at the time of filing the dispute.
+3. Your Smart Invoice has a project description, a title, and a project specification linked.
+4. You have filled out the [Claimant form](https://forms.gle/K3oMAzAb32G5SbpM9), as well as the lock comment.
+5. You have provided sufficient information in these forms to allow for arbitration.
+6. You have created the smart invoice through [smartinvoice.xyz](https://smartinvoice.xyz).
+7. The goods and services provided do not conflict neither with the laws in the United States of America nor the European Union.
+8. You agree to pay a five (5) percent fee for the arbitration service.
+9. You acknowledge that Smart Invoice or Kleros may anytime, at their sole discretion and without having to provide information decide to halt, abort, or decline arbitration.
+10. You provided a means for SmartInvoice, Kleros, and its agents to contact you in form of an email and you consent to the processing of the related data by these entities.
+
+### Conditions for Resubmission of Claims
+
+Claimants may resubmit their claim in cases, when the court rejected the claim because it is out of proportion to the incurred damages (if damages occurred at all). A resubmission is only possible in cases, where the Kleros court rules that the claim in principle is warranted, however, the requested damages are disproportionate to the claim.
+
+Only in such case of over-quantification, a resubmission with altered damage claims is permissible. The resubmission must be made **within five business days** of the ruling and can only be done **once**. To resubmit, please use the [Google Form for claim submissions](https://forms.gle/K3oMAzAb32G5SbpM9) and select *resubmission*.
+
+All fees associated with a resubmission are to be paid in full by the resubmitting party in advance to the respective multi-sig referenced below **on the correct network**. Failure to do so will result in the resubmission to be disregarded by SmartInvoice and Kleros. Properly transmitting the required funds are your sole responsibility. Neither SmartInvoice nor Kleros can be held liable for your failure to resubmit and pay in an appropriate and timely fashion.
+
+### Appeal
+
+Following the Kleros process, you may appeal to a decision made by a Kleros court for invoices with holding tokens with a **minimum value of USD 2,000 at the time of the dispute**. An appeal will result in the reconsideration of your case as is by a new court that will consist of 2n+1 jurors. Given the limitations agreed upon between SmartInvoice and Kleros for the *Recognition of Jurisdiction* integration, you can only appeal twice. To disambiguate appeals and resubmission, please read the preceding section for clarification.
+
+Appeals must be filed **within five business days** of the ruling and costs are to be paid in full by the appealing party **in advance**, as they are not covered by the fee retained from the invoice. Payments are to be made to the respective multi-sig referenced below **on the correct network**. Failure to do so will result in the appeal to be disregarded by SmartInvoice and Kleros. Properly transmitting the required funds are your sole responsibility. Neither SmartInvoice nor Kleros can be held liable for your failure to appeal and pay in an appropriate and timely fashion.
+
+### Enforcement conditions
+
+1. The dispute has been created only after the escalation conditions were fulfilled and the information provided allows for arbitration to take place.
+2. There is no evidence of negligence, malicious intent, or otherwise ill guided behaviour.
+3. The Kleros court is available to handle the arbitration.
+
+## General Dispute Policy for [smartinvoice.xyz](https://smartinvoice.xyz)
+
+| Version | Date | Document |
+| ------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
+| 1.0 | 2024-04-22 | [Kleros General Dispute Policy for SmartInvoice](https://docs.google.com/document/d/1z_l2Wc8YHSspB0Lm5cmMDhu9h0W5G4thvDLqWRtuxbA/edit?usp=sharing) |
+
+This policy is crafted for Kleros Jurors to ensure transparency, fairness, and efficiency in resolving disputes, safeguarding the interests of both Clients and Providers engaged in transactions on SmartInvoice.xyz. Thus, it falls outside of the responsibility and liability of SmartInvoice. If you choose Kleros as an arbitration provider, you are entering into a contractual relationship with the Kleros entities on the basis of this policy.
+
+It functions as the basis of decision making for jurors in cases related to Smart Invoice. This policy honours the principle of contractual freedom, while providing clearer subsidiary rules for cases in which the agreement between the disputed parties is not sufficient to determine if there was a breach of contract and how to appropriately value damages.
+
+## Court Parameters
+
+Through the *Recognition of Jurisdiction* integration with Kleros, users of SmartInvoice may use choose from the list of three courts below when creating an escrow on [smartinvoive.xyz](https://smartinvoice.xyz). All courts offered by Kleros to SmartInvoice users are on the **Gnosis (xDAI) chain**. After an escrow was created courts **cannot be changed**.
+
+### Available Courts
+
+1. **[xDAI General Court](https://klerosboard.com/100/courts/0)**
+ - Chain: Gnosis (xDai)
+ - Jurors drawn in the first round: 3
+ - Juror Vote Reward: 13 xDAI per juror
+ - [Smart Contract](https://gnosis.blockscout.com/address/0xc7add3c961f7935cb4914e37da991d2f1cd7986c)
+1. **[xDai Solidity Court](https://klerosboard.com/100/courts/13)**
+ - Chain: Gnosis (xDai)
+ - Jurors drawn in the first round: 2
+ - Juror Vote Reward: 30 xDAI per juror
+ - [Smart Contract](https://gnosis.blockscout.com/address/0xce9260c08272fa39c9af1307cd079dc5636bee01)
+1. **[xDai Javascript Court](https://klerosboard.com/100/courts/14)**
+ - Chain: Gnosis (xDai)
+ - Jurors drawn in the first round: 2
+ - Juror Vote Reward: 30 xDAI per juror
+ - [Smart Contract](https://gnosis.blockscout.com/address/0x9fe4d9e4989ad031fdc424d8c34d77e70aa0b269)
+
+## Integration with the Court
+
+- Type: *Recognition of Jurisdiction* (*RoJ*)
+- Github link: *[smart-invoice](https://github.com/SmartInvoiceXYZ/smart-invoice)*
+
+## Fees
+
+SmartInvoice takes a flat fee of five percent (5%) of the disputed funds for covering arbitration. For this reason, Kleros is not offered for disputed escrows that hold less than USD 1,000 in funds. Arbitration fees arising out of the use of Kleros that are above the 5% fee are to be paid in advance to the appropriate arbitration multi-sig of SmartInvoice for the respective network. Additional fees apply to the following services:
+
+- choosing a specialised court,
+- adding jurors,
+- resubmitting a claim, and,
+- appealing a claim
+
+## Considerations
+
+SmartInvoice wants to offer its users escrow services not only on Gnosis, but also on Optimism, Base, Arbitrum, and Polygon. For Polygon and Gnosis chain, you should consider which arbitration provider best fits your needs, as Smart Invoice has the broadest arbitration offering on these networks.
+
+New chains that are not currently covered natively by Kleros, will be available on Smart Invoice through *Kleros RoJ*. This means that SmartInvoice will execute the decision made by Kleros jurors through the multi-sigs referenced in the next section.
+
+### Hats Signer Gate Addresses (3/5)
+
+If you are looking for more detailed documentation on our arbitration infrastructure, please visit our [arbitration infrastructure section](docs-v3/arbitration/arbitration_policies/arbitration_infra.md). Below is a list of all Safes currently operational for providing *Kleros RoJ* arbitration.
+
+- Arbitrum Arbitration [Safe](https://app.safe.global/home?safe=arb1:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+- Base Arbitration [Safe](https://app.safe.global/home?safe=base:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+- Gnosis Arbitration [Safe](https://app.safe.global/home?safe=gno:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+- Optimism Arbitration [Safe](https://app.safe.global/home?safe=oeth:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+- Polygon Arbitration [Safe](https://app.safe.global/home?safe=matic:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+
diff --git a/packages/website/docs-v3/arbitration/lexdao-arbitration.md b/packages/website/docs-v3/arbitration/lexdao-arbitration.md
new file mode 100644
index 00000000..698ad8ca
--- /dev/null
+++ b/packages/website/docs-v3/arbitration/lexdao-arbitration.md
@@ -0,0 +1,36 @@
+---
+title: LexDAO Arbitration Policy
+---
+
+## Introduction
+
+As part of our commitment to providing secure, transparent, and efficient mechanisms for resolving disputes, Smart Invoice provides an advanced arbitration feature in collaboration with the LexDAO Cooperative. This feature brings trust and reliability in pseudonymous digital transactions, making service agreements in Web3 safe. The arbitration process we have implemented serves is a crucial component in ensuring that all parties engaged in a transaction can resolve their conflicts in a fair and unbiased manner.
+
+The choice of arbitration as a dispute resolution mechanism is motivated by the necessity to address disagreements swiftly and effectively, without the need for lengthy and often costly court proceedings. By integrating with the *LexDAO Resolver*, Smart Invoice leverages the expertise of seasoned arbitrators and the robustness of smart contracts to offer a streamlined, secure process for resolving disputes.
+
+## Arbitration Process
+
+Below, the arbitration process is outlined in detail. Beginning with the selection of the arbitration provider at the inception of the smart invoice contract, the takes effect when a dispute is triggered by either of the contracting parties. At this point and until the final resolution with the fund disbursement in accordance with the arbitrators' ruling representatives of the *LexDAO Resolver* manage the arbitration process for the contracting parties.
+
+1. LexDAO is selected as arbitration provider at the creation of the smart invoice contract.
+2. A conflict arises between two Smart Invoice users, who have chosen *LexDAO Resolver* as arbitration provider. One of the parties locks the funds in the Smart Invoice escrow by calling the `lock()` function.
+3. The user locking the funds is prompted to complete a form detailing the reason for the claim, a justification, and evidence.
+4. The document is stored on IPFS.
+5. After `lock()` was called, the funds are forwarded to a three out of five signers multi-signature wallet controlled by representatives of the *LexDAO Resolver*.
+6. Representatives of the *LexDAO Resolver* are notified by the claimant via email to [lexdaocoop@gmail.com](mailto:lexdaocoop@gmail.com).
+7. The arbitrators of the *LexDAO Resolver* review the evidence and rule according to the [UNCITRAL arbitration rules](https://uncitral.un.org/en/texts/arbitration/contractualtexts/arbitration).
+8. *LexDAO Resolver* releases the disputed funds pro rata minus the fee in line with their ruling.
+
+## Fees
+
+Arbitration by LexDAO is subject to a five (5) percent fee of the disputed amount payable pro rata by the parties according to the ruling of the arbitrator.
+
+## Specifications
+
+The LexDAO Arbitration is specified in this [document](https://github.com/lexDAO/Arbitration).
+
+## Terms of Use
+
+The terms of use for the LexDAO Resolver are set out [here](https://github.com/lexDAO/Arbitration/blob/master/rules/ToU.md).
+
+**Any controversy, dispute or claim among the parties arising out of or relating to this agreement, or the breach, termination or validity thereof, shall be finally settled by LexDAO Arbitration in accordance with the rules and procedures recorded on [https://github.com/lexDAO/Arbitration](https://github.com/lexDAO/Arbitration).**
\ No newline at end of file
diff --git a/packages/website/docs-v3/arbitration/smart-invoice-arbitration.md b/packages/website/docs-v3/arbitration/smart-invoice-arbitration.md
new file mode 100644
index 00000000..661533b4
--- /dev/null
+++ b/packages/website/docs-v3/arbitration/smart-invoice-arbitration.md
@@ -0,0 +1,94 @@
+---
+title: Smart Invoice Arbitration Policy
+---
+
+## Introduction
+
+Smart Invoice is committed to providing resilient and flexible arbitration solutions that satisfy institutional needs, as well as cost-effective alternatives for users working as freelancers or use Smart Invoice for small sums only. Since [Kleros](https://kleros.io) requires invoices to hold a minimum value of USD 1,000 at the time of the dispute and arbitration by LexDAO is only available on Gnosis Chain and Polygon, *Smart Invoice* also offers in-house arbitration for invoices not exceeding a value of USD 1,000 **at any time**. Should your invoice exceed the threshold value, the arbitration is escalated to Kleros automatically. Please refer to [Arbitration by Kleros](docs-v3/arbitration/arbitration_policies/kleros-arbitration.md) for reference. Smart Invoice executes in-house and *Kleros* arbitrations through a [HATs Signer Gate-protected](https://hats-signer-gate-portal.vercel.app/deploy/hsgws) multi-sig wallet.
+
+## *Smart Invoice* Arbitration Process
+
+1. A conflict arises between two Smart Invoice users, who have chosen arbitration to take place in-house by Smart Invoice. One of the parties locks the funds in the Smart Invoice escrow by calling the `lock()` function.
+2. The user locking the funds is prompted to complete a form detailing the reason for the claim, a justification, and evidence.
+3. After `lock()` was called, the funds are forwarded to a three out of five signers multi-signature wallet controlled by Smart Invoice representatives.
+4. Smart Invoices' arbitration committee convenes and reviews the evidence submitted by the claimant through the lock form.
+5. Smart Invoice finds a resolution for the case and the Smart Invoice representatives execute the multi-sig accordingly.
+
+### Submission of Evidence
+
+The evidence you are submitting to the Kleros Court consists of the following:
+- Smart Invoice data, including the project description, linked project specification
+- a claim statement collected from you when locking the funds
+
+Please note that all evidence must be provided through the **lock form** provided on [smartinvoice.xyz](https://smartinvoice.xyz)to be admitted to the arbitration process. **Failing to provide relevant information in the project description and through the forms will lead to its exclusion in the arbitration process.** It is your sole responsibility to provide all necessary information. Providing additional information when locking the funds.
+
+For a project description that is linked to an escrow account on SmartInvoice upon creation, to be valid and considered as evidence by Kleros, the project description must be available as tamperproof and non-repudiable document. That may be a linked document that was signed using DocuSign, an IPFS hash, or similar. Otherwise, you will have to submit evidence in the lock form that irrefutably proofs that the version of the document linked in the escrow description matches the version and document that was agreed upon by both parties.
+
+## Escalation and Enforcement
+
+Smart Invoice will only arbitrate or escalate claims that are linked to smart escrows holding tokens with **a maximum value of USD 1,000 anytime**. When choosing the Smart Invoice arbitration you acknowledge and agree to Smart Invoice executing the arbitration result and certify that your counterparty agrees to the arbitration by Smart Invoice. Furthermore, you agree your case to be arbitrated by Smart Invoices' sole discretion and with a fixed number of three arbitrators assigned ONLY by Smart Invoice and its entities. Finally, you acknowledge that from the time of locking the funds until their release, the funds are safeguarded by a multi-sig under the control of Smart Invoice. The arbitration process is provided as is and without warranty.
+
+### Escalation conditions
+
+If you adhere to the following conditions, SmartInvoice arbitrates your dispute. Please keep in mind that Smart Invoice MAY reject your claim in cases where the requested remedy exceeds the value of the claim. You are thus encouraged to properly quantify damages to avoid unnecessary resubmissions of your claim.
+
+1. You have selected Smart Invoice Arbitration when creating the escrow contract on Smart Invoice.
+2. The Smart Invoice never held tokens with worth an excess of USD 1,000.
+3. Your Smart Invoice has a project description, a title, and a project specification linked.
+4. You have filled out the lock form.
+5. You have provided sufficient information in these forms to allow for arbitration.
+6. You have created the smart invoice through [smartinvoice.xyz](https://smartinvoice.xyz).
+7. The goods and services provided do not conflict neither with the laws in the United States of America nor the European Union.
+8. You agree to pay a five (5) percent fee for the arbitration service.
+9. You acknowledge that Smart Invoice may anytime, at their sole discretion and without having to provide information decide to halt, abort, or decline arbitration.
+10. You provided a means for SmartInvoice and its agents to contact you in form of an email and you consent to the processing of the related data by these entities.
+
+### Conditions for Resubmission of Claims
+
+Claimants MAY NOT resubmit their claim in cases, when the court rejected the claim because it is out of proportion to the incurred damages (if damages occurred at all).
+
+### Appeal
+
+Claimants MAY NOT appeal to a decision made by Smart Invoice.
+
+### Enforcement conditions
+
+1. The dispute has been created only after the escalation conditions were fulfilled and the information provided allows for arbitration to take place.
+2. There is no evidence of negligence, malicious intent, or otherwise ill guided behaviour.
+3. Smart Invoice is available to handle the arbitration.
+
+## Fees
+
+SmartInvoice takes a flat fee of five percent (5%) of the disputed funds for covering arbitration.
+
+## Considerations
+
+SmartInvoice wants to offer its users escrow services not only on Gnosis, but also on Optimism, Base, Arbitrum, and Polygon. For Polygon and Gnosis chain, you should consider which arbitration provider best fits your needs, as Smart Invoice has the broadest arbitration offering on these networks.
+
+### Hats Signer Gate Addresses (3/5)
+
+If you are looking for more detailed documentation on our arbitration infrastructure, please visit our [arbitration infrastructure section](docs-v3/arbitration/arbitration_policies/arbitration_infra.md). Below is a list of all Safes currently operational for providing *in-house* arbitration.
+
+- Arbitrum Arbitration [Safe](https://app.safe.global/home?safe=arb1:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+- Base Arbitration [Safe](https://app.safe.global/home?safe=base:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+- Gnosis Arbitration [Safe](https://app.safe.global/home?safe=gno:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+- Optimism Arbitration [Safe](https://app.safe.global/home?safe=oeth:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+- Polygon Arbitration [Safe](https://app.safe.global/home?safe=matic:0x18542245cA523DFF96AF766047fE9423E0BED3C0)
+
+## Terms
+
+### Disclaimer Regarding the Selection of Custom Arbitration Arbitrators
+
+In the event of a user (hereinafter “the User”) choosing a Smart Invoice in-house arbitration for [smartinvoice.xyz](https://smartinvoice.xyz) (hereinafter referred to as "In-House Arbitrator"), the User assumes full and exclusive responsibility for the selection, engagement, and outcomes associated with the use of the In-House Arbitrator. The User, hereby, agrees and acknowledges that SmartInvoice.xyz, its affiliates, representatives, agents, advisors (collectively, "SmartInvoice.xyz") SHALL bear no liability, whether direct, indirect, incidental, special, punitive, consequential, or otherwise, for any and all claims, damages, losses, expenses, costs, obligations, or liabilities, including but not limited to legal fees, arising out of, related to, or in connection with the User's decision to utilise the In-House Arbitrator for arbitration purposes.
+
+The User acknowledges and agrees that SmartInvoice.xyz provides no warranties, express or implied, as to the suitability, legality, reliability, quality, integrity, or availability of the In-House Arbitrator selected by the User. Furthermore, the User explicitly absolves SmartInvoice.xyz from any responsibility for the acts, omissions, decisions, or outcomes produced by the In-House Arbitrator, including but not limited to the resolution of disputes, the handling of any funds in escrow, and the enforcement of any arbitration awards.
+
+By choosing a In-House Arbitrator, the User confirms their understanding of and agreement to the fact that SmartInvoice.xyz's provision of its platform and related services SHALL be governed entirely by the terms and conditions, rules, and procedures established in the context of engaging the In-House Arbitrator.
+
+### Indemnification Clause
+
+The User hereby agrees to indemnify, defend, and hold harmless SmartInvoice.xyz from and against any and all claims, damages, liabilities, costs, and expenses, including reasonable attorneys’ fees and costs, arising out of or in any way connected with the User’s selection, engagement, and use of its In-House Arbitrator, or the User’s breach of any representation, warranty, or covenant under this disclaimer or the terms and conditions of SmartInvoice.xyz and its In-House Arbitrator. This indemnification obligation will survive the termination or expiration of the User’s use of SmartInvoice.xyz and/or the selection of a In-House Arbitrator.
+
+### Severability Clause
+
+If any provision of this disclaimer, or the application thereof to any person or circumstance, is found to be invalid, void, or unenforceable to any extent, such invalidity, voidness, or unenforceability shall not affect the remaining provisions hereof, and the application of such provision to other persons or circumstances, which shall enforce to the fullest extent permitted by law. The parties hereby agree to replace any invalid, void, or unenforceable provision with a valid and enforceable provision that most closely matches the intent of the original provision. The remaining provisions of this disclaimer shall continue in full force and effect.
\ No newline at end of file
diff --git a/packages/website/docs-v3/docs-intro.md b/packages/website/docs-v3/docs-intro.md
new file mode 100644
index 00000000..6f834fd8
--- /dev/null
+++ b/packages/website/docs-v3/docs-intro.md
@@ -0,0 +1,27 @@
+---
+title: Smart Invoice Documentation
+---
+
+Welcome to the documentation of *Smart Invoice*. Here, you find information on how to best get started, tutorials, answers to frequently asked questions, and everything you need to know about **arbitration** - including our arbitration policies.
+
+If you want to learn more about integrating *Smart Invoice* into your platform, consider taking a look on [GitHub](https://github.com/SmartInvoiceXYZ). In the future, we may offer additional information on integrating with *Smart Invoice*. Meanwhile, give us a shout and we are happy to help you out.
+
+## Structure
+
+The documentation of *Smart Invoice* is structured as follows.
+
+### [Getting Started](docs-v3/getting-started/1_getting-started-intro.md)
+
+This section provides you with a quick guide for your first invoice from creation to release.
+
+### [Tutorials](docs-v3/tutorials/1_tutorials-intro.md)
+
+Eager to take a deep dive, but unsure where to start? Our tutorials walk you through step-by-step and ensure that you can navigate *Smart Invoice* with ease.
+
+### [Miscallaneous](docs-v3/misc/1_misc-intro.md)
+
+*Smart Invoice* grew quite a bit over the last years. Here you find hidden gems, edge cases and anything you always wanted to have an answer to.
+
+### [Arbitration](docs-v3/arbitration/1_arbitration-intro.md)
+
+The arbitration section is split in three parts. First, you learn all the necessary background on [our arbitration offering](docs-v3/arbitration/getting-started-with-arbitration/1_intro_arbitration_primer.md). Second, you can read up on our [Arbitration Policies](docs-v3/arbitration/arbitration_policies/1_arbitration_policies_overview.md). Finally, we want to ensure that you can verify our [arbitration infrastructure](docs-v3/arbitration/arbitration_policies/arbitration_infra.md).
\ No newline at end of file
diff --git a/packages/website/docs-v3/getting-started/how-do-i-log-in.md b/packages/website/docs-v3/getting-started/how-do-i-log-in.md
new file mode 100644
index 00000000..7526d0d1
--- /dev/null
+++ b/packages/website/docs-v3/getting-started/how-do-i-log-in.md
@@ -0,0 +1,13 @@
+---
+title: How do I log in?
+---
+
+Smart Invoice is a web3 application, which means you don’t actually create an account with an email address like you would with credit card invoicing tools.
+
+So there is no traditional “log in” process.
+
+To use Smart Invoice, you simply connect your cryptocurrency wallet to the site and you are logged in. Super easy and safe.
+
+If the prompt doesn't automatically appear, click the "Create Invoice" button to trigger it.
+
+
diff --git a/packages/website/docs-v3/getting-started/what-is-escrow.md b/packages/website/docs-v3/getting-started/what-is-escrow.md
new file mode 100644
index 00000000..899a06bb
--- /dev/null
+++ b/packages/website/docs-v3/getting-started/what-is-escrow.md
@@ -0,0 +1,13 @@
+---
+title: What is escrow?
+---
+
+Escrow is a legal arrangement in which a third party temporarily holds assets until the terms of an agreement have been met.
+
+This provides a level of safety and security for both parties without the risk of one side running away.
+
+In the case of Smart Invoice, this “third party” is a smart contract.
+
+The contractor promises to fulfill a specific service and only gets paid once the service is delivered according to the terms of the agreement.
+
+The client funds the escrow so the contractor can begin work, and once that work is completed, the client can release those funds from the escrow into the contractor's wallet.
diff --git a/packages/website/docs-v3/getting-started/what-is-locking-and-arbitration.md b/packages/website/docs-v3/getting-started/what-is-locking-and-arbitration.md
new file mode 100644
index 00000000..c0668e3b
--- /dev/null
+++ b/packages/website/docs-v3/getting-started/what-is-locking-and-arbitration.md
@@ -0,0 +1,23 @@
+---
+title: What is "locking" and arbitration?
+---
+
+### What is "locking"?
+
+If there is a dispute, you or your client can click a button to “lock” funds held by that invoice. This lock triggers the arbitration provider (Kleros, or the custom arbitrator you chose) to review and resolve the dispute.
+
+If the client loses confidence in the contractor at any time, or the contractor under delivers on their promise, the client may lock any remaining funds in Smart Invoice so they cannot be released or withdrawn.
+
+Alternatively, if the client has not released funds after a milestone is complete, the contractor may lock any remaining funds in Smart Invoice.
+
+
+
+### What is arbitration?
+
+Arbitration is triggered by either the client or contractor locking funds held by their smart invoice.
+
+Arbitration is the process of resolving a dispute between a client and a contractor, and it is facilitated by a third-party adjudicator.
+
+Based on the arbitrator’s review, they will determine who should receive funds and will send a transaction to Smart Invoice that transfers those funds to the contractor or the client.
+
+Our recommended arbitrator, Kleros, currently charges a 5% fee that is automatically deducted from the funded milestone for their arbitration services.
\ No newline at end of file
diff --git a/packages/website/docs-v3/getting-started/what-is-smart-invoice.md b/packages/website/docs-v3/getting-started/what-is-smart-invoice.md
new file mode 100644
index 00000000..c3734427
--- /dev/null
+++ b/packages/website/docs-v3/getting-started/what-is-smart-invoice.md
@@ -0,0 +1,7 @@
+---
+title: What is Smart Invoice?
+---
+
+Smart Invoice is a free crypto invoicing tool that allows freelancers to easily, and securely, accept cryptocurrency payments for their work.
+
+With integrated escrow and arbitration services, freelancers are able to protect themselves from chargebacks and fraud as they do business with anyone, even if they don’t know or trust them yet.
diff --git a/packages/website/docs-v3/getting-started/who-should-use-smart-invoice.md b/packages/website/docs-v3/getting-started/who-should-use-smart-invoice.md
new file mode 100644
index 00000000..c334600e
--- /dev/null
+++ b/packages/website/docs-v3/getting-started/who-should-use-smart-invoice.md
@@ -0,0 +1,8 @@
+---
+title: Who should use Smart Invoice?
+---
+
+Freelancers, contractors, service providers, and any other organization that needs to safely accept cryptocurrencies in exchange for their work.
+
+Individuals and organizations that are “clients” and need to pay invoices with cryptocurrencies.
+
diff --git a/packages/website/docs-v3/misc/FAQ.md b/packages/website/docs-v3/misc/FAQ.md
new file mode 100644
index 00000000..42e7584e
--- /dev/null
+++ b/packages/website/docs-v3/misc/FAQ.md
@@ -0,0 +1,221 @@
+---
+title: FAQ
+---
+
+### Does Smart Invoice have access to my funds?
+
+No. Each invoice created with Smart Invoice configures a custom smart contract that is only linked to the wallet addresses of the contractor, client, and arbitrator.
+
+No one else besides these 3 parties can interact with the invoice in any way.
+
+This means the Smart Invoice team cannot edit, modify, fix, or delete the invoices you create. If funds are sent to the wrong address, we cannot help you.
+
+
+### Is KYC required?
+
+No. You do not need to share your personal identity to use Smart Invoice.
+
+
+### Is there a minimum / maximum invoice amount?
+
+There are no maximum or minimum amount or milestone restrictions when creating an invoice.
+
+For very large projects, you can add as many milestones and payments as you like either during or after invoice creation.
+
+While differing network fees will change the considerations for a rational minimum invoice amount, invoices can be created with very small amounts and will work exactly the same.
+
+### I don’t see a specific token listed, why?
+
+If you don’t see a supported token listed in the drop down menu, you may be connected to the wrong Network.
+
+Check your wallet to ensure you are connected to the proper network for your preferred token, and then refresh your browser.
+
+This will reset your invoice to the beginning and you will need to start over, but you should see your preferred token in the drop down menu now.
+
+
+### Does Smart Invoice allow payment methods besides cryptocurrency?
+
+No. Smart Invoice is cryptocurrency specific.
+
+
+### How much does Smart Invoice cost?
+
+Smart Invoice is a free tool. We do not charge any fee to use it.
+
+However, you will need to pay gas fees to transact on the blockchain. Your preferred wallet will display the fees to process a transaction.
+
+If you dispute a payment and it goes to arbitration, there will be a fee that goes to the arbitrator to resolve the dispute. This is currently set at 5% of the disputed funds for Kleros - however, you can modify this amount if you choose a custom arbitrator.
+
+
+### Can I put my logo on these invoices?
+
+At the moment it is not possible to customize invoices with custom branding.
+
+### Can I use non-Ethereum wallet addresses?
+
+No. Smart Invoice only supports ERC-20 tokens. If your wallet address doesn’t support those, don’t use it with Smart Invoice.
+
+### What blockchains does Smart Invoice support?
+
+Smart Invoice supports Ethereum Mainnet, Gnosis, Polygon, Arbitrum, Optimism, Base, Holesky, and Sepolia Testnet.
+
+
+### Does Smart Invoice work with Bitcoin (BTC)?
+
+No. Smart Invoice is NOT configured to accept BTC payments. If a client sends a BTC payment to the wallet address listed on an invoice, those funds will be lost forever.
+
+
+### Can I sync my invoices with any accounting tools?
+
+No. Smart Invoice is a standalone tool and does not currently integrate with any accounting software.
+
+However, you are able to download PDFs of each invoice.
+
+
+### MetaMask security and best practices
+
+**Password, seed phrases, private keys**
+
+Never, ever, ever, ever reveal your private key or seed phrase to anyone! Do not store it on your computer, device or in an email. Print it out and store it in a secure location. Your private key is functionally your identity to a blockchain. If you lose control of your private key or seed phrase your funds will be irrevocably lost.
+
+No support service will ever ask you for either of these. If they do, it’s a scam.
+
+Do not use a browser extension wallet on a shared computer and use a unique password to access your wallet.
+
+**Hot and Cold Wallets**
+‘Hot’ wallets, such as Metamask, are connected to the internet. While the most convenient they are also the most vulnerable to security breaches.
+
+‘Cold’ wallets, such as Ledger, are not connected to the internet, unless you connect them physically while you are performing a transaction. While much more secure, they are more inconvenient to use.
+
+If you have any significant amount of crypto, consider having at least two wallets. One hot wallet with a small amount of crypto to interact with dApps and the ecosystem, and a second hot or cold (preferably cold if your funds are very significant) wallet that holds the majority of your funds.
+
+**Contract Interaction**
+
+Interacting with smart contracts is an elemental part of the blockchain ecosystem.
+
+However, new, and even veteran users, are not often aware of what they are explicitly allowing the contract to do with their funds and wallets.
+
+The below screenshot is from connecting to a web3 site. Read what permissions you are giving to the site with your connection.
+
+
+
+Likewise when signing a transaction, the wallet will tell you exactly what function you are interacting with on the contract.
+
+
+
+However, even at this level, there are attack vectors for unsuspecting users. Your wallet that interacts the most with the ecosystem should hold only enough crypto for transaction fees.
+
+ Contract interaction: Token Allowances
+
+If you interact with an exchange or bridge, you will often need to sign a token approval/allowance transaction to allow the smart contract access to your funds. While this is a necessary step for the contract to work with your funds, the typical token approval limit is the maximum amount of tokens in your wallet. Which essentially means the contract could spend every token in your wallet if you grant that allowance to a malicious actor.
+
+If you only interact with vetted exchanges and bridges, you eliminate almost all of the risk from this attack vector.
+
+To see all the contract allowances your wallet has granted visit https://revoke.cash/ and connect your wallet. Once connected, you will see all token allowances and can rescind them from the same page.
+
+Revoke.cash is Gitcoin funded, open-source, and professionally audited.
+
+Tip: Rescind all token permissions on your wallet with some regularity i.e. once a month.
+
+
+
+### How to add an ERC-20 token to your wallet
+
+Given that Metamask is by far the most popular wallet in use, we will be using Metamask for all our examples. The concepts below hold true for all wallets, although the UI will change slightly from wallet to wallet.
+
+**Adding Common Tokens on Ethereum Mainnet**
+Metamask makes it very simple to add common ERC-20 tokens on mainnet.
+
+Make sure you are connected to Ethereum Mainnet.
+
+
+
+Click on the assets tab. Scroll down and select ‘Import Tokens’.
+
+
+
+Type in the token symbol for the token you want to add. Click on the desired token, then click Next.
+
+
+
+Click ‘Import Tokens’.
+
+
+
+Your selected token will now appear under the Assets tab.
+
+
+
+Importing tokens on other networks (xDai, Rinkeby, etc…)
+
+For every other network you will need to add new tokens manually.
+
+In this example we will be adding WXDAI to our wallet on the Gnosis chain.
+
+1) Navigate to the block explorer for Gnosis: https://blockscout.com/xdai/mainnet
+
+
+
+2) Type in WXDAI in the search bar. Click on the result below: Wrapped XDAI.
+
+
+
+3) Copy the token contract address: 0xe91d153e0b41518a2ce8dd3d7944fa863463a97d
+
+
+
+5) Open Metamask. Confirm you are on the Gnosis chain.
+
+
+
+6) Click on the Assets tab and scroll down to Import Tokens.
+
+
+
+7) Enter the required information.
+
+Paste the token contract address you copied from the block explorer into ‘Token Contract Address’.
+
+
+The token symbol (WXDAI) should automatically appear. Type it in if it does not.
+
+Enter 18 for ‘Token Decimal’. All tokens added with Smart Invoice will use 18 decimals.
+
+Click ‘Add Custom Token’ after all information is added.
+
+
+
+8) Click ‘Import Tokens’.
+
+
+
+9) You now have access to your WXDAI in Metamask.
+
+
+
+
+### What is the safety valve date?
+
+The Safety Valve is a built-in function that allows the client to withdraw funds from the funded escrow.
+
+In the event the contractor is unresponsive or bails on the project, the Safety Valve prevents the client from losing the funds already deposited into the escrow or relying on an arbitrator to release them.
+
+Once the selected Safety Valve Date is passed, the client can withdraw the funds out of the escrow and back into their own wallet.
+
+
+### What’s the difference between my wallet address and the invoice escrow address?
+
+Your wallet address is the address in which you will transact with Smart Invoice. It’s how invoices are created, escrow is funded, milestones payments are released, and disputes are initiated.
+
+For the client, they use their wallet address to send funds to the invoice escrow address.
+
+For the contractor, milestone payments are released from the invoice escrow address to their wallet address.
+
+
+### How private are my invoice transactions?
+
+Transactions on the blockchain are public for anyone to see.
+
+Your transactions with Smart Invoice are no different. Your wallet address, balance, client’s wallet address, payment history, and payment amount are all visible to anyone that looks.
+
+Additionally, all invoice data is stored publicly on IPFS and can be viewed by anyone. If you have privacy concerns, we recommend encrypting or adding permissions to your project agreement document before linking to it in the invoice.
diff --git a/packages/website/docs-v3/misc/get-support.md b/packages/website/docs-v3/misc/get-support.md
new file mode 100644
index 00000000..b73e07ec
--- /dev/null
+++ b/packages/website/docs-v3/misc/get-support.md
@@ -0,0 +1,9 @@
+---
+title: Get Support
+---
+
+Still can’t figure Smart Invoice out? No worries, our team is happy to help you directly.
+
+We’re available in the Smart Invoice Discord
+
+Once in there, leave a message for us in the “support” channel.
diff --git a/packages/website/docs-v3/misc/troubleshooting.md b/packages/website/docs-v3/misc/troubleshooting.md
new file mode 100644
index 00000000..c1e446cd
--- /dev/null
+++ b/packages/website/docs-v3/misc/troubleshooting.md
@@ -0,0 +1,25 @@
+---
+title: Troubleshooting
+---
+
+### Why are incorrect dates / times showing up on the PDF invoice?
+
+If you see an incorrect date, it’s possible it is in a format you are not used to. Smart Invoice is based in the USA and uses the standard American Month/Day/Year format.
+
+All times use GMT and will not reflect your local timezone.
+
+
+### Why don’t I see the token I need in the invoice creation list?
+
+If you don’t see a supported token listed in the drop down menu, you may be connected to the wrong Network.
+
+Check your wallet to ensure you are connected to the proper network for your preferred token, and then refresh your browser.
+
+This will reset your invoice to the beginning and you will need to start over, but you should see your preferred token in the drop down menu now.
+
+
+### Why don’t I see any of my invoices?
+
+If you don’t see any of your invoices after you’ve connected your correct wallet to Smart Invoice, your invoices may be stored on the legacy version of Smart Invoice.
+
+Smart Invoice was rebooted September 7, 2022 and if you used the tool before this date, you will need to visit legacy.smartinvoice.xyz and reconnect your wallet to your old invoices.
diff --git a/packages/website/docs-v3/tutorials/arbitrator/notify-arbitration-decision.md b/packages/website/docs-v3/tutorials/arbitrator/notify-arbitration-decision.md
new file mode 100644
index 00000000..abde53be
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/arbitrator/notify-arbitration-decision.md
@@ -0,0 +1,15 @@
+---
+title: How to notify the contractor and client of arbitration decision
+---
+
+Both client and provider will see the results of your decision on the invoice page.
+
+After the resolution transaction is confirmed, the invoice page will list the total amount disbursed, your arbitration fee, and the awarded amounts to client and provider.
+
+**View details on IPFS:** Your written decision is stored on IPFS and viewable by all parties from this link.
+
+**View transaction:** From this link, all parties can view the resolution transaction on the network’s block explorer.
+
+
+
+Currently there is no notification of the decision to the client and provider outside of the platform, although this is a projected future feature. You will need to message them directly.
diff --git a/packages/website/docs-v3/tutorials/arbitrator/release-disputed-escrow-funds.md b/packages/website/docs-v3/tutorials/arbitrator/release-disputed-escrow-funds.md
new file mode 100644
index 00000000..84ff04ea
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/arbitrator/release-disputed-escrow-funds.md
@@ -0,0 +1,15 @@
+---
+title: How to release disputed escrow funds to the contractor or client
+---
+
+From the individual invoice page, click ‘Resolve’. The dispute resolution modal will appear.
+
+
+
+From this modal you will detail your arbitration decision and divide the disputed amount according to your decision.
+
+You are paid 5% of the disputed amount for your arbitration services. Therefore the client and provider awards together will add up to 95% of the disputed amount.
+
+Click Resolve when you have completed all fields and sign the prompted transaction from your wallet provider. The funds will be distributed to both parties according to your decision.
+
+Thoroughly double check your decision and award amounts before clicking Resolve. After the transaction is signed there is no way to modify the decision.
diff --git a/packages/website/docs-v3/tutorials/arbitrator/view-invoice-milestones.md b/packages/website/docs-v3/tutorials/arbitrator/view-invoice-milestones.md
new file mode 100644
index 00000000..99c5bbea
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/arbitrator/view-invoice-milestones.md
@@ -0,0 +1,15 @@
+---
+title: How to view invoice milestones in dispute
+---
+
+Navigate to the invoice dashboard. Disputed invoices that require arbitration will have a red ‘In Dispute’ status label.
+
+
+
+Click the ‘In Dispute’ label and you will reach the disputed invoice.
+
+From the invoice page you can view pertinent details about the dispute including the disputed amount, the project agreement (‘View details on IPFS’) and the original invoice transaction.
+
+Click ‘Resolve’ to begin the arbitration process.
+
+
diff --git a/packages/website/docs-v3/tutorials/client/deposit-funds.md b/packages/website/docs-v3/tutorials/client/deposit-funds.md
new file mode 100644
index 00000000..935a5738
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/client/deposit-funds.md
@@ -0,0 +1,31 @@
+---
+title: How to deposit funds into the invoice’s escrow
+---
+
+Once your wallet is connected to Smart Invoice, click the “Dashboard” link at the top of the page.
+
+This will display a list of all of your invoices.
+
+
+
+Click on an invoice in the list to open it.
+
+
+
+Here you can view all the details relevant to your invoice, and the specific actions you can perform.
+
+Click the “Deposit” button.
+
+
+
+A prompt will appear where you can select the payment milestones you want to fund.
+
+Tick the boxes next to the payment milestones you want to deposit funds to.
+
+Then enter the amount you want to fund in the field, and ensure the correct cryptocurrency is selected.
+
+Then click the blue “Deposit” button.
+
+
+
+Your wallet will display a prompt. Review the details and click “Confirm” to complete the transaction and fund the escrow.
diff --git a/packages/website/docs-v3/tutorials/client/download-invoice-as-pdf.md b/packages/website/docs-v3/tutorials/client/download-invoice-as-pdf.md
new file mode 100644
index 00000000..9aaedffb
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/client/download-invoice-as-pdf.md
@@ -0,0 +1,15 @@
+---
+title: How to download a PDF of your invoice as a client
+---
+
+Once your wallet is connected to Smart Invoice, click the “Dashboard” link at the top of the page.
+
+This will display a list of all of your invoices.
+
+
+
+Click on an invoice in the list to open it.
+
+
+
+Click "Preview and download invoice PDF" at the bottom left of your invoice.
diff --git a/packages/website/docs-v3/tutorials/client/lock-milestone-and-request-arbitration.md b/packages/website/docs-v3/tutorials/client/lock-milestone-and-request-arbitration.md
new file mode 100644
index 00000000..49df3b3b
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/client/lock-milestone-and-request-arbitration.md
@@ -0,0 +1,29 @@
+---
+title: How to lock a milestone and request arbitration if there is a dispute
+---
+
+Once your wallet is connected to Smart Invoice, click the “Dashboard” link at the top of the page.
+
+This will display a list of all of your invoices.
+
+
+
+Click on an invoice in the list to open it.
+
+
+
+Here you can view all the details relevant to your invoice, and the specific actions you can perform.
+
+If there are any milestones that you have funded via escrow, but have not yet released to your contractor’s wallet address, you can click the “lock” button.
+
+This will display a prompt where you can enter the details of your dispute. These details will be sent to the arbitrator you selected during the invoice creation process.
+
+
+
+Click the “Lock” button to begin the arbitration process.
+
+Now your arbitrator will see the details of your dispute inside of their Smart Invoice account, and can determine who to release funds to.
+
+It is essential that you contact your chosen arbitrator manually (email, text, DM, etc) to notify them about the dispute. Then they can log into Smart Invoice to manage this dispute.
+
+***Note: Smart Invoice does not notify the arbitrator about the dispute. They will see it in their Smart Invoice account, but you need to notify them to log into their account.***
diff --git a/packages/website/docs-v3/tutorials/client/release-escrow-funds-inside-milestone.md b/packages/website/docs-v3/tutorials/client/release-escrow-funds-inside-milestone.md
new file mode 100644
index 00000000..bc46bfc8
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/client/release-escrow-funds-inside-milestone.md
@@ -0,0 +1,23 @@
+---
+title: How to release escrow funds held inside of a milestone
+---
+
+Once your wallet is connected to Smart Invoice, click the “Dashboard” link at the top of the page.
+
+This will display a list of all of your invoices.
+
+
+
+Click on an invoice in the list to open it.
+
+
+
+Here you can view all the details relevant to your invoice, and the specific actions you can perform.
+
+Click the “Release” button.
+
+
+
+This will trigger a prompt with your wallet.
+
+Review the details and click the “Confirm” button to process this transaction and release the funds in escrow for this milestone to your contractor.
diff --git a/packages/website/docs-v3/tutorials/client/use-a-multisig-wallet-as-client.md b/packages/website/docs-v3/tutorials/client/use-a-multisig-wallet-as-client.md
new file mode 100644
index 00000000..7b23ed8d
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/client/use-a-multisig-wallet-as-client.md
@@ -0,0 +1,170 @@
+---
+title: How to use a multisig wallet as a client
+---
+
+Using a multisig (multi-signature) wallet provides an additional layer of security in blockchain transactions. A multisig requires more than signer to sign a transaction for the transaction to confirm.
+
+This mechanism provides multiple benefits:
+
+1) If one address’s private key is compromised, a multisig ensures a hacker cannot drain the wallet of funds.
+2) If the funds are mutually owned by a larger organization, a multisig ensures that one party cannot unilaterally spendl the funds in the wallet.
+
+Smart Invoice recommends using Gnosis Safe as a time-tested, intuitive, and safe multisig wallet. For larger projects involving significant funds, a multisig adds compelling transparency and security.
+
+Smart Invoice is configured to use Gnosis Safe as an integrated Safe app.
+
+### Creating a multisig with Gnosis Safe:
+
+1. Navigate to gnosis-safe.io and click ‘Open app’.
+
+
+
+2. Assuming you don’t already have a multisig setup, click ‘Create Safe’.
+
+
+
+3. Connect your wallet to Gnosis Safe. Your wallet provider will pop up on clicking ‘Connect’ and ask you to approve the account and connection.
+
+
+
+4. Click here to select the chain for your multisig.
+
+
+
+5. Select your chain.
+
+**PLEASE CONFIRM THIS IS THE CHAIN NETWORK AS YOUR INVOICE.**
+
+
+6. Add all the addresses of the multisig owners. Click ‘Add another owner’ to keep adding additional owners. These are the only addresses that will be able to sign transactions for the multisig.
+
+The first address will always be the wallet that is currently connected to Gnosis Safe.
+
+**PLEASE CHECK AND VERIFY THAT THE OWNERS ADDRESSES ARE ACCURATE.**
+
+
+7. Select how many owners must sign the transaction for that transaction to process.
+
+This is the essential function of the multisig so consider this option carefully.
+
+As in most cases, security and convenience are mutually exclusive tradeoffs in using a multisig. The most common multisig setup has three owners, while requiring two of those owners to sign transactions. The more owners a wallet has, and the more of those owners that are required to sign a transaction for that transaction to process, then the more secure that multisig will be.
+
+However, the more required signers then consequently the potentially slower it will be to process transactions (especially if you are using the Gnosis Apps portal to interact with Smart Invoice, which is covered below).
+
+
+
+8. Confirm the safe name, required number of signers, and owners addresses are correct. Click ‘Create’.
+
+
+
+9. Make sure to fund your multisig. Copy the multisig address here.
+
+Gnosis Safe automatically inserts a helper chain prefix (in this case ‘rin:’ as this safe is on the Rinkeby test network) to the address. Make sure to delete this prefix when you paste the address into your wallet to send funds.
+
+
+
+### Adding Smart Invoice as a Custom App to Gnosis Safe
+
+Gnosis Safe supports an intuitive platform for interacting with apps using your Gnosis Safe multisig. Likewise Smart Invoice is configured to use Gnosis Safe’s Apps platform.
+
+In order to use Smart Invoice using your multisig from within Gnosis Safe follow the below steps:
+
+1. Choose ‘Apps’ from the sidebar of the homescreen.
+
+
+
+2. Click ‘Add custom app’. Smart Invoice is in the process of becoming a trusted Safe app, and will appear in the default list after confirmation.
+
+
+
+3. Paste https://app.smartinvoice.xyz/ in the field for the url. Make sure you do not copy the website address to this field (https://smartinvoice.xyz/), otherwise an error will appear (‘Failed to fetch app manifest’).
+
+
+
+4. After adding the Smart Invoice logo and name should automatically populate. Click the checkbox and ‘Add’.
+
+
+
+5. Several screens will appear asking you to confirm you are interacting with a third party app. Click through and agree. At the end, you will Smart Invoice within a Gnosis Safe app interface. From here you can interact with Smart Invoice from your multisig.
+
+
+
+6. The next time you open Gnosis Safe, Smart Invoice will be saved as a custom app under the Apps header in the sidebar.
+
+
+
+### Interacting with Smart Invoice using a Gnosis Safe multisig as the Client
+
+1. Navigate to the Apps tab in the sidebar on the Gnosis Safe home screen. If you followed the above steps to add Smart Invoice to Gnosis Safe, Smart Invoice will appear as a custom app. Click on it. You will get several pop ups warning you will be interacting with an outside app.
+
+Click through all of the pop ups and you will arrive at Smart Invoice within the Gnosis Safe wrapper.
+
+
+
+2. We will demonstrate making a deposit to an existing invoice using your multisig wallet.
+
+As service providers will almost always be the ones creating the invoice, please ensure you give them your multisig address in order for your organization to pay with your Gnosis Safe Wallet and interact with Smart Invoice as the Client.
+
+**Make sure you are signed into your wallet provider, using an owner address and on the same network as the invoice.**
+
+Navigate to the invoice page and click ‘Deposit’.
+
+
+
+3. Choose the amount you want to deposit. This amount can be a milestone amount, or any arbitrary amount of the chosen token. Click ‘Deposit’ on the pop up.
+
+
+
+4. Another confirmation modal will pop up, this time from Gnosis Safe.
+
+**If you are not signed in, using an owner address or on the same network as the invoice you will get an error.**
+
+Click ‘Submit’.
+
+
+
+5. Sign the transaction in your wallet provider.
+
+
+
+6. **IMPORTANT NOTE: On submission the modal will appear to submit and a spinner will appear. Using a multisig, this spinner will not resolve as the required number of owners have not yet signed for the transaction to complete.**
+
+**Everything is working normally.**
+
+
+
+7. Your transaction has now been placed in the transaction queue in Gnosis Safe.
+
+From the Smart Invoice app page, a transaction queue notification will appear at the bottom of the screen. You can also reach pending transactions from the Transactions tab in the sidebar.
+
+
+
+8. The Transactions page will list all pending transactions. Make sure you process pending transactions in order (the ‘nonce’ is the transaction number). Gnosis Safe will alert you to this fact as well.
+
+
+
+9. One or more multisig owners will then need to navigate to this page and click on the next pending transaction.
+
+‘Confirmations’ will show how many more signers are needed for the transaction to process.
+
+Click ‘Confirm’.
+
+
+
+10. The ‘Approve Transaction’ modal will pop up. Click ‘Submit’.
+
+
+
+11. Sign the transactions from your wallet provider prompt.
+
+12. The transaction will take anywhere from a couple seconds to several minutes to process depending on the network.
+
+13. After the transaction completes, Gnosis Safe will display the successful transaction. This transaction can be viewed at any time in ‘History’ in the Transactions tab in the sidebar.
+
+
+
+14. If you navigate back to the invoice page, you will see that the Smart Invoice interface registers your deposit.
+
+*Note: The invoice displays ‘Partially Deposited’ as we only deposited a very small amount of test eth in this test case. This message has nothing to do with Gnosis Safe or multisig use.*
+
+
\ No newline at end of file
diff --git a/packages/website/docs-v3/tutorials/client/view-invoices.md b/packages/website/docs-v3/tutorials/client/view-invoices.md
new file mode 100644
index 00000000..ec284210
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/client/view-invoices.md
@@ -0,0 +1,21 @@
+---
+title: How to view invoices sent to your wallet
+---
+
+Navigate to app.smartinvoice.xyz.
+
+
+
+To use Smart Invoice, you will need to connect your cryptocurrency wallet to the site. Make sure to use the wallet address you provided to your contractor when they configured the invoice.
+
+If a prompt doesn't automatically appear, click the "View Existing Invoices" button to trigger it.
+
+
+
+Click on the wallet tool you want to use.
+
+Once your wallet is connected to Smart Invoice, click the “Dashboard” link at the top of the page.
+
+This will display a list of all of your invoices.
+
+
\ No newline at end of file
diff --git a/packages/website/docs-v3/tutorials/contractor/accept-payments-to-multisig-wallet.md b/packages/website/docs-v3/tutorials/contractor/accept-payments-to-multisig-wallet.md
new file mode 100644
index 00000000..62848795
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/accept-payments-to-multisig-wallet.md
@@ -0,0 +1,13 @@
+---
+title: How to accept payments to your multisig wallet
+---
+
+We currently recommend using Gnosis Safe if you choose to use a multisig wallet. Gnosis Safe is intuitive to use, serves all the major networks, and has a solid track record as a secure multisig option.
+
+Receiving payments on a multisig is the same receiving funds on any other wallet.
+
+**However!**
+
+It is difficult to get the same multisig wallet address on different chains. Therefore be aware if you set your client address to a multisig that is on a different chain than your invoice. It is not assured you will be able to reproduce that address on the invoice’s chain.
+
+**You must confirm that the your multisig address is on the same chain as the invoice before you create the invoice.**
diff --git a/packages/website/docs-v3/tutorials/contractor/add-more-milestones-to-existing-invoice.md b/packages/website/docs-v3/tutorials/contractor/add-more-milestones-to-existing-invoice.md
new file mode 100644
index 00000000..cc02029f
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/add-more-milestones-to-existing-invoice.md
@@ -0,0 +1,29 @@
+---
+title: How to add more milestones to an existing invoice as a contractor
+---
+
+Once your wallet is connected to Smart Invoice, click the “Dashboard” link at the top of the page.
+
+This will display a list of all of your invoices.
+
+
+
+To open an invoice, you can click on the invoice in the list, or you can click the 3 dots next to your invoice in the “Action” column and click “Manage”.
+
+This will bring up your invoice.
+
+
+
+Click the blue “Add Milestones” button at the top right.
+
+
+
+This will open up a new prompt where you can add in the total payment amount you wish to add to the invoice, along with the additional number of payment milestones you want to add.
+
+Once complete, click the “Add” button.
+
+
+
+This will trigger your wallet to open a prompt you need to sign.
+
+Review the details and then click the “Confirm” button to update your invoice with these new payment milestones.
diff --git a/packages/website/docs-v3/tutorials/contractor/check-invoice-status.md b/packages/website/docs-v3/tutorials/contractor/check-invoice-status.md
new file mode 100644
index 00000000..ef5892d0
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/check-invoice-status.md
@@ -0,0 +1,20 @@
+---
+title: How to check the status of an invoice
+---
+
+Once your wallet is connected to Smart Invoice, click the “Dashboard” link at the top of the page.
+
+This will display a list of all of your invoices.
+
+
+
+Next to each invoice you will see the status of that invoice.
+
+**Possible statuses included:**
+
+- Awaiting Deposit (the client needs to fund the escrow)
+- Funded (escrow has been funded and you can begin work)
+- Completed (all milestone payments have been released from escrow)
+- Expired (the invoice has passed the Safety Valve Date and the client can retrieve funds in escrow)
+- In dispute (escrow has been locked and disputed funds will be released by the arbitrator)
+- Dispute Resolved (disputed funds have been released by the arbitrator)
diff --git a/packages/website/docs-v3/tutorials/contractor/custom-arbitrator.md b/packages/website/docs-v3/tutorials/contractor/custom-arbitrator.md
new file mode 100644
index 00000000..33eb0ccd
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/custom-arbitrator.md
@@ -0,0 +1,15 @@
+---
+title: How to add a custom arbitrator
+---
+
+Currently Smart Invoice uses Kleros as a trusted arbitration provider with a history of fairly resolving disputes.
+
+However you can choose to use your own arbitrator if you wish. You will be prompted to enter an Arbitration Provider Address while creating your invoice on Step 2: Payment Details.
+
+
+
+You must confirm the arbitrator address is correct, and that your chosen arbitrator has access to this address. Otherwise, if the invoice is in dispute and locked, these funds will be unreachable until after the Safety Valve date.
+
+This arbitrator address will be the only who can award the client and/or provider the disputed funds if the invoice is in dispute.
+
+Currently the arbitrator is awarded 5% of the disputed amount for their arbitration services.
diff --git a/packages/website/docs-v3/tutorials/contractor/download-invoice-to-pdf.md b/packages/website/docs-v3/tutorials/contractor/download-invoice-to-pdf.md
new file mode 100644
index 00000000..adc71639
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/download-invoice-to-pdf.md
@@ -0,0 +1,13 @@
+---
+title: How to download a PDF of your invoice as a contractor
+---
+
+Once your wallet is connected to Smart Invoice, click the “Dashboard” link at the top of the page.
+
+This will display a list of all of your invoices.
+
+
+
+Click the 3 dots next to your invoice in the “Action” column.
+
+Then click the “Download” option from the prompt. This will begin the download process of your PDF invoice to your computer.
diff --git a/packages/website/docs-v3/tutorials/contractor/encrypt-project-agreement.md b/packages/website/docs-v3/tutorials/contractor/encrypt-project-agreement.md
new file mode 100644
index 00000000..137d8b4e
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/encrypt-project-agreement.md
@@ -0,0 +1,7 @@
+---
+title: How to encrypt the project agreement
+---
+
+Smart Invoice doesn’t currently offer in-platform encryption of the project agreement (although this is a projected future feature).
+
+If you wish to encrypt your project agreement we recommend using DocuSign as the most secure method to password protect your project agreement PDF.
\ No newline at end of file
diff --git a/packages/website/docs-v3/tutorials/contractor/how-to-create-an-invoice.md b/packages/website/docs-v3/tutorials/contractor/how-to-create-an-invoice.md
new file mode 100644
index 00000000..f7f1a594
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/how-to-create-an-invoice.md
@@ -0,0 +1,84 @@
+---
+title: How to create an invoice
+---
+
+Once your wallet is connected to Smart Invoice, click the “Create Invoice” button.
+
+
+
+This will open the multi-step form to create the invoice.
+
+
+
+In Step 1, you will need to add the project details for this invoice.
+
+**Project Title:**
+Choose something easily identifiable by you & your client. This is how the invoice will appear on your sortable invoices list later.
+
+**Project Description:**
+This brief description will help you and your client remember key project details in the future.
+
+**Link to Project Agreement:**
+This agreement will be referenced if there is a payment dispute that goes to arbitration. Link a file that cannot be modified. This data will be stored publicly on IPFS and can be viewed by anyone. If you have privacy concerns, we recommend adding permissions to this agreement so it’s encrypted and only you and your client can view it.
+
+**Project Start Date:**
+This is the date you expect to begin work on this project.
+
+**Expected End Date:**
+This is the date you expect to complete work on this project.
+
+**Safety Valve Date:**
+If you do not complete this project by this date, your client can withdraw deposited funds in escrow after 00:00:00 GMT on this date. (Add extra time after the expected end date, in case things take longer to complete).
+
+
+
+In Step 2, you will add your payment details for the invoice.
+
+**Client Address:**
+This is the wallet address your client uses to access the invoice, pay with, & release escrow funds with. It’s essential your client has control of this address. (Only use a multisig wallet if the client has followed these instructions). You will need to request this wallet address from your client directly. Then paste it here.
+
+**Service Provider Address:**
+This is your wallet address. It’s how you access this invoice & where you’ll receive funds released from escrow. It’s essential you have control of this address. (Only use a multisig wallet if you understand the process listed here).
+
+**Arbitration Provider:**
+This arbitrator will be used in case of dispute. Kleros is recommended, but you may include the wallet address of your preferred arbitrator.
+
+**Potential Dispute Fee:**
+If a disputed milestone payment goes to arbitration, 5% of that milestone’s escrowed funds are automatically deducted as an arbitration fee to resolve the dispute.
+
+**Tickbox:**
+You will need to tick the box to accept the arbitration provider's terms of service.
+
+
+
+In Step 3, you will list out the payment amount for each milestone.
+
+**Payment Token:**
+This is the cryptocurrency you’ll receive payment in. This number is not based on fiat, but rather the number of tokens you’ll receive in your chosen cryptocurrency. (e.g. 7.25 WETH, 100 USDC, etc). The network your wallet is connected to determines which tokens display here. (If you change your wallet network now, you’ll be forced to start the invoice over).
+
+**Milstones:**
+ Use the drop-down arrows to customize the description and amount of each milestone. You can add as many milestones as you want; it’s a good idea to have smaller milestones to complete so that you can maintain cash flow throughout your project, and avoid scope creep.
+
+
+
+In Step 4, you will create your invoice.
+
+Review the details of the invoice to ensure everything is correct.
+
+If you find any errors, go back to the previous steps and make the necessary modifications.
+
+When you are ready to create the invoice, click the “Create Invoice” button.
+
+
+
+A prompt will appear from your wallet. Review the details and then click the “Confirm” button to finalize creation of your invoice on-chain. There will be a small gas fee to sign this transaction and complete the invoice.
+
+
+
+Within a few minutes the invoice will be created and registered by the system.
+
+You can view the on-chain transaction by clicking the provided link.
+
+Smart Invoice will display Invoice ID and a link to view it.
+
+Copy this link and give it to your client. That is where they will be able to deposit funds.
diff --git a/packages/website/docs-v3/tutorials/contractor/lock-milestone-and-request-arbitration.md b/packages/website/docs-v3/tutorials/contractor/lock-milestone-and-request-arbitration.md
new file mode 100644
index 00000000..b0e9147a
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/lock-milestone-and-request-arbitration.md
@@ -0,0 +1,21 @@
+---
+title: How to lock a milestone and request arbitration if there is a dispute
+---
+
+Navigate to the invoice you want to lock.
+
+
+
+If there are any milestones that have been funded via escrow, but payments have not yet been released to your wallet address, you can click the “lock” button.
+
+This will display a prompt where you can enter the details of your dispute. These details will be sent to the arbitrator you selected during the invoice creation process.
+
+
+
+Click the “Lock” button to begin the arbitration process.
+
+Now your arbitrator will see the details of your dispute inside of their Smart Invoice account, and can determine who to release funds to.
+
+It is essential that you contact your chosen arbitrator manually (email, text, DM, etc) to notify them about the dispute. Then they can log into Smart Invoice to manage this dispute.
+
+Note: Smart Invoice does not notify the arbitrator about the dispute. They will see it in their Smart Invoice account, but you need to notify them to log into their account.
diff --git a/packages/website/docs-v3/tutorials/contractor/manage-invoices.md b/packages/website/docs-v3/tutorials/contractor/manage-invoices.md
new file mode 100644
index 00000000..938e3a51
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/manage-invoices.md
@@ -0,0 +1,17 @@
+---
+title: How to manage invoices as a contractor
+---
+
+Once your wallet is connected to Smart Invoice, click the “Dashboard” link at the top of the page.
+
+This will display a list of all of your invoices.
+
+
+
+Click on an invoice in the list to open it.
+
+
+
+Here you can view all the details relevant to your invoice, and the specific actions you can perform.
+
+As a contractor you can add milestones, download a PDF of the invoice, and lock the invoice.
diff --git a/packages/website/docs-v3/tutorials/contractor/request-deposit.md b/packages/website/docs-v3/tutorials/contractor/request-deposit.md
new file mode 100644
index 00000000..a55a7729
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/request-deposit.md
@@ -0,0 +1,9 @@
+---
+title: How to request a deposit to escrow from your client
+---
+
+Once you have configured your invoice and are ready for the client to fund the initial milestone payment through escrow, you will need to manually notify your client.
+
+The client can log into smartinvoice.xyz with the wallet address you linked to the invoice during the invoice creation process. From there, they will be able to see the invoice you created and they can follow the instructions here in the documentation to fund the first milestone.
+
+The other option is to navigate to the invoice details page inside of Smart Invoice (by following the instructions here), and then copying the url to this page from your browser and sending it to your client. Then your client will be able to log into Smart Invoice and click the “Deposit” button inside of your invoice.
\ No newline at end of file
diff --git a/packages/website/docs-v3/tutorials/contractor/request-milestone-payments-released-from-escrow.md b/packages/website/docs-v3/tutorials/contractor/request-milestone-payments-released-from-escrow.md
new file mode 100644
index 00000000..7bfa82c8
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/request-milestone-payments-released-from-escrow.md
@@ -0,0 +1,9 @@
+---
+title: How to request milestone payments be released from escrow
+---
+
+After you’ve completed the work associated with a milestone, you can request funds be released from escrow.
+
+This is a manual process, and you will need to notify your client.
+
+Your client will log into their Smart Invoice account with the wallet linked to the invoice, and navigate to the invoice. They will click a blue button labeled “Release” and create the transaction to deliver the milestone payment from the escrow to your wallet address.
diff --git a/packages/website/docs-v3/tutorials/contractor/verify-client-wallet-address.md b/packages/website/docs-v3/tutorials/contractor/verify-client-wallet-address.md
new file mode 100644
index 00000000..cabcfac1
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/contractor/verify-client-wallet-address.md
@@ -0,0 +1,31 @@
+---
+title: How to verify client's wallet address
+---
+
+Please take all precautions before creating an invoice to double check that all information (**especially** client, provider and arbitrator addresses) is accurate. After the invoice is created this information cannot be changed. The only addresses able to interact with the invoice once it is on-chain will be the client, provider and, to a more limited extent, the arbitrator.
+
+Client address verification is a safety feature to ensure extraneous funds are not lost to the contract.
+
+Before any deposits are allowed from any address except the client address, the client address must verify that they have access to that address by sending an extremely small on-chain transaction.
+
+Before the client has verified their address, all other addresses will be unable to deposit on the invoice page:
+
+
+
+If you are the client, you must follow these steps to enable non-client deposits:
+
+1) Make sure you are using your client address and navigate to the invoice page.
+
+2) Click on ‘Enable Non-Client Account Deposits’.
+
+
+
+3) You will be prompted to sign a transaction from your wallet provider. The verify transaction uses the smallest possible amount of gas, so the transaction cost will be extremely small.
+
+If you have successfully signed the transaction you will see the enable button change to a spinner:
+
+
+
+4) Once the transaction is confirmed on-chain, ‘Not Enabled’ will update to ‘Enabled!’. Non-client accounts can now deposit to the invoice contract.
+
+
diff --git a/packages/website/docs-v3/tutorials/sidebars.js b/packages/website/docs-v3/tutorials/sidebars.js
new file mode 100644
index 00000000..cbf8bcb9
--- /dev/null
+++ b/packages/website/docs-v3/tutorials/sidebars.js
@@ -0,0 +1,130 @@
+export const docV3Menu = [
+ {
+ category: 'Getting Started',
+ path: 'getting-started',
+ topics: [
+ {
+ title: 'What is Smart Invoice?',
+ slug: 'what-is-smart-invoice'
+ },
+ {
+ title: 'Who should use Smart Invoice?',
+ slug: 'who-should-use-smart-invoice'
+ },
+ {
+ title: 'How do I log in?',
+ slug: 'how-do-i-log-in'
+ },
+ {
+ title: 'What is escrow?',
+ slug: 'what-is-escrow'
+ },
+ {
+ title: 'What is arbitration and “locking”?',
+ slug: 'what-is-locking-and-arbitration'
+ },
+ ],
+ },
+ {
+ category: 'Contractor Tutorials',
+ path: 'tutorials/contractor',
+ topics: [
+ {
+ title: "How to create an invoice",
+ slug: 'how-to-create-an-invoice'
+ },
+ {
+ title: "How to encrypt the project agreement",
+ slug: 'encrypt-project-agreement'
+ },
+ {
+ title: "How to accept payments to your multisig wallet",
+ slug: 'accept-payments-to-multisig-wallet'
+ },
+ {
+ title: "How to verify your client’s wallet address",
+ slug: 'verify-client-wallet-address'
+ },
+ {
+ title: "How to add a custom arbitrator",
+ slug: 'custom-arbitrator'
+ },
+ {
+ title: "How to request a deposit to escrow from your client",
+ slug: 'request-deposit'
+ },
+ {
+ title: "How to manage your invoices",
+ slug: 'manage-invoices'
+ },
+ {
+ title: "How to request milestone payments be released from escrow",
+ slug: 'request-milestone-payments-released-from-escrow'
+ },
+ {
+ title: "How to add more milestones to an existing invoice",
+ slug: 'add-more-milestones-to-existing-invoice'
+ },
+ {
+ title: "How to download a PDF of your invoice",
+ slug: 'download-invoice-to-pdf'
+ },
+ {
+ title: "How to check the status of an invoice",
+ slug: 'check-invoice-status'
+ },
+ {
+ title: "How to lock a milestone and request arbitration if there is a dispute",
+ slug: 'lock-milestone-and-request-arbitration'
+ },
+ ],
+ },
+ {
+ category: 'Client Tutorials',
+ path: 'tutorials/client',
+ topics: [
+ {
+ title: "How to view invoices sent to your wallet",
+ slug: 'view-invoices'
+ },
+ {
+ title: "How to deposit funds into the invoice’s escrow",
+ slug: 'deposit-funds'
+ },
+ {
+ title: "How to release escrow funds held inside of a milestone",
+ slug: 'release-escrow-funds-inside-milestone'
+ },
+ {
+ title: "How to pay invoices with a multisig wallet",
+ slug: 'use-a-multisig-wallet-as-client'
+ },
+ {
+ title: "How to lock a milestone and request arbitration if there is a dispute",
+ slug: 'lock-milestone-and-request-arbitration'
+ },
+ {
+ title: "How to download a PDF of your invoice",
+ slug: 'download-invoice-as-pdf'
+ },
+ ]
+ },
+ {
+ category: 'Miscellaneous',
+ path: 'misc',
+ topics: [
+ {
+ title: 'Get Support',
+ slug: 'get-support'
+ },
+ {
+ title: 'Troubleshooting',
+ slug: 'troubleshooting'
+ },
+ {
+ title: 'FAQ',
+ slug: 'FAQ'
+ }
+ ]
+ },
+]
\ No newline at end of file
diff --git a/packages/website/next.config.js b/packages/website/next.config.js
new file mode 100644
index 00000000..ce404e70
--- /dev/null
+++ b/packages/website/next.config.js
@@ -0,0 +1,10 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {
+ reactStrictMode: true,
+ swcMinify: true,
+ env: {
+ GETFORM_URL: process.env.GETFORM_URL
+ }
+};
+
+module.exports = nextConfig;
diff --git a/packages/website/package.json b/packages/website/package.json
new file mode 100644
index 00000000..d923c65a
--- /dev/null
+++ b/packages/website/package.json
@@ -0,0 +1,30 @@
+{
+ "name": "@smartinvoicexyz/website",
+ "version": "0.1.0",
+ "dependencies": {
+ "@chakra-ui/react": "^2.8.2",
+ "@emotion/react": "^11.13.3",
+ "@emotion/styled": "^11.13.0",
+ "framer-motion": "^11.5.6",
+ "gray-matter": "^4.0.3",
+ "marked": "^4.1.1",
+ "next": "^14.2.13",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "remark": "^14.0.2",
+ "remark-html": "^15.0.1"
+ },
+ "devDependencies": {
+ "@next/eslint-plugin-next": "^14.2.7",
+ "eslint": "8.56.0",
+ "eslint-config-next": "^14.2.7"
+ },
+ "private": true,
+ "scripts": {
+ "build": "next build",
+ "dev": "next dev",
+ "lint": "next lint",
+ "start": "next start",
+ "typecheck": "tsc --noEmit"
+ }
+}
diff --git a/packages/website/pages/_app.jsx b/packages/website/pages/_app.jsx
new file mode 100644
index 00000000..67de1430
--- /dev/null
+++ b/packages/website/pages/_app.jsx
@@ -0,0 +1,16 @@
+import '../styles/globals.css';
+
+import { ChakraProvider } from '@chakra-ui/react';
+import React from 'react';
+
+import { theme } from '../theme';
+
+function MyApp({ Component, pageProps }) {
+ return (
+
+
+
+ );
+}
+
+export default MyApp;
diff --git a/packages/website/pages/about.jsx b/packages/website/pages/about.jsx
new file mode 100644
index 00000000..195480e8
--- /dev/null
+++ b/packages/website/pages/about.jsx
@@ -0,0 +1,19 @@
+import { HeroSection } from '../components/about/Hero';
+import { Story } from '../components/about/Story';
+import { Supporters } from '../components/about/Supporters';
+import { TeamSection } from '../components/about/Team';
+import { CallToAction } from '../components/layout/CallToAction';
+import { AboutMeta } from '../components/layout/Head';
+import { Layout } from '../components/layout/Layout';
+
+export default function About() {
+ return (
+ }>
+
+
+
+
+
+
+ );
+}
diff --git a/packages/website/pages/arbitration/[slug].jsx b/packages/website/pages/arbitration/[slug].jsx
new file mode 100644
index 00000000..200fcbc7
--- /dev/null
+++ b/packages/website/pages/arbitration/[slug].jsx
@@ -0,0 +1,51 @@
+import { Box, Heading } from '@chakra-ui/react';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { marked } from 'marked';
+import path from 'path';
+
+import { DocLayout } from '../../components/doc-layout/DocLayout';
+
+export async function getStaticPaths() {
+ const files = fs.readdirSync(path.join('docs-v3', 'arbitration'));
+ const paths = files.map(filename => ({
+ params: {
+ slug: filename.replace('.md', ''),
+ },
+ }));
+
+ return {
+ paths,
+ fallback: false,
+ };
+}
+
+export async function getStaticProps({ params }) {
+ const markdown = fs.readFileSync(
+ path.join('docs-v3', 'arbitration', `${params.slug}.md`),
+ 'utf-8',
+ );
+ const { data: frontmatter, content } = matter(markdown);
+
+ return {
+ props: {
+ frontmatter,
+ slug: params.slug,
+ content,
+ },
+ };
+}
+
+export default function DocPage({ frontmatter, slug, content, docs }) {
+ return (
+
+
+ {frontmatter.title}
+
+
+
+ );
+}
diff --git a/packages/website/pages/getting-started/[slug].jsx b/packages/website/pages/getting-started/[slug].jsx
new file mode 100644
index 00000000..19a5a2f1
--- /dev/null
+++ b/packages/website/pages/getting-started/[slug].jsx
@@ -0,0 +1,51 @@
+import { Box, Heading } from '@chakra-ui/react';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { marked } from 'marked';
+import path from 'path';
+
+import { DocLayout } from '../../components/doc-layout/DocLayout';
+
+export async function getStaticPaths() {
+ const files = fs.readdirSync(path.join('docs-v3', 'getting-started'));
+ const paths = files.map(filename => ({
+ params: {
+ slug: filename.replace('.md', ''),
+ },
+ }));
+
+ return {
+ paths,
+ fallback: false,
+ };
+}
+
+export async function getStaticProps({ params }) {
+ const markdown = fs.readFileSync(
+ path.join('docs-v3', 'getting-started', `${params.slug}.md`),
+ 'utf-8',
+ );
+ const { data: frontmatter, content } = matter(markdown);
+
+ return {
+ props: {
+ frontmatter,
+ slug: params.slug,
+ content,
+ },
+ };
+}
+
+export default function DocPage({ frontmatter, slug, content, docs }) {
+ return (
+
+
+ {frontmatter.title}
+
+
+
+ );
+}
diff --git a/packages/website/pages/index.jsx b/packages/website/pages/index.jsx
new file mode 100644
index 00000000..8c5e9234
--- /dev/null
+++ b/packages/website/pages/index.jsx
@@ -0,0 +1,34 @@
+import React from 'react';
+
+import { DemoSection } from '../components/home/Demo';
+import { FAQSection } from '../components/home/FAQ';
+import { FeatureArbitration } from '../components/home/FeatureArbitration';
+import { FeatureCrypto } from '../components/home/FeatureCrypto';
+import { FeatureEscrow } from '../components/home/FeatureEscrow';
+import { FeatureInvoice } from '../components/home/FeatureInvoice';
+import { HeroSection } from '../components/home/Hero';
+import { StoryOverviewSection } from '../components/home/StoryOverview';
+import { Testimonials } from '../components/home/Testimonials';
+import { CallToAction } from '../components/layout/CallToAction';
+import { HomeMeta } from '../components/layout/Head';
+import { Layout } from '../components/layout/Layout';
+
+export default function Home() {
+ return (
+ }
+ >
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/packages/website/pages/misc/[slug].jsx b/packages/website/pages/misc/[slug].jsx
new file mode 100644
index 00000000..281da041
--- /dev/null
+++ b/packages/website/pages/misc/[slug].jsx
@@ -0,0 +1,51 @@
+import { Box, Heading } from '@chakra-ui/react';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { marked } from 'marked';
+import path from 'path';
+
+import { DocLayout } from '../../components/doc-layout/DocLayout';
+
+export async function getStaticPaths() {
+ const files = fs.readdirSync(path.join('docs-v3', 'misc'));
+ const paths = files.map(filename => ({
+ params: {
+ slug: filename.replace('.md', ''),
+ },
+ }));
+
+ return {
+ paths,
+ fallback: false,
+ };
+}
+
+export async function getStaticProps({ params }) {
+ const markdown = fs.readFileSync(
+ path.join('docs-v3', 'misc', `${params.slug}.md`),
+ 'utf-8',
+ );
+ const { data: frontmatter, content } = matter(markdown);
+
+ return {
+ props: {
+ frontmatter,
+ slug: params.slug,
+ content,
+ },
+ };
+}
+
+export default function DocPage({ frontmatter, slug, content, docs }) {
+ return (
+
+
+ {frontmatter.title}
+
+
+
+ );
+}
diff --git a/packages/website/pages/tutorials/arbitrator/[slug].jsx b/packages/website/pages/tutorials/arbitrator/[slug].jsx
new file mode 100644
index 00000000..aed4850c
--- /dev/null
+++ b/packages/website/pages/tutorials/arbitrator/[slug].jsx
@@ -0,0 +1,51 @@
+import { Box, Heading } from '@chakra-ui/react';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { marked } from 'marked';
+import path from 'path';
+
+import { DocLayout } from '../../../components/doc-layout/DocLayout';
+
+export async function getStaticPaths() {
+ const files = fs.readdirSync(path.join('docs-v3', 'tutorials', 'arbitrator'));
+ const paths = files.map(filename => ({
+ params: {
+ slug: filename.replace('.md', ''),
+ },
+ }));
+
+ return {
+ paths,
+ fallback: false,
+ };
+}
+
+export async function getStaticProps({ params }) {
+ const markdown = fs.readFileSync(
+ path.join('docs-v3', 'tutorials', 'arbitrator', `${params.slug}.md`),
+ 'utf-8',
+ );
+ const { data: frontmatter, content } = matter(markdown);
+
+ return {
+ props: {
+ frontmatter,
+ slug: params.slug,
+ content,
+ },
+ };
+}
+
+export default function DocPage({ frontmatter, slug, content, docs }) {
+ return (
+
+
+ {frontmatter.title}
+
+
+
+ );
+}
diff --git a/packages/website/pages/tutorials/client/[slug].jsx b/packages/website/pages/tutorials/client/[slug].jsx
new file mode 100644
index 00000000..6a2730fc
--- /dev/null
+++ b/packages/website/pages/tutorials/client/[slug].jsx
@@ -0,0 +1,51 @@
+import { Box, Heading } from '@chakra-ui/react';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { marked } from 'marked';
+import path from 'path';
+
+import { DocLayout } from '../../../components/doc-layout/DocLayout';
+
+export async function getStaticPaths() {
+ const files = fs.readdirSync(path.join('docs-v3', 'tutorials', 'client'));
+ const paths = files.map(filename => ({
+ params: {
+ slug: filename.replace('.md', ''),
+ },
+ }));
+
+ return {
+ paths,
+ fallback: false,
+ };
+}
+
+export async function getStaticProps({ params }) {
+ const markdown = fs.readFileSync(
+ path.join('docs-v3', 'tutorials', 'client', `${params.slug}.md`),
+ 'utf-8',
+ );
+ const { data: frontmatter, content } = matter(markdown);
+
+ return {
+ props: {
+ frontmatter,
+ slug: params.slug,
+ content,
+ },
+ };
+}
+
+export default function DocPage({ frontmatter, slug, content, docs }) {
+ return (
+
+
+ {frontmatter.title}
+
+
+
+ );
+}
diff --git a/packages/website/pages/tutorials/contractor/[slug].jsx b/packages/website/pages/tutorials/contractor/[slug].jsx
new file mode 100644
index 00000000..def9b2da
--- /dev/null
+++ b/packages/website/pages/tutorials/contractor/[slug].jsx
@@ -0,0 +1,51 @@
+import { Box, Heading } from '@chakra-ui/react';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { marked } from 'marked';
+import path from 'path';
+
+import { DocLayout } from '../../../components/doc-layout/DocLayout';
+
+export async function getStaticPaths() {
+ const files = fs.readdirSync(path.join('docs-v3', 'tutorials', 'contractor'));
+ const paths = files.map(filename => ({
+ params: {
+ slug: filename.replace('.md', ''),
+ },
+ }));
+
+ return {
+ paths,
+ fallback: false,
+ };
+}
+
+export async function getStaticProps({ params }) {
+ const markdown = fs.readFileSync(
+ path.join('docs-v3', 'tutorials', 'contractor', `${params.slug}.md`),
+ 'utf-8',
+ );
+ const { data: frontmatter, content } = matter(markdown);
+
+ return {
+ props: {
+ frontmatter,
+ slug: params.slug,
+ content,
+ },
+ };
+}
+
+export default function DocPage({ frontmatter, slug, content, docs }) {
+ return (
+
+
+ {frontmatter.title}
+
+
+
+ );
+}
diff --git a/packages/website/public/arbitration/custom_arb_provider.png b/packages/website/public/arbitration/custom_arb_provider.png
new file mode 100644
index 00000000..4b4ba3c8
Binary files /dev/null and b/packages/website/public/arbitration/custom_arb_provider.png differ
diff --git a/packages/website/public/assets/about/escrow-invoice-original-2.svg b/packages/website/public/assets/about/escrow-invoice-original-2.svg
new file mode 100644
index 00000000..09155fb4
--- /dev/null
+++ b/packages/website/public/assets/about/escrow-invoice-original-2.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/assets/about/rg-laptop-1.svg b/packages/website/public/assets/about/rg-laptop-1.svg
new file mode 100644
index 00000000..bd3c7f92
--- /dev/null
+++ b/packages/website/public/assets/about/rg-laptop-1.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/assets/home/escrow-release-screenshot.svg b/packages/website/public/assets/home/escrow-release-screenshot.svg
new file mode 100644
index 00000000..6ca85abe
--- /dev/null
+++ b/packages/website/public/assets/home/escrow-release-screenshot.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/assets/home/hero-image.svg b/packages/website/public/assets/home/hero-image.svg
new file mode 100644
index 00000000..d518abb0
--- /dev/null
+++ b/packages/website/public/assets/home/hero-image.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/assets/home/invoices-list-screenshot.svg b/packages/website/public/assets/home/invoices-list-screenshot.svg
new file mode 100644
index 00000000..f84c0181
--- /dev/null
+++ b/packages/website/public/assets/home/invoices-list-screenshot.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/assets/home/lock-funds-screenshot.png b/packages/website/public/assets/home/lock-funds-screenshot.png
new file mode 100644
index 00000000..1b0306e9
Binary files /dev/null and b/packages/website/public/assets/home/lock-funds-screenshot.png differ
diff --git a/packages/website/public/assets/product-about-3.svg b/packages/website/public/assets/product-about-3.svg
new file mode 100644
index 00000000..d89ccfef
--- /dev/null
+++ b/packages/website/public/assets/product-about-3.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/check-icon.svg b/packages/website/public/check-icon.svg
new file mode 100644
index 00000000..a6cadd32
--- /dev/null
+++ b/packages/website/public/check-icon.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/packages/website/public/favicon.ico b/packages/website/public/favicon.ico
new file mode 100644
index 00000000..718d6fea
Binary files /dev/null and b/packages/website/public/favicon.ico differ
diff --git a/packages/website/public/flexible-icon.svg b/packages/website/public/flexible-icon.svg
new file mode 100644
index 00000000..f142b172
--- /dev/null
+++ b/packages/website/public/flexible-icon.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/packages/website/public/icons/boxed/avoid.svg b/packages/website/public/icons/boxed/avoid.svg
new file mode 100644
index 00000000..add7ffb0
--- /dev/null
+++ b/packages/website/public/icons/boxed/avoid.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/client.svg b/packages/website/public/icons/boxed/client.svg
new file mode 100644
index 00000000..b94eab1d
--- /dev/null
+++ b/packages/website/public/icons/boxed/client.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/list.svg b/packages/website/public/icons/boxed/list.svg
new file mode 100644
index 00000000..5a9a1aa7
--- /dev/null
+++ b/packages/website/public/icons/boxed/list.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/pdf.svg b/packages/website/public/icons/boxed/pdf.svg
new file mode 100644
index 00000000..b4ced9c4
--- /dev/null
+++ b/packages/website/public/icons/boxed/pdf.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/piechart.svg b/packages/website/public/icons/boxed/piechart.svg
new file mode 100644
index 00000000..38af9910
--- /dev/null
+++ b/packages/website/public/icons/boxed/piechart.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/progress.svg b/packages/website/public/icons/boxed/progress.svg
new file mode 100644
index 00000000..36e9746f
--- /dev/null
+++ b/packages/website/public/icons/boxed/progress.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/scale.svg b/packages/website/public/icons/boxed/scale.svg
new file mode 100644
index 00000000..166064df
--- /dev/null
+++ b/packages/website/public/icons/boxed/scale.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/search.svg b/packages/website/public/icons/boxed/search.svg
new file mode 100644
index 00000000..5f4b227e
--- /dev/null
+++ b/packages/website/public/icons/boxed/search.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/status.svg b/packages/website/public/icons/boxed/status.svg
new file mode 100644
index 00000000..51eadddb
--- /dev/null
+++ b/packages/website/public/icons/boxed/status.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/trust.svg b/packages/website/public/icons/boxed/trust.svg
new file mode 100644
index 00000000..9d89373d
--- /dev/null
+++ b/packages/website/public/icons/boxed/trust.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/boxed/warning.svg b/packages/website/public/icons/boxed/warning.svg
new file mode 100644
index 00000000..0c269e98
--- /dev/null
+++ b/packages/website/public/icons/boxed/warning.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/features/flexible.svg b/packages/website/public/icons/features/flexible.svg
new file mode 100644
index 00000000..0e819c48
--- /dev/null
+++ b/packages/website/public/icons/features/flexible.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/features/impartial.svg b/packages/website/public/icons/features/impartial.svg
new file mode 100644
index 00000000..cb22dc76
--- /dev/null
+++ b/packages/website/public/icons/features/impartial.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/features/secure.svg b/packages/website/public/icons/features/secure.svg
new file mode 100644
index 00000000..041e38aa
--- /dev/null
+++ b/packages/website/public/icons/features/secure.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/socials/facebook.svg b/packages/website/public/icons/socials/facebook.svg
new file mode 100644
index 00000000..6f377cd9
--- /dev/null
+++ b/packages/website/public/icons/socials/facebook.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/packages/website/public/icons/socials/github.svg b/packages/website/public/icons/socials/github.svg
new file mode 100644
index 00000000..6cd93a79
--- /dev/null
+++ b/packages/website/public/icons/socials/github.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/icons/socials/linkedin.svg b/packages/website/public/icons/socials/linkedin.svg
new file mode 100644
index 00000000..5dc7caf7
--- /dev/null
+++ b/packages/website/public/icons/socials/linkedin.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/packages/website/public/icons/socials/twitter.svg b/packages/website/public/icons/socials/twitter.svg
new file mode 100644
index 00000000..e91670f1
--- /dev/null
+++ b/packages/website/public/icons/socials/twitter.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/packages/website/public/icons/socials/website.svg b/packages/website/public/icons/socials/website.svg
new file mode 100644
index 00000000..22056b94
--- /dev/null
+++ b/packages/website/public/icons/socials/website.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/impartial-icon.svg b/packages/website/public/impartial-icon.svg
new file mode 100644
index 00000000..78a4a242
--- /dev/null
+++ b/packages/website/public/impartial-icon.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/packages/website/public/logos/lexdao.svg b/packages/website/public/logos/lexdao.svg
new file mode 100644
index 00000000..2cae9214
--- /dev/null
+++ b/packages/website/public/logos/lexdao.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/logos/molochdao.svg b/packages/website/public/logos/molochdao.svg
new file mode 100644
index 00000000..7a447a2f
--- /dev/null
+++ b/packages/website/public/logos/molochdao.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/logos/raidguild.svg b/packages/website/public/logos/raidguild.svg
new file mode 100644
index 00000000..3a22b0f1
--- /dev/null
+++ b/packages/website/public/logos/raidguild.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/logos/smart-invoice/icon-blue.svg b/packages/website/public/logos/smart-invoice/icon-blue.svg
new file mode 100644
index 00000000..d6f15c9e
--- /dev/null
+++ b/packages/website/public/logos/smart-invoice/icon-blue.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/packages/website/public/logos/smart-invoice/normal.svg b/packages/website/public/logos/smart-invoice/normal.svg
new file mode 100644
index 00000000..1f6d7c51
--- /dev/null
+++ b/packages/website/public/logos/smart-invoice/normal.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/logos/smart-invoice/white.svg b/packages/website/public/logos/smart-invoice/white.svg
new file mode 100644
index 00000000..0573fc96
--- /dev/null
+++ b/packages/website/public/logos/smart-invoice/white.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/meta/about-graphic.png b/packages/website/public/meta/about-graphic.png
new file mode 100644
index 00000000..15f002e7
Binary files /dev/null and b/packages/website/public/meta/about-graphic.png differ
diff --git a/packages/website/public/meta/home-graphic.png b/packages/website/public/meta/home-graphic.png
new file mode 100644
index 00000000..8f3ab0cc
Binary files /dev/null and b/packages/website/public/meta/home-graphic.png differ
diff --git a/packages/website/public/pfp/bingo.svg b/packages/website/public/pfp/bingo.svg
new file mode 100644
index 00000000..bde10595
--- /dev/null
+++ b/packages/website/public/pfp/bingo.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/pfp/dan13ram.svg b/packages/website/public/pfp/dan13ram.svg
new file mode 100644
index 00000000..a59d8f34
--- /dev/null
+++ b/packages/website/public/pfp/dan13ram.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/pfp/georgeh.svg b/packages/website/public/pfp/georgeh.svg
new file mode 100644
index 00000000..05fee3d4
--- /dev/null
+++ b/packages/website/public/pfp/georgeh.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/pfp/jaqi.svg b/packages/website/public/pfp/jaqi.svg
new file mode 100644
index 00000000..7fb433c8
--- /dev/null
+++ b/packages/website/public/pfp/jaqi.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/pfp/launchninja.svg b/packages/website/public/pfp/launchninja.svg
new file mode 100644
index 00000000..dd55ca73
--- /dev/null
+++ b/packages/website/public/pfp/launchninja.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/pfp/manolingam.svg b/packages/website/public/pfp/manolingam.svg
new file mode 100644
index 00000000..9ac2a5a1
--- /dev/null
+++ b/packages/website/public/pfp/manolingam.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/pfp/plor.svg b/packages/website/public/pfp/plor.svg
new file mode 100644
index 00000000..f0944409
--- /dev/null
+++ b/packages/website/public/pfp/plor.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/pfp/spengrah.svg b/packages/website/public/pfp/spengrah.svg
new file mode 100644
index 00000000..5dad3966
--- /dev/null
+++ b/packages/website/public/pfp/spengrah.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/pfp/tufnel.svg b/packages/website/public/pfp/tufnel.svg
new file mode 100644
index 00000000..a7f15b5d
--- /dev/null
+++ b/packages/website/public/pfp/tufnel.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/website/public/product/si-connect-wallet-mockup.png b/packages/website/public/product/si-connect-wallet-mockup.png
new file mode 100644
index 00000000..e73b38a8
Binary files /dev/null and b/packages/website/public/product/si-connect-wallet-mockup.png differ
diff --git a/packages/website/public/product/si-create-invoice-mockup.png b/packages/website/public/product/si-create-invoice-mockup.png
new file mode 100644
index 00000000..22efbc31
Binary files /dev/null and b/packages/website/public/product/si-create-invoice-mockup.png differ
diff --git a/packages/website/public/product/si-deposit-funds-mockup.png b/packages/website/public/product/si-deposit-funds-mockup.png
new file mode 100644
index 00000000..f5b74165
Binary files /dev/null and b/packages/website/public/product/si-deposit-funds-mockup.png differ
diff --git a/packages/website/public/product/si-funds-smart-contract-mockup.png b/packages/website/public/product/si-funds-smart-contract-mockup.png
new file mode 100644
index 00000000..717436bb
Binary files /dev/null and b/packages/website/public/product/si-funds-smart-contract-mockup.png differ
diff --git a/packages/website/public/product/si-receive-funds-mockup.png b/packages/website/public/product/si-receive-funds-mockup.png
new file mode 100644
index 00000000..6c46a66d
Binary files /dev/null and b/packages/website/public/product/si-receive-funds-mockup.png differ
diff --git a/packages/website/public/product/si-release-funds-mockup.png b/packages/website/public/product/si-release-funds-mockup.png
new file mode 100644
index 00000000..3995795a
Binary files /dev/null and b/packages/website/public/product/si-release-funds-mockup.png differ
diff --git a/packages/website/public/product/si-request-arbitration-mockup.png b/packages/website/public/product/si-request-arbitration-mockup.png
new file mode 100644
index 00000000..254561b3
Binary files /dev/null and b/packages/website/public/product/si-request-arbitration-mockup.png differ
diff --git a/packages/website/public/quote-icon.svg b/packages/website/public/quote-icon.svg
new file mode 100644
index 00000000..e4e45f3e
--- /dev/null
+++ b/packages/website/public/quote-icon.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/packages/website/public/screenshots/app-header-client.png b/packages/website/public/screenshots/app-header-client.png
new file mode 100644
index 00000000..ea27afe1
Binary files /dev/null and b/packages/website/public/screenshots/app-header-client.png differ
diff --git a/packages/website/public/screenshots/app-header-contractor.png b/packages/website/public/screenshots/app-header-contractor.png
new file mode 100644
index 00000000..7536f199
Binary files /dev/null and b/packages/website/public/screenshots/app-header-contractor.png differ
diff --git a/packages/website/public/screenshots/client-deposits-funds-1.png b/packages/website/public/screenshots/client-deposits-funds-1.png
new file mode 100644
index 00000000..464426e0
Binary files /dev/null and b/packages/website/public/screenshots/client-deposits-funds-1.png differ
diff --git a/packages/website/public/screenshots/client-invoice-view.png b/packages/website/public/screenshots/client-invoice-view.png
new file mode 100644
index 00000000..c219dc95
Binary files /dev/null and b/packages/website/public/screenshots/client-invoice-view.png differ
diff --git a/packages/website/public/screenshots/client-lock-funds.png b/packages/website/public/screenshots/client-lock-funds.png
new file mode 100644
index 00000000..71aa6157
Binary files /dev/null and b/packages/website/public/screenshots/client-lock-funds.png differ
diff --git a/packages/website/public/screenshots/client-releases-funds-1.png b/packages/website/public/screenshots/client-releases-funds-1.png
new file mode 100644
index 00000000..f6a91681
Binary files /dev/null and b/packages/website/public/screenshots/client-releases-funds-1.png differ
diff --git a/packages/website/public/screenshots/client-releases-funds-2.png b/packages/website/public/screenshots/client-releases-funds-2.png
new file mode 100644
index 00000000..3f654108
Binary files /dev/null and b/packages/website/public/screenshots/client-releases-funds-2.png differ
diff --git a/packages/website/public/screenshots/connect-your-wallet.png b/packages/website/public/screenshots/connect-your-wallet.png
new file mode 100644
index 00000000..c095f35e
Binary files /dev/null and b/packages/website/public/screenshots/connect-your-wallet.png differ
diff --git a/packages/website/public/screenshots/contractor-invoice-view.png b/packages/website/public/screenshots/contractor-invoice-view.png
new file mode 100644
index 00000000..747308bc
Binary files /dev/null and b/packages/website/public/screenshots/contractor-invoice-view.png differ
diff --git a/packages/website/public/screenshots/contractor-lock-funds.png b/packages/website/public/screenshots/contractor-lock-funds.png
new file mode 100644
index 00000000..8c3d6854
Binary files /dev/null and b/packages/website/public/screenshots/contractor-lock-funds.png differ
diff --git a/packages/website/public/screenshots/contractor-receives-funds.png b/packages/website/public/screenshots/contractor-receives-funds.png
new file mode 100644
index 00000000..493865ca
Binary files /dev/null and b/packages/website/public/screenshots/contractor-receives-funds.png differ
diff --git a/packages/website/public/screenshots/create-invoice-complete.png b/packages/website/public/screenshots/create-invoice-complete.png
new file mode 100644
index 00000000..bc231dee
Binary files /dev/null and b/packages/website/public/screenshots/create-invoice-complete.png differ
diff --git a/packages/website/public/screenshots/create-invoice-confirm.png b/packages/website/public/screenshots/create-invoice-confirm.png
new file mode 100644
index 00000000..3dc72354
Binary files /dev/null and b/packages/website/public/screenshots/create-invoice-confirm.png differ
diff --git a/packages/website/public/screenshots/create-invoice-step-1.png b/packages/website/public/screenshots/create-invoice-step-1.png
new file mode 100644
index 00000000..7df035f5
Binary files /dev/null and b/packages/website/public/screenshots/create-invoice-step-1.png differ
diff --git a/packages/website/public/screenshots/create-invoice-step-2.png b/packages/website/public/screenshots/create-invoice-step-2.png
new file mode 100644
index 00000000..66339b21
Binary files /dev/null and b/packages/website/public/screenshots/create-invoice-step-2.png differ
diff --git a/packages/website/public/screenshots/create-invoice-step-3.png b/packages/website/public/screenshots/create-invoice-step-3.png
new file mode 100644
index 00000000..1cde4877
Binary files /dev/null and b/packages/website/public/screenshots/create-invoice-step-3.png differ
diff --git a/packages/website/public/screenshots/create-invoice-step-4.png b/packages/website/public/screenshots/create-invoice-step-4.png
new file mode 100644
index 00000000..b36e9061
Binary files /dev/null and b/packages/website/public/screenshots/create-invoice-step-4.png differ
diff --git a/packages/website/public/screenshots/custom-arbitrator.png b/packages/website/public/screenshots/custom-arbitrator.png
new file mode 100644
index 00000000..69b58845
Binary files /dev/null and b/packages/website/public/screenshots/custom-arbitrator.png differ
diff --git a/packages/website/public/screenshots/funds-in-smart-contract.png b/packages/website/public/screenshots/funds-in-smart-contract.png
new file mode 100644
index 00000000..10d49400
Binary files /dev/null and b/packages/website/public/screenshots/funds-in-smart-contract.png differ
diff --git a/packages/website/public/screenshots/manage-invoices.png b/packages/website/public/screenshots/manage-invoices.png
new file mode 100644
index 00000000..9877b497
Binary files /dev/null and b/packages/website/public/screenshots/manage-invoices.png differ
diff --git a/packages/website/public/screenshots/request-arbitration.png b/packages/website/public/screenshots/request-arbitration.png
new file mode 100644
index 00000000..6845319f
Binary files /dev/null and b/packages/website/public/screenshots/request-arbitration.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-1.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-1.png
new file mode 100644
index 00000000..18fd8c42
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-1.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-10.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-10.png
new file mode 100644
index 00000000..682a8c62
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-10.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-11.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-11.png
new file mode 100644
index 00000000..4eeda7ec
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-11.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-12.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-12.png
new file mode 100644
index 00000000..15fd74ef
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-12.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-13.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-13.png
new file mode 100644
index 00000000..dc3e8599
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-13.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-2.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-2.png
new file mode 100644
index 00000000..11c0fbfb
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-2.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-3.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-3.png
new file mode 100644
index 00000000..630ced3b
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-3.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-4.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-4.png
new file mode 100644
index 00000000..f61d0958
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-4.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-5.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-5.png
new file mode 100644
index 00000000..c5c2795f
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-5.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-6.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-6.png
new file mode 100644
index 00000000..3bbe6359
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-6.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-7.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-7.png
new file mode 100644
index 00000000..69aac2fa
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-7.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-8.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-8.png
new file mode 100644
index 00000000..9164057b
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-8.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-9.png b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-9.png
new file mode 100644
index 00000000..0d19dec1
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-erc20-token-to-wallet-9.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-milestones-1.png b/packages/website/public/screenshots/smart-invoice-add-milestones-1.png
new file mode 100644
index 00000000..ca51512b
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-milestones-1.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-milestones-2.png b/packages/website/public/screenshots/smart-invoice-add-milestones-2.png
new file mode 100644
index 00000000..67753d8c
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-milestones-2.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-add-new-milestones.png b/packages/website/public/screenshots/smart-invoice-add-new-milestones.png
new file mode 100644
index 00000000..6b654207
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-add-new-milestones.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-1.png b/packages/website/public/screenshots/smart-invoice-client-multisig-1.png
new file mode 100644
index 00000000..8c0bf7aa
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-1.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-10.png b/packages/website/public/screenshots/smart-invoice-client-multisig-10.png
new file mode 100644
index 00000000..7f279a1e
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-10.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-12.png b/packages/website/public/screenshots/smart-invoice-client-multisig-12.png
new file mode 100644
index 00000000..a1c1e13a
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-12.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-13.png b/packages/website/public/screenshots/smart-invoice-client-multisig-13.png
new file mode 100644
index 00000000..c9bff377
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-13.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-14.png b/packages/website/public/screenshots/smart-invoice-client-multisig-14.png
new file mode 100644
index 00000000..44303c82
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-14.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-15.png b/packages/website/public/screenshots/smart-invoice-client-multisig-15.png
new file mode 100644
index 00000000..f0c69394
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-15.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-16.png b/packages/website/public/screenshots/smart-invoice-client-multisig-16.png
new file mode 100644
index 00000000..5cdc6693
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-16.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-17.png b/packages/website/public/screenshots/smart-invoice-client-multisig-17.png
new file mode 100644
index 00000000..d8ce275c
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-17.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-18.png b/packages/website/public/screenshots/smart-invoice-client-multisig-18.png
new file mode 100644
index 00000000..c0732636
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-18.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-19.png b/packages/website/public/screenshots/smart-invoice-client-multisig-19.png
new file mode 100644
index 00000000..f9389c52
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-19.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-2.png b/packages/website/public/screenshots/smart-invoice-client-multisig-2.png
new file mode 100644
index 00000000..ad6e89aa
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-2.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-20.png b/packages/website/public/screenshots/smart-invoice-client-multisig-20.png
new file mode 100644
index 00000000..a3531baf
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-20.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-21.png b/packages/website/public/screenshots/smart-invoice-client-multisig-21.png
new file mode 100644
index 00000000..92e73080
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-21.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-22.png b/packages/website/public/screenshots/smart-invoice-client-multisig-22.png
new file mode 100644
index 00000000..016e990c
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-22.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-23.png b/packages/website/public/screenshots/smart-invoice-client-multisig-23.png
new file mode 100644
index 00000000..262fe3ce
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-23.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-24.png b/packages/website/public/screenshots/smart-invoice-client-multisig-24.png
new file mode 100644
index 00000000..b9f68f28
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-24.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-25.png b/packages/website/public/screenshots/smart-invoice-client-multisig-25.png
new file mode 100644
index 00000000..a78cb8a0
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-25.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-26.png b/packages/website/public/screenshots/smart-invoice-client-multisig-26.png
new file mode 100644
index 00000000..4c2d6ceb
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-26.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-27.png b/packages/website/public/screenshots/smart-invoice-client-multisig-27.png
new file mode 100644
index 00000000..dd765a3e
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-27.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-28.png b/packages/website/public/screenshots/smart-invoice-client-multisig-28.png
new file mode 100644
index 00000000..080f9f49
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-28.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-3.png b/packages/website/public/screenshots/smart-invoice-client-multisig-3.png
new file mode 100644
index 00000000..fbd19849
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-3.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-4.png b/packages/website/public/screenshots/smart-invoice-client-multisig-4.png
new file mode 100644
index 00000000..0e1f2b1f
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-4.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-5.png b/packages/website/public/screenshots/smart-invoice-client-multisig-5.png
new file mode 100644
index 00000000..69941f83
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-5.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-6.png b/packages/website/public/screenshots/smart-invoice-client-multisig-6.png
new file mode 100644
index 00000000..4d2484d5
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-6.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-7.png b/packages/website/public/screenshots/smart-invoice-client-multisig-7.png
new file mode 100644
index 00000000..19f16907
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-7.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-8.png b/packages/website/public/screenshots/smart-invoice-client-multisig-8.png
new file mode 100644
index 00000000..f4d2fd2a
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-8.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-multisig-9.png b/packages/website/public/screenshots/smart-invoice-client-multisig-9.png
new file mode 100644
index 00000000..6d362ea6
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-multisig-9.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-client-view-of-invoice.png b/packages/website/public/screenshots/smart-invoice-client-view-of-invoice.png
new file mode 100644
index 00000000..4794cc94
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-client-view-of-invoice.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-contractor-lock-funds.png b/packages/website/public/screenshots/smart-invoice-contractor-lock-funds.png
new file mode 100644
index 00000000..30bc1d4c
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-contractor-lock-funds.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-contractor-view-of-invoice.png b/packages/website/public/screenshots/smart-invoice-contractor-view-of-invoice.png
new file mode 100644
index 00000000..52c9a69c
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-contractor-view-of-invoice.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-deposit-funds-1.png b/packages/website/public/screenshots/smart-invoice-deposit-funds-1.png
new file mode 100644
index 00000000..dcbc63ae
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-deposit-funds-1.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-deposit-funds-2.png b/packages/website/public/screenshots/smart-invoice-deposit-funds-2.png
new file mode 100644
index 00000000..30c00771
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-deposit-funds-2.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-deposit-funds-3.png b/packages/website/public/screenshots/smart-invoice-deposit-funds-3.png
new file mode 100644
index 00000000..4428dce0
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-deposit-funds-3.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-download-pdf-from-dashboard.png b/packages/website/public/screenshots/smart-invoice-download-pdf-from-dashboard.png
new file mode 100644
index 00000000..bf7db3ce
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-download-pdf-from-dashboard.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-manage-invoice.png b/packages/website/public/screenshots/smart-invoice-manage-invoice.png
new file mode 100644
index 00000000..fe7d65e2
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-manage-invoice.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-mm-security-1.png b/packages/website/public/screenshots/smart-invoice-mm-security-1.png
new file mode 100644
index 00000000..daf36cb9
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-mm-security-1.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-mm-security-2.png b/packages/website/public/screenshots/smart-invoice-mm-security-2.png
new file mode 100644
index 00000000..1222ca8d
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-mm-security-2.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-notify-of-arbitration-decision-1.png b/packages/website/public/screenshots/smart-invoice-notify-of-arbitration-decision-1.png
new file mode 100644
index 00000000..d5cb9010
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-notify-of-arbitration-decision-1.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-release-disputed-funds-1.png b/packages/website/public/screenshots/smart-invoice-release-disputed-funds-1.png
new file mode 100644
index 00000000..dad2c1d4
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-release-disputed-funds-1.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-status.png b/packages/website/public/screenshots/smart-invoice-status.png
new file mode 100644
index 00000000..9ec6fbae
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-status.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-1.png b/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-1.png
new file mode 100644
index 00000000..761bbb7c
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-1.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-2.png b/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-2.png
new file mode 100644
index 00000000..7e2b6579
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-2.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-3.png b/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-3.png
new file mode 100644
index 00000000..6221789e
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-3.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-4.png b/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-4.png
new file mode 100644
index 00000000..a57a52dd
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-verfiy-client-wallet-address-4.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-view-milestones-in-dispute-1.png b/packages/website/public/screenshots/smart-invoice-view-milestones-in-dispute-1.png
new file mode 100644
index 00000000..43e80058
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-view-milestones-in-dispute-1.png differ
diff --git a/packages/website/public/screenshots/smart-invoice-view-milestones-in-dispute-2.png b/packages/website/public/screenshots/smart-invoice-view-milestones-in-dispute-2.png
new file mode 100644
index 00000000..60954cb5
Binary files /dev/null and b/packages/website/public/screenshots/smart-invoice-view-milestones-in-dispute-2.png differ
diff --git a/packages/website/public/screenshots/welcome-screen.png b/packages/website/public/screenshots/welcome-screen.png
new file mode 100644
index 00000000..acd21323
Binary files /dev/null and b/packages/website/public/screenshots/welcome-screen.png differ
diff --git a/packages/website/public/secure-icon.svg b/packages/website/public/secure-icon.svg
new file mode 100644
index 00000000..b60e75e4
--- /dev/null
+++ b/packages/website/public/secure-icon.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/packages/website/public/vercel.svg b/packages/website/public/vercel.svg
new file mode 100644
index 00000000..fbf0e25a
--- /dev/null
+++ b/packages/website/public/vercel.svg
@@ -0,0 +1,4 @@
+
+
+
\ No newline at end of file
diff --git a/packages/website/sidebars.js b/packages/website/sidebars.js
new file mode 100644
index 00000000..6961257d
--- /dev/null
+++ b/packages/website/sidebars.js
@@ -0,0 +1,176 @@
+export const docV3Menu = [
+ {
+ category: 'Getting Started',
+ path: 'getting-started',
+ topics: [
+ {
+ title: 'What is Smart Invoice?',
+ slug: 'what-is-smart-invoice'
+ },
+ {
+ title: 'Who should use Smart Invoice?',
+ slug: 'who-should-use-smart-invoice'
+ },
+ {
+ title: 'How do I log in?',
+ slug: 'how-do-i-log-in'
+ },
+ {
+ title: 'What is escrow?',
+ slug: 'what-is-escrow'
+ },
+ {
+ title: 'What is arbitration and “locking”?',
+ slug: 'what-is-locking-and-arbitration'
+ },
+ ],
+ },
+ {
+ category: 'Contractor Tutorials',
+ path: 'tutorials/contractor',
+ topics: [
+ {
+ title: "How to create an invoice",
+ slug: 'how-to-create-an-invoice'
+ },
+ {
+ title: "How to encrypt the project agreement",
+ slug: 'encrypt-project-agreement'
+ },
+ {
+ title: "How to accept payments to your multisig wallet",
+ slug: 'accept-payments-to-multisig-wallet'
+ },
+ // {
+ // title: "How to verify your client’s wallet address",
+ // slug: 'verify-client-wallet-address'
+ // },
+ {
+ title: "How to add a custom arbitrator",
+ slug: 'custom-arbitrator'
+ },
+ {
+ title: "How to request a deposit to escrow from your client",
+ slug: 'request-deposit'
+ },
+ {
+ title: "How to manage your invoices",
+ slug: 'manage-invoices'
+ },
+ {
+ title: "How to request milestone payments be released from escrow",
+ slug: 'request-milestone-payments-released-from-escrow'
+ },
+ // {
+ // title: "How to add more milestones to an existing invoice",
+ // slug: 'add-more-milestones-to-existing-invoice'
+ // },
+ // {
+ // title: "How to download a PDF of your invoice",
+ // slug: 'download-invoice-to-pdf'
+ // },
+ // {
+ // title: "How to check the status of an invoice",
+ // slug: 'check-invoice-status'
+ // },
+ {
+ title: "How to lock a milestone and request arbitration if there is a dispute",
+ slug: 'lock-milestone-and-request-arbitration'
+ },
+ ],
+ },
+ {
+ category: 'Client Tutorials',
+ path: 'tutorials/client',
+ topics: [
+ {
+ title: "How to view invoices sent to your wallet",
+ slug: 'view-invoices'
+ },
+ {
+ title: "How to deposit funds into the invoice’s escrow",
+ slug: 'deposit-funds'
+ },
+ {
+ title: "How to release escrow funds held inside of a milestone",
+ slug: 'release-escrow-funds-inside-milestone'
+ },
+ {
+ title: "How to pay invoices with a multisig wallet",
+ slug: 'use-a-multisig-wallet-as-client'
+ },
+ {
+ title: "How to lock a milestone and request arbitration if there is a dispute",
+ slug: 'lock-milestone-and-request-arbitration'
+ },
+ {
+ title: "How to download a PDF of your invoice",
+ slug: 'download-invoice-as-pdf'
+ },
+ ]
+ },
+ {
+ category: 'Arbitrator Tutorials',
+ path: 'tutorials/arbitrator',
+ topics: [
+ {
+ title: "How to notify the contractor and client of arbitration decision",
+ slug: 'notify-arbitration-decision'
+ },
+ {
+ title: "How to release disputed escrow funds to the contractor or client",
+ slug: 'release-disputed-escrow-funds'
+ },
+ {
+ title: "How to view invoice milestones in dispute",
+ slug: 'view-invoice-milestones'
+ },
+ ]
+ },
+ {
+ category: 'Arbitration',
+ path: 'arbitration',
+ topics: [
+ {
+ title: 'Kleros Arbitration',
+ slug: 'kleros-arbitration'
+ },
+ {
+ title: 'Smart Invoice Arbitration',
+ slug: 'smart-invoice-arbitration'
+ },
+ {
+ title: 'LexDAO Arbitration',
+ slug: 'lexdao-arbitration'
+
+ },
+ {
+ title: 'Custom Arbitration',
+ slug: 'custom-arbitration'
+ },
+ {
+ title: 'Arbitration and Escrow Infrastructure',
+ slug: 'arbitration-infra'
+ }
+ ]
+
+ },
+ {
+ category: 'Miscellaneous',
+ path: 'misc',
+ topics: [
+ {
+ title: 'Get Support',
+ slug: 'get-support'
+ },
+ {
+ title: 'Troubleshooting',
+ slug: 'troubleshooting'
+ },
+ {
+ title: 'FAQ',
+ slug: 'FAQ'
+ }
+ ]
+ },
+]
\ No newline at end of file
diff --git a/packages/website/styles/Home.module.css b/packages/website/styles/Home.module.css
new file mode 100644
index 00000000..bd50f42f
--- /dev/null
+++ b/packages/website/styles/Home.module.css
@@ -0,0 +1,129 @@
+.container {
+ padding: 0 2rem;
+}
+
+.main {
+ min-height: 100vh;
+ padding: 4rem 0;
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+}
+
+.footer {
+ display: flex;
+ flex: 1;
+ padding: 2rem 0;
+ border-top: 1px solid #eaeaea;
+ justify-content: center;
+ align-items: center;
+}
+
+.footer a {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-grow: 1;
+}
+
+.title a {
+ color: #0070f3;
+ text-decoration: none;
+}
+
+.title a:hover,
+.title a:focus,
+.title a:active {
+ text-decoration: underline;
+}
+
+.title {
+ margin: 0;
+ line-height: 1.15;
+ font-size: 4rem;
+}
+
+.title,
+.description {
+ text-align: center;
+}
+
+.description {
+ margin: 4rem 0;
+ line-height: 1.5;
+ font-size: 1.5rem;
+}
+
+.code {
+ background: #fafafa;
+ border-radius: 5px;
+ padding: 0.75rem;
+ font-size: 1.1rem;
+ font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
+ Bitstream Vera Sans Mono, Courier New, monospace;
+}
+
+.grid {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-wrap: wrap;
+ max-width: 800px;
+}
+
+.card {
+ margin: 1rem;
+ padding: 1.5rem;
+ text-align: left;
+ color: inherit;
+ text-decoration: none;
+ border: 1px solid #eaeaea;
+ border-radius: 10px;
+ transition: color 0.15s ease, border-color 0.15s ease;
+ max-width: 300px;
+}
+
+.card:hover,
+.card:focus,
+.card:active {
+ color: #0070f3;
+ border-color: #0070f3;
+}
+
+.card h2 {
+ margin: 0 0 1rem 0;
+ font-size: 1.5rem;
+}
+
+.card p {
+ margin: 0;
+ font-size: 1.25rem;
+ line-height: 1.5;
+}
+
+.logo {
+ height: 1em;
+ margin-left: 0.5rem;
+}
+
+@media (max-width: 600px) {
+ .grid {
+ width: 100%;
+ flex-direction: column;
+ }
+}
+
+@media (prefers-color-scheme: dark) {
+ .card,
+ .footer {
+ border-color: #222;
+ }
+ .code {
+ background: #111;
+ }
+ .logo img {
+ filter: invert(1);
+ }
+}
diff --git a/packages/website/styles/globals.css b/packages/website/styles/globals.css
new file mode 100644
index 00000000..e03478aa
--- /dev/null
+++ b/packages/website/styles/globals.css
@@ -0,0 +1,70 @@
+@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,700&display=swap');
+
+html,
+body {
+ padding: 0;
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
+ Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
+}
+
+a {
+ color: inherit;
+ text-decoration: none;
+}
+
+* {
+ box-sizing: border-box;
+}
+
+@media (prefers-color-scheme: dark) {
+ html {
+ color-scheme: dark;
+ }
+ body {
+ color: white;
+ background: black;
+ }
+}
+
+.doc-body ul, ol {
+ margin-bottom: 20px;
+}
+
+.doc-body li {
+ margin-left: 20px;
+ margin-bottom: 8px;
+}
+
+.doc-body pre {
+ background: #f4f4f4;
+ padding: 20px;
+ margin: 20px 0;
+ line-height: 2.3;
+}
+
+.doc-body p {
+ margin-bottom: 20px;
+ margin-top: 10px;
+}
+
+.doc-body summary {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ font-weight: bold;
+ cursor: pointer;
+}
+
+.doc-body h3 {
+ font-size: 20px;
+ font-weight: bold;
+}
+
+.doc-body img {
+ margin-bottom: 10px;
+}
+
+.doc-body a {
+ text-decoration: underline;
+ color: #3D88F8;
+}
diff --git a/packages/website/theme.js b/packages/website/theme.js
new file mode 100644
index 00000000..e4a89169
--- /dev/null
+++ b/packages/website/theme.js
@@ -0,0 +1,38 @@
+import { extendTheme } from '@chakra-ui/react';
+
+export const colors = {
+ blue: {
+ 1: '#3D88F8',
+ 2: '#2B69C5',
+ 3: '#1C59B3',
+ 4: '#0C3C84',
+ dark: '#334D6E',
+ hover: {
+ 1: 'rgba(61, 136, 248, 0.7)'
+ }
+ },
+ charcoal: '#323C47',
+ gray: {
+ dark: '#707683',
+ light: '#90A0B7',
+ background: 'rgba(245, 246, 248, 1)',
+ },
+};
+
+export const styles = {
+ global: {
+ 'html, body': {
+ color: '#707683',
+ background: 'white',
+ },
+ button: {
+ color: 'white',
+ },
+ 'h1, h2': {
+ color: '#323C47',
+ fontWeight: 700,
+ },
+ },
+};
+
+export const theme = extendTheme({ colors, styles });
diff --git a/packages/website/tsconfig.json b/packages/website/tsconfig.json
new file mode 100644
index 00000000..e4af8d5f
--- /dev/null
+++ b/packages/website/tsconfig.json
@@ -0,0 +1,41 @@
+{
+ "extends": "../../tsconfig.base.json",
+ "compilerOptions": {
+ "target": "ES2020",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "ESNext",
+ "moduleResolution": "Node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ]
+ },
+ "include": [
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/types/**/*.ts",
+ "next.config.js",
+ "../../jest.config.ts"
+ ],
+ "exclude": ["node_modules", "dist"],
+ "references": [
+ { "path": "../types" },
+ { "path": "../constants" },
+ { "path": "../utils" },
+ { "path": "../ui" },
+ { "path": "../forms" },
+ { "path": "../hooks" },
+ { "path": "../graphql" }
+ ]
+}
diff --git a/packages/website/types/gray-matter.d.ts b/packages/website/types/gray-matter.d.ts
new file mode 100644
index 00000000..10f2f25e
--- /dev/null
+++ b/packages/website/types/gray-matter.d.ts
@@ -0,0 +1 @@
+declare module 'gray-matter';
\ No newline at end of file
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index d4843272..12346043 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -62,7 +62,7 @@ importers:
version: 10.5.0(eslint@8.56.0)
eslint-plugin-prettier:
specifier: ^5.2.1
- version: 5.2.1(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.3.3)
+ version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.3.3)
eslint-plugin-promise:
specifier: ^7.1.0
version: 7.1.0(eslint@8.56.0)
@@ -203,7 +203,7 @@ importers:
version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1)
'@rainbow-me/rainbowkit':
specifier: 2.2.0
- version: 2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
+ version: 2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
'@smartinvoicexyz/constants':
specifier: workspace:*
version: link:../constants
@@ -272,7 +272,7 @@ importers:
version: 2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
wagmi:
specifier: 2.12.17
- version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
devDependencies:
'@next/eslint-plugin-next':
specifier: ^14.2.7
@@ -308,31 +308,6 @@ importers:
specifier: ^10.9.2
version: 10.9.2(@types/node@22.8.6)(typescript@5.6.3)
- packages/docs:
- dependencies:
- '@docusaurus/core':
- specifier: ^2.0.0
- version: 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/preset-classic':
- specifier: ^2.0.0
- version: 2.4.3(@algolia/client-search@4.24.0)(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@mdx-js/react':
- specifier: ^1.6.21
- version: 1.6.22(react@18.3.1)
- clsx:
- specifier: ^1.1.1
- version: 1.2.1
- react:
- specifier: ^18.2.0
- version: 18.3.1
- react-dom:
- specifier: ^18.2.0
- version: 18.3.1(react@18.3.1)
- devDependencies:
- eslint-plugin-import:
- specifier: ^2.29.1
- version: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.2))(eslint@8.56.0)
-
packages/forms:
dependencies:
'@chakra-ui/icons':
@@ -379,7 +354,7 @@ importers:
version: 2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
wagmi:
specifier: 2.12.17
- version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
yup:
specifier: ^1.3.3
version: 1.4.0
@@ -462,7 +437,7 @@ importers:
version: 2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
wagmi:
specifier: 2.12.17
- version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
devDependencies:
'@types/lodash':
specifier: ^4.17.7
@@ -546,7 +521,7 @@ importers:
version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1)
'@rainbow-me/rainbowkit':
specifier: 2.2.0
- version: 2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
+ version: 2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
'@react-pdf/renderer':
specifier: ^3.1.14
version: 3.4.5(encoding@0.1.13)(react@18.3.1)
@@ -612,7 +587,7 @@ importers:
version: 2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
wagmi:
specifier: 2.12.17
- version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
devDependencies:
'@types/jest':
specifier: ^29.5.11
@@ -631,7 +606,7 @@ importers:
dependencies:
'@rainbow-me/rainbowkit':
specifier: 2.2.0
- version: 2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
+ version: 2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
'@smartinvoicexyz/constants':
specifier: workspace:*
version: link:../constants
@@ -667,7 +642,7 @@ importers:
version: 2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
wagmi:
specifier: 2.12.17
- version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ version: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
yup:
specifier: ^1.3.3
version: 1.4.0
@@ -682,6 +657,52 @@ importers:
specifier: ^22.5.1
version: 22.6.1
+ packages/website:
+ dependencies:
+ '@chakra-ui/react':
+ specifier: ^2.8.2
+ version: 2.8.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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)
+ '@emotion/react':
+ specifier: ^11.13.3
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled':
+ specifier: ^11.13.0
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ framer-motion:
+ specifier: ^11.5.6
+ version: 11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ gray-matter:
+ specifier: ^4.0.3
+ version: 4.0.3
+ marked:
+ specifier: ^4.1.1
+ version: 4.3.0
+ next:
+ specifier: ^14.2.13
+ version: 14.2.13(@babel/core@7.25.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react:
+ specifier: ^18.2.0
+ version: 18.3.1
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.3.1(react@18.3.1)
+ remark:
+ specifier: ^14.0.2
+ version: 14.0.3
+ remark-html:
+ specifier: ^15.0.1
+ version: 15.0.2
+ devDependencies:
+ '@next/eslint-plugin-next':
+ specifier: ^14.2.7
+ version: 14.2.13
+ eslint:
+ specifier: 8.56.0
+ version: 8.56.0
+ eslint-config-next:
+ specifier: ^14.2.7
+ version: 14.2.13(eslint@8.56.0)(typescript@5.6.3)
+
packages:
'@adobe/css-tools@4.4.0':
@@ -693,74 +714,6 @@ packages:
'@adraffy/ens-normalize@1.10.1':
resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
- '@algolia/autocomplete-core@1.9.3':
- resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
-
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3':
- resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==}
- peerDependencies:
- search-insights: '>= 1 < 3'
-
- '@algolia/autocomplete-preset-algolia@1.9.3':
- resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==}
- 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==}
- peerDependencies:
- '@algolia/client-search': '>= 4.9.1 < 6'
- algoliasearch: '>= 4.9.1 < 6'
-
- '@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/client-account@4.24.0':
- resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==}
-
- '@algolia/client-analytics@4.24.0':
- resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==}
-
- '@algolia/client-common@4.24.0':
- resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==}
-
- '@algolia/client-personalization@4.24.0':
- resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==}
-
- '@algolia/client-search@4.24.0':
- resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==}
-
- '@algolia/events@4.0.1':
- resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
-
- '@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/recommend@4.24.0':
- resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==}
-
- '@algolia/requester-browser-xhr@4.24.0':
- resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==}
-
- '@algolia/requester-common@4.24.0':
- resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==}
-
- '@algolia/requester-node-http@4.24.0':
- resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==}
-
- '@algolia/transporter@4.24.0':
- resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==}
-
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
@@ -799,10 +752,6 @@ packages:
resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.12.9':
- resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/core@7.25.2':
resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
@@ -826,18 +775,10 @@ packages:
resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.24.7':
- resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-annotate-as-pure@7.25.9':
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
- resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-compilation-targets@7.25.2':
resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
@@ -846,44 +787,23 @@ packages:
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.25.4':
- resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@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.25.2':
- resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-create-regexp-features-plugin@7.25.9':
resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.2':
- resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
-
'@babel/helper-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-member-expression-to-functions@7.24.8':
- resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-member-expression-to-functions@7.25.9':
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
@@ -908,17 +828,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.24.7':
- resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
- engines: {node: '>=6.9.0'}
-
'@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.24.8':
resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
@@ -927,24 +840,12 @@ packages:
resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.25.0':
- resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@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.25.0':
- resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-replace-supers@7.25.9':
resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
@@ -959,10 +860,6 @@ packages:
resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
- resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
@@ -991,10 +888,6 @@ packages:
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.0':
- resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-wrap-function@7.25.9':
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
@@ -1021,32 +914,32 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3':
- resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==}
+ '@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-safari-class-field-initializer-scope@7.25.0':
- resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==}
+ '@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.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0':
- resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==}
+ '@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
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
- resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
+ '@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.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0':
- resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==}
+ '@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
@@ -1071,12 +964,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@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-proposal-optional-chaining@7.21.0':
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
@@ -1122,19 +1009,14 @@ 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-flow@7.26.0':
resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.25.6':
- resolution: {integrity: sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==}
+ '@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
@@ -1145,6 +1027,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@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:
@@ -1155,11 +1043,6 @@ packages:
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.7':
resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
@@ -1232,50 +1115,26 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.24.7':
- resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.25.4':
- resolution: {integrity: sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-block-scoping@7.25.0':
- resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
+ '@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
@@ -1286,92 +1145,68 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.25.4':
- resolution: {integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
+ '@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.25.4':
- resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.8':
- resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
+ '@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.24.7':
- resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
+ '@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-duplicate-named-capturing-groups-regex@7.25.0':
- resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==}
+ '@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.24.7':
- resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
+ '@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.24.7':
- resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
+ '@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.24.7':
- resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
+ '@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
@@ -1382,38 +1217,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.24.7':
- resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.25.1':
- resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-literals@7.25.2':
- resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
+ '@babel/plugin-transform-json-strings@7.25.9':
+ resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1424,32 +1241,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.24.7':
- resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-modules-amd@7.24.7':
- resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
+ '@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-commonjs@7.24.8':
- resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
+ '@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
@@ -1460,38 +1265,26 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.25.0':
- resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
+ '@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.24.7':
- resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
+ '@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.24.7':
- resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@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.24.7':
- resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
- resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
+ '@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
@@ -1502,38 +1295,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.24.7':
- resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-optional-catch-binding@7.24.7':
- resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
+ '@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
@@ -1544,68 +1319,32 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.8':
- resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.25.4':
- resolution: {integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-react-constant-elements@7.25.1':
- resolution: {integrity: sha512-SLV/giH/V4SmloZ6Dt40HjTGTAIkxn33TVIHxNGNvo8ezMhrxBkzisj4op1KZYPIOHFLqhv60OHvX+YRu4xbmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-react-display-name@7.24.7':
- resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
+ '@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
@@ -1616,12 +1355,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.24.7':
- resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-react-jsx-self@7.25.9':
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
@@ -1634,44 +1367,26 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.25.2':
- resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.7':
- resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-regenerator@7.24.7':
- resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
+ '@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.25.4':
- resolution: {integrity: sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ==}
+ '@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
@@ -1682,56 +1397,32 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.24.7':
- resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@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.24.7':
- resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-typeof-symbol@7.24.8':
- resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
+ '@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-typescript@7.25.2':
- resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
+ '@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
@@ -1742,20 +1433,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.24.7':
- resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-unicode-property-regex@7.24.7':
- resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
+ '@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-regex@7.24.7':
- resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
+ '@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
@@ -1766,14 +1451,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.25.4':
- resolution: {integrity: sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==}
+ '@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.25.4':
- resolution: {integrity: sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==}
+ '@babel/preset-env@7.26.0':
+ resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1789,18 +1474,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.24.7':
- resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/preset-typescript@7.24.7':
- resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/preset-typescript@7.26.0':
resolution: {integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==}
engines: {node: '>=6.9.0'}
@@ -1813,13 +1486,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/regjsgen@0.8.0':
- resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
-
- '@babel/runtime-corejs3@7.25.6':
- resolution: {integrity: sha512-Gz0Nrobx8szge6kQQ5Z5MX9L3ObqNwCQY1PSwSNzreFL7aHGxv8Fp2j3ETV6/wWdbiV+mW6OSm8oQhg3Tcsniw==}
- engines: {node: '>=6.9.0'}
-
'@babel/runtime@7.25.6':
resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
engines: {node: '>=6.9.0'}
@@ -2423,180 +2089,6 @@ packages:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
- '@discoveryjs/json-ext@0.5.7':
- resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
- engines: {node: '>=10.0.0'}
-
- '@docsearch/css@3.6.1':
- resolution: {integrity: sha512-VtVb5DS+0hRIprU2CO6ZQjK2Zg4QU5HrDM1+ix6rT0umsYvFvatMAnf97NHZlVWDaaLlx7GRfR/7FikANiM2Fg==}
-
- '@docsearch/react@3.6.1':
- resolution: {integrity: sha512-qXZkEPvybVhSXj0K7U3bXc233tk5e8PfhoZ6MhPOiik/qUQxYC+Dn9DnoS7CxHQQhHfCvTiN0eY9M12oRghEXw==}
- peerDependencies:
- '@types/react': '>= 16.8.0 < 19.0.0'
- react: '>= 16.8.0 < 19.0.0'
- react-dom: '>= 16.8.0 < 19.0.0'
- search-insights: '>= 1 < 3'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- react:
- optional: true
- react-dom:
- optional: true
- search-insights:
- optional: true
-
- '@docusaurus/core@2.4.3':
- resolution: {integrity: sha512-dWH5P7cgeNSIg9ufReX6gaCl/TmrGKD38Orbwuz05WPhAQtFXHd5B8Qym1TiXfvUNvwoYKkAJOJuGe8ou0Z7PA==}
- engines: {node: '>=16.14'}
- hasBin: true
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/cssnano-preset@2.4.3':
- resolution: {integrity: sha512-ZvGSRCi7z9wLnZrXNPG6DmVPHdKGd8dIn9pYbEOFiYihfv4uDR3UtxogmKf+rT8ZlKFf5Lqne8E8nt08zNM8CA==}
- engines: {node: '>=16.14'}
-
- '@docusaurus/logger@2.4.3':
- resolution: {integrity: sha512-Zxws7r3yLufk9xM1zq9ged0YHs65mlRmtsobnFkdZTxWXdTYlWWLWdKyNKAsVC+D7zg+pv2fGbyabdOnyZOM3w==}
- engines: {node: '>=16.14'}
-
- '@docusaurus/mdx-loader@2.4.3':
- resolution: {integrity: sha512-b1+fDnWtl3GiqkL0BRjYtc94FZrcDDBV1j8446+4tptB9BAOlePwG2p/pK6vGvfL53lkOsszXMghr2g67M0vCw==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/module-type-aliases@2.4.3':
- resolution: {integrity: sha512-cwkBkt1UCiduuvEAo7XZY01dJfRn7UR/75mBgOdb1hKknhrabJZ8YH+7savd/y9kLExPyrhe0QwdS9GuzsRRIA==}
- peerDependencies:
- react: '*'
- react-dom: '*'
-
- '@docusaurus/plugin-content-blog@2.4.3':
- resolution: {integrity: sha512-PVhypqaA0t98zVDpOeTqWUTvRqCEjJubtfFUQ7zJNYdbYTbS/E/ytq6zbLVsN/dImvemtO/5JQgjLxsh8XLo8Q==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/plugin-content-docs@2.4.3':
- resolution: {integrity: sha512-N7Po2LSH6UejQhzTCsvuX5NOzlC+HiXOVvofnEPj0WhMu1etpLEXE6a4aTxrtg95lQ5kf0xUIdjX9sh3d3G76A==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/plugin-content-pages@2.4.3':
- resolution: {integrity: sha512-txtDVz7y3zGk67q0HjG0gRttVPodkHqE0bpJ+7dOaTH40CQFLSh7+aBeGnPOTl+oCPG+hxkim4SndqPqXjQ8Bg==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/plugin-debug@2.4.3':
- resolution: {integrity: sha512-LkUbuq3zCmINlFb+gAd4ZvYr+bPAzMC0hwND4F7V9bZ852dCX8YoWyovVUBKq4er1XsOwSQaHmNGtObtn8Av8Q==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/plugin-google-analytics@2.4.3':
- resolution: {integrity: sha512-KzBV3k8lDkWOhg/oYGxlK5o9bOwX7KpPc/FTWoB+SfKhlHfhq7qcQdMi1elAaVEIop8tgK6gD1E58Q+XC6otSQ==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/plugin-google-gtag@2.4.3':
- resolution: {integrity: sha512-5FMg0rT7sDy4i9AGsvJC71MQrqQZwgLNdDetLEGDHLfSHLvJhQbTCUGbGXknUgWXQJckcV/AILYeJy+HhxeIFA==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/plugin-google-tag-manager@2.4.3':
- resolution: {integrity: sha512-1jTzp71yDGuQiX9Bi0pVp3alArV0LSnHXempvQTxwCGAEzUWWaBg4d8pocAlTpbP9aULQQqhgzrs8hgTRPOM0A==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/plugin-sitemap@2.4.3':
- resolution: {integrity: sha512-LRQYrK1oH1rNfr4YvWBmRzTL0LN9UAPxBbghgeFRBm5yloF6P+zv1tm2pe2hQTX/QP5bSKdnajCvfnScgKXMZQ==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/preset-classic@2.4.3':
- resolution: {integrity: sha512-tRyMliepY11Ym6hB1rAFSNGwQDpmszvWYJvlK1E+md4SW8i6ylNHtpZjaYFff9Mdk3i/Pg8ItQq9P0daOJAvQw==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/react-loadable@5.5.2':
- resolution: {integrity: sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==}
- peerDependencies:
- react: '*'
-
- '@docusaurus/theme-classic@2.4.3':
- resolution: {integrity: sha512-QKRAJPSGPfDY2yCiPMIVyr+MqwZCIV2lxNzqbyUW0YkrlmdzzP3WuQJPMGLCjWgQp/5c9kpWMvMxjhpZx1R32Q==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/theme-common@2.4.3':
- resolution: {integrity: sha512-7KaDJBXKBVGXw5WOVt84FtN8czGWhM0lbyWEZXGp8AFfL6sZQfRTluFp4QriR97qwzSyOfQb+nzcDZZU4tezUw==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/theme-search-algolia@2.4.3':
- resolution: {integrity: sha512-jziq4f6YVUB5hZOB85ELATwnxBz/RmSLD3ksGQOLDPKVzat4pmI8tddNWtriPpxR04BNT+ZfpPUMFkNFetSW1Q==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
- '@docusaurus/theme-translations@2.4.3':
- resolution: {integrity: sha512-H4D+lbZbjbKNS/Zw1Lel64PioUAIT3cLYYJLUf3KkuO/oc9e0QCVhIYVtUI2SfBCF2NNdlyhBDQEEMygsCedIg==}
- engines: {node: '>=16.14'}
-
- '@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/utils-common@2.4.3':
- resolution: {integrity: sha512-/jascp4GbLQCPVmcGkPzEQjNaAk3ADVfMtudk49Ggb+131B1WDD6HqlSmDf8MxGdy7Dja2gc+StHf01kiWoTDQ==}
- engines: {node: '>=16.14'}
- peerDependencies:
- '@docusaurus/types': '*'
- peerDependenciesMeta:
- '@docusaurus/types':
- optional: true
-
- '@docusaurus/utils-validation@2.4.3':
- resolution: {integrity: sha512-G2+Vt3WR5E/9drAobP+hhZQMaswRwDlp6qOMi7o7ZypB+VO7N//DZWhZEwhcRGepMDJGQEwtPv7UxtYwPL9PBw==}
- engines: {node: '>=16.14'}
-
- '@docusaurus/utils@2.4.3':
- resolution: {integrity: sha512-fKcXsjrD86Smxv8Pt0TBFqYieZZCPh4cbf9oszUq/AMhZn3ujwpKaVYZACPX8mmjtYx0JOgNx52CREBfiGQB4A==}
- engines: {node: '>=16.14'}
- peerDependencies:
- '@docusaurus/types': '*'
- peerDependenciesMeta:
- '@docusaurus/types':
- optional: true
-
'@effect/schema@0.71.1':
resolution: {integrity: sha512-XvFttkuBUL3s4ofZ+OVE4Pagb4wsPG8laSS8iO5lVI9Yt1zIM49uxlYIA2BJ45jjS3MdplUepC0NilotKnjU2A==}
peerDependencies:
@@ -2959,9 +2451,6 @@ packages:
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- '@leichtgewicht/ip-codec@2.0.5':
- resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
-
'@lit-labs/ssr-dom-shim@1.2.1':
resolution: {integrity: sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ==}
@@ -2974,17 +2463,6 @@ packages:
'@manypkg/get-packages@1.1.3':
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
- '@mdx-js/mdx@1.6.22':
- resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==}
-
- '@mdx-js/react@1.6.22':
- resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==}
- peerDependencies:
- react: ^16.13.1 || ^17.0.0
-
- '@mdx-js/util@1.6.22':
- resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==}
-
'@metamask/eth-json-rpc-provider@1.0.1':
resolution: {integrity: sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA==}
engines: {node: '>=14.0.0'}
@@ -3487,9 +2965,6 @@ packages:
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@polka/url@1.0.0-next.28':
- resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
-
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
@@ -3751,10 +3226,6 @@ packages:
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- '@sindresorhus/is@0.14.0':
- resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==}
- engines: {node: '>=6'}
-
'@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
@@ -3765,10 +3236,6 @@ packages:
'@sinonjs/fake-timers@10.3.0':
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
- '@slorber/static-site-generator-webpack-plugin@4.0.7':
- resolution: {integrity: sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==}
- engines: {node: '>=14'}
-
'@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
@@ -3832,84 +3299,6 @@ packages:
'@stablelib/x25519@1.0.3':
resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==}
- '@svgr/babel-plugin-add-jsx-attribute@6.5.1':
- resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@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@8.0.0':
- resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
- engines: {node: '>=14'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1':
- resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
- engines: {node: '>=10'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@svgr/babel-plugin-svg-dynamic-title@6.5.1':
- resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@svgr/babel-plugin-svg-em-dimensions@6.5.1':
- resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
- engines: {node: '>=10'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@svgr/babel-plugin-transform-react-native-svg@6.5.1':
- resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
- engines: {node: '>=10'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@svgr/babel-plugin-transform-svg-component@6.5.1':
- resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
- engines: {node: '>=12'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@svgr/babel-preset@6.5.1':
- resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@svgr/core@6.5.1':
- resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
- engines: {node: '>=10'}
-
- '@svgr/hast-util-to-babel-ast@6.5.1':
- resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
- engines: {node: '>=10'}
-
- '@svgr/plugin-jsx@6.5.1':
- resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@svgr/core': ^6.0.0
-
- '@svgr/plugin-svgo@6.5.1':
- resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@svgr/core': '*'
-
- '@svgr/webpack@6.5.1':
- resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
- engines: {node: '>=10'}
-
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
@@ -3919,10 +3308,6 @@ packages:
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
- '@szmarczak/http-timer@1.1.2':
- resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
- engines: {node: '>=6'}
-
'@tanstack/query-core@5.55.3':
resolution: {integrity: sha512-JpRWbOiTBaddMg/oYNBeBle3m0wFTZnfLc2dtZgjdr3NZaqSGzIkPDFf6gjTWKq5zxWJTZNtsKSihVKQ7wL3VQ==}
@@ -3978,10 +3363,6 @@ packages:
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
engines: {node: '>= 10'}
- '@trysound/sax@0.2.0':
- resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
- engines: {node: '>=10.13.0'}
-
'@tsconfig/node10@1.0.11':
resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
@@ -4015,12 +3396,6 @@ packages:
'@types/bn.js@5.1.6':
resolution: {integrity: sha512-Xh8vSwUeMKeYYrj3cX4lGQgFSF/N03r+tv4AiLl1SucqV+uTQpxRcnM8AkXKHwYP9ZPXOYXRr2KPXpVlIvqh9w==}
- '@types/body-parser@1.19.5':
- resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
-
- '@types/bonjour@3.5.13':
- resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
-
'@types/chai-as-promised@7.1.8':
resolution: {integrity: sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw==}
@@ -4033,9 +3408,6 @@ packages:
'@types/concat-stream@1.6.1':
resolution: {integrity: sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==}
- '@types/connect-history-api-fallback@1.5.4':
- resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
-
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
@@ -4045,18 +3417,15 @@ packages:
'@types/dom-screen-wake-lock@1.0.3':
resolution: {integrity: sha512-3Iten7X3Zgwvk6kh6/NRdwN7WbZ760YgFCsF5AxDifltUQzW1RaW+WRmcVtgwFzLjaNu64H+0MPJ13yRa8g3Dw==}
+ '@types/eslint@9.6.1':
+ resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
+
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
'@types/execa@0.9.0':
resolution: {integrity: sha512-mgfd93RhzjYBUHHV532turHC2j4l/qxsF/PbfDmprHDEUHmNZGlDn1CEsulGK3AfsPdhkWzZQT/S/k0UGhLGsA==}
- '@types/express-serve-static-core@4.19.5':
- resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==}
-
- '@types/express@4.17.21':
- resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
-
'@types/form-data@0.0.33':
resolution: {integrity: sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw==}
@@ -4069,18 +3438,6 @@ packages:
'@types/hast@2.3.10':
resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==}
- '@types/history@4.7.11':
- resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
-
- '@types/html-minifier-terser@6.1.0':
- resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
-
- '@types/http-errors@2.0.4':
- resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
-
- '@types/http-proxy@1.17.15':
- resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
-
'@types/istanbul-lib-coverage@2.0.6':
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
@@ -4102,9 +3459,6 @@ packages:
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- '@types/keyv@3.1.4':
- resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
-
'@types/lodash.mergewith@4.6.7':
resolution: {integrity: sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==}
@@ -4123,9 +3477,6 @@ packages:
'@types/memory-cache@0.2.6':
resolution: {integrity: sha512-G+9tuwWqss2hvX+T/RNY9CY8qSvuCx8uwnl+tXQWwXtBelXUGcn4j6zknDR+2EfdrgBsMZik0jCKNlDEHIBONQ==}
- '@types/mime@1.3.5':
- resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
-
'@types/minimatch@3.0.5':
resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
@@ -4150,9 +3501,6 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@17.0.45':
- resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
-
'@types/node@22.6.1':
resolution: {integrity: sha512-V48tCfcKb/e6cVUigLAaJDAILdMP0fUW6BidkPK4GpGjXcfbnoHasCZDwz3N3yVt5we2RHm4XTQCpv0KJz9zqw==}
@@ -4171,8 +3519,8 @@ packages:
'@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/parse5@6.0.3':
+ resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
'@types/pbkdf2@3.1.2':
resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==}
@@ -4183,21 +3531,9 @@ packages:
'@types/qs@6.9.16':
resolution: {integrity: sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==}
- '@types/range-parser@1.2.7':
- resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
-
'@types/react-dom@18.3.0':
resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
- '@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==}
-
- '@types/react-router@5.1.20':
- resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
-
'@types/react-table@7.7.20':
resolution: {integrity: sha512-ahMp4pmjVlnExxNwxyaDrFgmKxSbPwU23sGQw2gJK4EhCvnvmib2s/O/+y1dfV57dXOwpr2plfyBol+vEHbi2w==}
@@ -4207,33 +3543,12 @@ packages:
'@types/react@18.3.8':
resolution: {integrity: sha512-syBUrW3/XpnW4WJ41Pft+I+aPoDVbrBVQGEnbD7NijDGlVC+8gV/XKRY+7vMDlfPpbwYt0l1vd/Sj8bJGMbs9Q==}
- '@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.7':
- resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
-
'@types/secp256k1@4.0.6':
resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==}
'@types/semver@7.5.8':
resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
- '@types/send@0.17.4':
- resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
-
- '@types/serve-index@1.9.4':
- resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
-
- '@types/serve-static@1.15.7':
- resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
-
- '@types/sockjs@0.3.36':
- resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
-
'@types/stack-utils@2.0.3':
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
@@ -4255,9 +3570,6 @@ packages:
'@types/ws@7.4.7':
resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==}
- '@types/ws@8.5.12':
- resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==}
-
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@@ -4455,51 +3767,6 @@ packages:
'@walletconnect/window-metadata@1.0.1':
resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==}
- '@webassemblyjs/ast@1.12.1':
- resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
-
- '@webassemblyjs/floating-point-hex-parser@1.11.6':
- resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
-
- '@webassemblyjs/helper-api-error@1.11.6':
- resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
-
- '@webassemblyjs/helper-buffer@1.12.1':
- resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
-
- '@webassemblyjs/helper-numbers@1.11.6':
- resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
-
- '@webassemblyjs/helper-wasm-bytecode@1.11.6':
- resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
-
- '@webassemblyjs/helper-wasm-section@1.12.1':
- resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
-
- '@webassemblyjs/ieee754@1.11.6':
- resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
-
- '@webassemblyjs/leb128@1.11.6':
- resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
-
- '@webassemblyjs/utf8@1.11.6':
- resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
-
- '@webassemblyjs/wasm-edit@1.12.1':
- resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
-
- '@webassemblyjs/wasm-gen@1.12.1':
- resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
-
- '@webassemblyjs/wasm-opt@1.12.1':
- resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
-
- '@webassemblyjs/wasm-parser@1.12.1':
- resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
-
- '@webassemblyjs/wast-printer@1.12.1':
- resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
-
'@whatwg-node/events@0.0.3':
resolution: {integrity: sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==}
@@ -4529,12 +3796,6 @@ packages:
resolution: {integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==}
engines: {node: '>=8'}
- '@xtuc/ieee754@1.2.0':
- resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
-
- '@xtuc/long@4.2.2':
- resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
-
'@zag-js/dom-query@0.16.0':
resolution: {integrity: sha512-Oqhd6+biWyKnhKwFFuZrrf6lxBz2tX2pRQe6grUnYwO6HJ8BcbqZomy2lpOdr+3itlaUqx+Ywj5E5ZZDr/LBfQ==}
@@ -4617,11 +3878,6 @@ packages:
acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
- acorn-import-attributes@1.9.5:
- resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
- peerDependencies:
- acorn: ^8
-
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -4644,10 +3900,6 @@ packages:
add-stream@1.0.0:
resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
- address@1.2.2:
- resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
- engines: {node: '>= 10.0.0'}
-
adm-zip@0.4.16:
resolution: {integrity: sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==}
engines: {node: '>=0.3.0'}
@@ -4675,16 +3927,6 @@ packages:
ajv:
optional: true
- ajv-keywords@3.5.2:
- resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
- peerDependencies:
- ajv: ^6.9.1
-
- ajv-keywords@5.1.0:
- resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
- peerDependencies:
- ajv: ^8.8.2
-
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
@@ -4694,14 +3936,6 @@ packages:
alge@0.8.1:
resolution: {integrity: sha512-kiV9nTt+XIauAXsowVygDxMZLplZxDWt0W8plE/nB32/V2ziM/P/TxDbSVK7FYIUt2Xo16h3/htDh199LNPCKQ==}
- algoliasearch-helper@3.22.5:
- resolution: {integrity: sha512-lWvhdnc+aKOKx8jyA3bsdEgHzm/sglC4cYdMG4xSQyRiPLJVJtH/IVYZG3Hp6PkTEhQqhyVYkeP9z2IlcHJsWw==}
- peerDependencies:
- algoliasearch: '>= 3.1 < 6'
-
- algoliasearch@4.24.0:
- resolution: {integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==}
-
amdefine@1.0.1:
resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==}
engines: {node: '>=0.4.2'}
@@ -4727,11 +3961,6 @@ packages:
ansi-fragments@0.2.1:
resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==}
- ansi-html-community@0.0.8:
- resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
- engines: {'0': node >= 0.8.0}
- hasBin: true
-
ansi-regex@4.1.1:
resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
engines: {node: '>=6'}
@@ -4807,9 +4036,6 @@ packages:
arg@4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
- arg@5.0.2:
- resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
-
argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
@@ -4939,13 +4165,6 @@ packages:
resolution: {integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==}
engines: {node: '>=10.12.0'}
- autoprefixer@10.4.20:
- resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
-
available-typed-arrays@1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
@@ -4957,9 +4176,6 @@ packages:
axios@0.21.4:
resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
- axios@0.25.0:
- resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
-
axios@1.7.7:
resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
@@ -4978,24 +4194,6 @@ packages:
peerDependencies:
'@babel/core': ^7.8.0
- babel-loader@8.4.1:
- resolution: {integrity: sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==}
- engines: {node: '>= 8.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
-
- babel-plugin-apply-mdx-type-prop@1.6.22:
- resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==}
- peerDependencies:
- '@babel/core': ^7.11.6
-
- babel-plugin-dynamic-import-node@2.3.3:
- resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
-
- babel-plugin-extract-import-names@1.6.22:
- resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==}
-
babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
@@ -5008,11 +4206,6 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
- babel-plugin-polyfill-corejs2@0.4.11:
- resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
-
babel-plugin-polyfill-corejs2@0.4.12:
resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==}
peerDependencies:
@@ -5023,11 +4216,6 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.2:
- resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
-
babel-plugin-polyfill-regenerator@0.6.3:
resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
peerDependencies:
@@ -5047,8 +4235,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- bail@1.0.5:
- resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==}
+ bail@2.0.2:
+ resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
@@ -5062,15 +4250,9 @@ packages:
base-x@4.0.0:
resolution: {integrity: sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==}
- base16@1.0.0:
- resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==}
-
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- batch@0.6.1:
- resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
-
better-path-resolve@1.0.0:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
engines: {node: '>=4'}
@@ -5078,9 +4260,6 @@ packages:
bidi-js@1.0.3:
resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
- big.js@5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
-
binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
@@ -5128,12 +4307,6 @@ packages:
resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- bonjour-service@1.2.1:
- resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==}
-
- boolbase@1.0.0:
- resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
-
bowser@2.11.0:
resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
@@ -5141,10 +4314,6 @@ packages:
resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
engines: {node: '>=10'}
- boxen@6.2.1:
- resolution: {integrity: sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -5234,18 +4403,10 @@ packages:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
- bytes@3.0.0:
- resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
- engines: {node: '>= 0.8'}
-
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- cacheable-request@6.1.0:
- resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==}
- engines: {node: '>=8'}
-
call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
@@ -5266,13 +4427,6 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- camel-case@4.1.2:
- resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
-
- camelcase-css@2.0.1:
- resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
- engines: {node: '>= 6'}
-
camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
@@ -5284,9 +4438,6 @@ packages:
camelize@1.0.1:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
- caniuse-api@3.0.0:
- resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
-
caniuse-lite@1.0.30001663:
resolution: {integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==}
@@ -5312,8 +4463,8 @@ packages:
resolution: {integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==}
hasBin: true
- ccount@1.1.0:
- resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
+ ccount@2.0.1:
+ resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
chai-as-promised@7.1.2:
resolution: {integrity: sha512-aBDHZxRzYnUYuIAIPBH2s511DjlKPzXNlXSGFC8CwmroWQLfrW0LtE1nK3MAwwNhJPa9raEjNCmRoFpG0Hurdw==}
@@ -5348,14 +4499,14 @@ packages:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
- character-entities-legacy@1.1.4:
- resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
+ character-entities-html4@2.1.0:
+ resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
- character-entities@1.2.4:
- resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
+ character-entities-legacy@3.0.0:
+ resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
- character-reference-invalid@1.1.4:
- resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
+ character-entities@2.0.2:
+ resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
@@ -5366,13 +4517,6 @@ packages:
check-error@1.0.3:
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
- cheerio-select@2.1.0:
- resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
-
- cheerio@1.0.0:
- resolution: {integrity: sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==}
- engines: {node: '>=18.17'}
-
chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
@@ -5397,10 +4541,6 @@ packages:
engines: {node: '>=12.13.0'}
hasBin: true
- chrome-trace-event@1.0.4:
- resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
- engines: {node: '>=6.0'}
-
chromium-edge-launcher@0.2.0:
resolution: {integrity: sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==}
@@ -5420,10 +4560,6 @@ packages:
cjs-module-lexer@1.4.1:
resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
- clean-css@5.3.3:
- resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
- engines: {node: '>= 10.0'}
-
clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
@@ -5436,10 +4572,6 @@ packages:
resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
engines: {node: '>=6'}
- cli-boxes@3.0.0:
- resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
- engines: {node: '>=10'}
-
cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
@@ -5501,9 +4633,6 @@ packages:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
- clone-response@1.0.3:
- resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
-
clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
@@ -5524,9 +4653,6 @@ packages:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- collapse-white-space@1.0.6:
- resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==}
-
collect-v8-coverage@1.0.2:
resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
@@ -5549,9 +4675,6 @@ packages:
color2k@2.0.3:
resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==}
- colord@2.9.3:
- resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
-
colorette@1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
@@ -5562,16 +4685,12 @@ packages:
resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
engines: {node: '>=0.1.90'}
- combine-promises@1.2.0:
- resolution: {integrity: sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==}
- engines: {node: '>=10'}
-
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
- comma-separated-tokens@1.0.8:
- resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
+ comma-separated-tokens@2.0.3:
+ resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
command-exists@1.2.9:
resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
@@ -5587,14 +4706,6 @@ packages:
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- commander@5.1.0:
- resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
- engines: {node: '>= 6'}
-
- commander@7.2.0:
- resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
- engines: {node: '>= 10'}
-
commander@8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
@@ -5617,10 +4728,6 @@ packages:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
- compression@1.7.4:
- resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
- engines: {node: '>= 0.8.0'}
-
compression@1.7.5:
resolution: {integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==}
engines: {node: '>= 0.8.0'}
@@ -5645,32 +4752,17 @@ packages:
config-maker@0.0.6:
resolution: {integrity: sha512-rZHlWzwZCDX4lUOTORNcCTvl0LqYMXbB+mLqdIvwqv5bF0EC1b0nOydVlPQS3b2iTzBOcZRuOYhDjqix0IjWTw==}
- configstore@5.0.1:
- resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==}
- engines: {node: '>=8'}
-
confusing-browser-globals@1.0.11:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
- connect-history-api-fallback@2.0.0:
- resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
- engines: {node: '>=0.8'}
-
connect@3.7.0:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
engines: {node: '>= 0.10.0'}
- consola@2.15.3:
- resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
-
consola@3.2.3:
resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
engines: {node: ^14.18.0 || >=16.10.0}
- content-disposition@0.5.2:
- resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==}
- engines: {node: '>= 0.6'}
-
content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
@@ -5766,28 +4858,12 @@ packages:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
- copy-text-to-clipboard@3.2.0:
- resolution: {integrity: sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==}
- engines: {node: '>=12'}
-
copy-to-clipboard@3.3.3:
resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
- copy-webpack-plugin@11.0.0:
- resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
- engines: {node: '>= 14.15.0'}
- peerDependencies:
- webpack: ^5.1.0
-
core-js-compat@3.38.1:
resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
- core-js-pure@3.38.1:
- resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
-
- core-js@3.38.1:
- resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==}
-
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -5795,10 +4871,6 @@ packages:
resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
engines: {node: '>=4'}
- cosmiconfig@6.0.0:
- resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
- engines: {node: '>=8'}
-
cosmiconfig@7.0.1:
resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
engines: {node: '>=10'}
@@ -5880,10 +4952,6 @@ packages:
crypto-js@4.2.0:
resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==}
- crypto-random-string@2.0.0:
- resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
- engines: {node: '>=8'}
-
css-box-model@1.2.1:
resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==}
@@ -5891,61 +4959,8 @@ packages:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
- css-declaration-sorter@6.4.1:
- resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==}
- engines: {node: ^10 || ^12 || >=14}
- peerDependencies:
- postcss: ^8.0.9
-
- css-loader@6.11.0:
- resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- '@rspack/core': 0.x || 1.x
- webpack: ^5.0.0
- peerDependenciesMeta:
- '@rspack/core':
- optional: true
- webpack:
- optional: true
-
- css-minimizer-webpack-plugin@4.2.2:
- resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==}
- engines: {node: '>= 14.15.0'}
- peerDependencies:
- '@parcel/css': '*'
- '@swc/css': '*'
- clean-css: '*'
- csso: '*'
- esbuild: '*'
- lightningcss: '*'
- webpack: ^5.0.0
- peerDependenciesMeta:
- '@parcel/css':
- optional: true
- '@swc/css':
- optional: true
- clean-css:
- optional: true
- csso:
- optional: true
- esbuild:
- optional: true
- lightningcss:
- optional: true
-
- css-select@4.3.0:
- resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
-
- css-select@5.1.0:
- resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
-
- css-to-react-native@3.2.0:
- resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
-
- css-tree@1.1.3:
- resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
- engines: {node: '>=8.0.0'}
+ css-to-react-native@3.2.0:
+ resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
@@ -5959,34 +4974,6 @@ packages:
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-advanced@5.3.10:
- resolution: {integrity: sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- cssnano-preset-default@5.2.14:
- resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- cssnano-utils@3.1.0:
- resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- cssnano@5.1.15:
- resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- csso@4.2.0:
- resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
- engines: {node: '>=8.0.0'}
-
cssom@0.3.8:
resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
@@ -6040,9 +5027,6 @@ packages:
resolution: {integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==}
engines: {node: '>=10'}
- debounce@1.2.1:
- resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
-
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
@@ -6088,14 +5072,13 @@ packages:
decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
+ decode-named-character-reference@1.0.2:
+ resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
+
decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
- decompress-response@3.3.0:
- resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
- engines: {node: '>=4'}
-
dedent@1.5.3:
resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
peerDependencies:
@@ -6112,10 +5095,6 @@ packages:
resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
engines: {node: '>= 0.4'}
- deep-extend@0.6.0:
- resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
- engines: {node: '>=4.0.0'}
-
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
@@ -6126,16 +5105,9 @@ packages:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- default-gateway@6.0.3:
- resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
- engines: {node: '>= 10'}
-
defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
- defer-to-connect@1.1.3:
- resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==}
-
define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
@@ -6151,10 +5123,6 @@ packages:
defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
- del@6.1.1:
- resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
- engines: {node: '>=10'}
-
delay@5.0.0:
resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==}
engines: {node: '>=10'}
@@ -6166,10 +5134,6 @@ packages:
denodeify@1.2.1:
resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
- depd@1.1.2:
- resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
- engines: {node: '>= 0.6'}
-
depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
@@ -6185,9 +5149,6 @@ packages:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- detab@2.0.4:
- resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==}
-
detect-browser@5.3.0:
resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==}
@@ -6207,19 +5168,6 @@ packages:
detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
- detect-node@2.1.0:
- resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
-
- detect-port-alt@1.1.6:
- resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==}
- engines: {node: '>= 4.2.1'}
- hasBin: true
-
- detect-port@1.6.1:
- resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==}
- engines: {node: '>= 4.0.0'}
- hasBin: true
-
dfa@1.2.0:
resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==}
@@ -6248,10 +5196,6 @@ packages:
dns-over-http-resolver@1.2.3:
resolution: {integrity: sha512-miDiVSI6KSNbi4SVifzO/reD8rMnxgrlnkrlkugOLQpWQTe2qMdHsZp5DmfKjxNE+/T3VAAYLQUZMv9SMr6+AA==}
- dns-packet@5.6.1:
- resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
- engines: {node: '>=6'}
-
docker-compose@0.23.19:
resolution: {integrity: sha512-v5vNLIdUqwj4my80wxFDkNH+4S85zsRuH29SO7dCWVWPCMt/ohZBsGN6g6KXWifT0pzQ7uOxqEKCYCDPJ8Vz4g==}
engines: {node: '>= 6.0.0'}
@@ -6278,40 +5222,11 @@ packages:
dom-accessibility-api@0.6.3:
resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==}
- dom-converter@0.2.0:
- resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
-
- dom-serializer@1.4.1:
- resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
-
- dom-serializer@2.0.0:
- resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
-
- domelementtype@2.3.0:
- resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
-
domexception@4.0.0:
resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
engines: {node: '>=12'}
deprecated: Use your platform's native DOMException instead
- domhandler@4.3.1:
- resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
- engines: {node: '>= 4'}
-
- domhandler@5.0.3:
- resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
- engines: {node: '>= 4'}
-
- domutils@2.8.0:
- resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
-
- domutils@3.1.0:
- resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
-
- dot-case@3.0.4:
- resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
-
dot-prop@5.3.0:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
@@ -6324,12 +5239,6 @@ packages:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
- duplexer3@0.1.5:
- resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
-
- duplexer@0.1.2:
- resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
-
duplexify@4.1.3:
resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==}
@@ -6360,9 +5269,6 @@ packages:
resolution: {integrity: sha512-M9qw6oUILGVrcENMSRRefE1MbHPIz0h79EKIeJWK9v563aT9Qkh8aEHPO1H5vi970wPirNY+jO9OpFoLiMsMGA==}
engines: {node: '>=6'}
- electron-to-chromium@1.5.28:
- resolution: {integrity: sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==}
-
electron-to-chromium@1.5.67:
resolution: {integrity: sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==}
@@ -6385,13 +5291,6 @@ packages:
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- emojis-list@3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
-
- emoticon@3.2.0:
- resolution: {integrity: sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==}
-
encode-utf8@1.0.3:
resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==}
@@ -6403,9 +5302,6 @@ packages:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
- encoding-sniffer@0.2.0:
- resolution: {integrity: sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==}
-
encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
@@ -6431,9 +5327,6 @@ packages:
resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
engines: {node: '>=8.6'}
- entities@2.2.0:
- resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
-
entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
@@ -6483,9 +5376,6 @@ packages:
resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.5.4:
- resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
-
es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
@@ -6511,10 +5401,6 @@ packages:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
- escape-goat@2.1.1:
- resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==}
- engines: {node: '>=8'}
-
escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
@@ -6738,10 +5624,6 @@ packages:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- eta@2.2.0:
- resolution: {integrity: sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==}
- engines: {node: '>=6.0.0'}
-
etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
@@ -6795,10 +5677,6 @@ packages:
resolution: {integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==}
engines: {node: '>=6.5.0', npm: '>=3'}
- eval@0.1.8:
- resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
- engines: {node: '>= 0.8'}
-
event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
@@ -6806,9 +5684,6 @@ packages:
eventemitter2@6.4.9:
resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==}
- eventemitter3@4.0.7:
- resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
-
eventemitter3@5.0.1:
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
@@ -6928,26 +5803,9 @@ packages:
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
- faye-websocket@0.11.4:
- resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
- engines: {node: '>=0.8.0'}
-
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
- fbemitter@3.0.0:
- resolution: {integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==}
-
- fbjs-css-vars@1.0.2:
- resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
-
- fbjs@3.0.5:
- resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==}
-
- feed@4.2.2:
- resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==}
- engines: {node: '>=0.4.0'}
-
fetch-blob@3.2.0:
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
@@ -6960,19 +5818,9 @@ packages:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
- file-loader@6.2.0:
- resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
-
filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
- filesize@8.0.7:
- resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==}
- engines: {node: '>= 0.4.0'}
-
fill-range@7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
@@ -6993,10 +5841,6 @@ packages:
resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
engines: {node: '>=6'}
- find-cache-dir@3.3.2:
- resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
- engines: {node: '>=8'}
-
find-root@1.1.0:
resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
@@ -7038,11 +5882,6 @@ packages:
resolution: {integrity: sha512-7QHV2m2mIMh6yIMaAPOVbyNEW77IARwO69d4DgvfDCjuORiykdMLf7XBjF7Zeov7Cpe1OXJ8sB6/aaCE3xuRBw==}
engines: {node: '>=0.4.0'}
- flux@4.0.4:
- resolution: {integrity: sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==}
- peerDependencies:
- react: ^15.0.2 || ^16.0.0 || ^17.0.0
-
focus-lock@1.3.5:
resolution: {integrity: sha512-QFaHbhv9WPUeLYBDe/PAuLKJ4Dd9OPvKs9xZBr3yLXnUrDNaVXKu2baDBXe3naPY30hgHYSsf2JW4jzas2mDEQ==}
engines: {node: '>=10'}
@@ -7069,20 +5908,6 @@ packages:
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==}
- engines: {node: '>=10', yarn: '>=1.0.0'}
- peerDependencies:
- eslint: '>= 6'
- typescript: '>= 2.7'
- vue-template-compiler: '*'
- webpack: '>= 4'
- peerDependenciesMeta:
- eslint:
- optional: true
- vue-template-compiler:
- optional: true
-
form-data@2.5.1:
resolution: {integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==}
engines: {node: '>= 0.12'}
@@ -7106,9 +5931,6 @@ packages:
fp-ts@1.19.3:
resolution: {integrity: sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==}
- fraction.js@4.3.7:
- resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
-
framer-motion@11.5.6:
resolution: {integrity: sha512-JMwUpAxv/DWgul9vPgX0ElKn0G66sUc6O9tOXsYwn3zxwvhxFljSXC0XT2QCzuTYBshwC8nyDAa1SYcV0Ldbhw==}
peerDependencies:
@@ -7156,9 +5978,6 @@ packages:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
- fs-monkey@1.0.6:
- resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
-
fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -7207,9 +6026,6 @@ packages:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
- get-own-enumerable-property-symbols@3.0.2:
- resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
-
get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
@@ -7225,10 +6041,6 @@ packages:
resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
engines: {node: '>=6'}
- get-stream@5.2.0:
- resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
- engines: {node: '>=8'}
-
get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
@@ -7258,9 +6070,6 @@ packages:
engines: {node: '>=18'}
hasBin: true
- github-slugger@1.5.0:
- resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==}
-
glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
@@ -7269,9 +6078,6 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- glob-to-regexp@0.4.1:
- resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
-
glob@10.3.10:
resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -7302,10 +6108,6 @@ packages:
resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
engines: {node: '>=16 || 14 >=14.17'}
- global-dirs@3.0.1:
- resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
- engines: {node: '>=10'}
-
global-modules@2.0.0:
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
engines: {node: '>=6'}
@@ -7334,10 +6136,6 @@ packages:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@13.2.2:
- resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
globby@14.0.2:
resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
@@ -7349,10 +6147,6 @@ packages:
gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
- got@9.6.0:
- resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==}
- engines: {node: '>=8.6'}
-
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -7425,16 +6219,9 @@ packages:
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
engines: {node: '>=6.0'}
- gzip-size@6.0.0:
- resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
- engines: {node: '>=10'}
-
h3@1.12.0:
resolution: {integrity: sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==}
- handle-thing@2.0.1:
- resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
-
handlebars@4.7.8:
resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
engines: {node: '>=0.4.7'}
@@ -7496,10 +6283,6 @@ packages:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
- has-yarn@2.1.0:
- resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==}
- engines: {node: '>=8'}
-
hash-base@3.1.0:
resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
engines: {node: '>=4'}
@@ -7511,23 +6294,29 @@ packages:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
- hast-to-hyperscript@9.0.1:
- resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==}
+ hast-util-from-parse5@7.1.2:
+ resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==}
- hast-util-from-parse5@6.0.1:
- resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==}
+ hast-util-parse-selector@3.1.1:
+ resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==}
- hast-util-parse-selector@2.2.5:
- resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
+ hast-util-raw@7.2.3:
+ resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==}
- hast-util-raw@6.0.1:
- resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==}
+ hast-util-sanitize@4.1.0:
+ resolution: {integrity: sha512-Hd9tU0ltknMGRDv+d6Ro/4XKzBqQnP/EZrpiTbpFYfXv/uOhWeKc+2uajcbEvAEH98VZd7eII2PiXm13RihnLw==}
- hast-util-to-parse5@6.0.0:
- resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==}
+ hast-util-to-html@8.0.4:
+ resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==}
- hastscript@6.0.0:
- resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
+ hast-util-to-parse5@7.1.0:
+ resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==}
+
+ hast-util-whitespace@2.0.1:
+ resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==}
+
+ hastscript@7.2.0:
+ resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==}
he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
@@ -7551,9 +6340,6 @@ packages:
hey-listen@1.0.8:
resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
- history@4.10.1:
- resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
-
hmac-drbg@1.0.1:
resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
@@ -7564,9 +6350,6 @@ packages:
resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
engines: {node: ^16.14.0 || >=18.0.0}
- hpack.js@2.1.6:
- resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
-
hsl-to-hex@1.0.0:
resolution: {integrity: sha512-K6GVpucS5wFf44X0h2bLVRDsycgJmf9FF2elg+CrqD8GcFU8c6vYhgXn8NjUkFCwj+xDFb70qgLbTUm6sxwPmA==}
@@ -7577,80 +6360,24 @@ packages:
resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
engines: {node: '>=12'}
- 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==}
- engines: {node: '>=12'}
- hasBin: true
-
- html-tags@3.3.1:
- resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
- engines: {node: '>=8'}
-
- html-void-elements@1.0.5:
- resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==}
-
- html-webpack-plugin@5.6.0:
- resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==}
- engines: {node: '>=10.13.0'}
- peerDependencies:
- '@rspack/core': 0.x || 1.x
- webpack: ^5.20.0
- peerDependenciesMeta:
- '@rspack/core':
- optional: true
- webpack:
- optional: true
-
- htmlparser2@6.1.0:
- resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
-
- htmlparser2@9.1.0:
- resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==}
+ html-void-elements@2.0.1:
+ resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
http-basic@8.1.3:
resolution: {integrity: sha512-/EcDMwJZh3mABI2NhGfHOGOeOZITqfkEO4p/xK+l3NpyncIHUQBoMvCSF/b5GqvKtySC2srL/GGG3+EtlqlmCw==}
engines: {node: '>=6.0.0'}
- http-cache-semantics@4.1.1:
- resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
-
- http-deceiver@1.2.7:
- resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
-
- http-errors@1.6.3:
- resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
- engines: {node: '>= 0.6'}
-
http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
- http-parser-js@0.5.8:
- resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
-
http-proxy-agent@5.0.0:
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
engines: {node: '>= 6'}
- http-proxy-middleware@2.0.6:
- resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@types/express': ^4.17.13
- peerDependenciesMeta:
- '@types/express':
- optional: true
-
- http-proxy@1.18.1:
- resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
- engines: {node: '>=8.0.0'}
-
http-response-object@3.0.2:
resolution: {integrity: sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==}
@@ -7703,12 +6430,6 @@ packages:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
- icss-utils@5.1.0:
- resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
idb-keyval@6.2.1:
resolution: {integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==}
@@ -7727,9 +6448,6 @@ packages:
immer@10.0.2:
resolution: {integrity: sha512-Rx3CqeqQ19sxUtYV9CU911Vhy8/721wRFnJv3REVGWUmoAcIwzifTsdmJte/MV+0/XpM35LZdQMBGkRIoLPwQA==}
- immer@9.0.21:
- resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
-
immutable@4.2.1:
resolution: {integrity: sha512-7WYV7Q5BTs0nlQm7tl92rDYYoyELLKHoDMBKhrxEoiV4mrfVdRz8hzPiYOzH7yWjzoVEamxRuAqhxL2PLRwZYQ==}
@@ -7744,10 +6462,6 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- import-lazy@2.1.0:
- resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==}
- engines: {node: '>=4'}
-
import-local@3.2.0:
resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
engines: {node: '>=8'}
@@ -7765,30 +6479,16 @@ packages:
resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==}
engines: {node: '>=18'}
- infima@0.2.0-alpha.43:
- resolution: {integrity: sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==}
- engines: {node: '>=12'}
-
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==}
-
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- ini@2.0.0:
- resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
- engines: {node: '>=10'}
-
- inline-style-parser@0.1.1:
- resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
-
inquirer@9.3.6:
resolution: {integrity: sha512-riK/iQB2ctwkpWYgjjWIRv3MBLt2gzb2Sj0JNQNbyTXgyXsLWcDPJ5WS5ZDTCx7BRFnJsARtYh+58fjP5M2Y0Q==}
engines: {node: '>=18'}
@@ -7821,10 +6521,6 @@ packages:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- ipaddr.js@2.2.0:
- resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
- engines: {node: '>= 10'}
-
ipfs-core-types@0.9.0:
resolution: {integrity: sha512-VJ8vJSHvI1Zm7/SxsZo03T+zzpsg8pkgiIi5hfwSJlsrJ1E2v68QPlnLshGHUSYw89Oxq0IbETYl2pGTFHTWfg==}
deprecated: js-IPFS has been deprecated in favour of Helia - please see https://github.com/ipfs/js-ipfs/issues/4336 for details
@@ -7848,12 +6544,6 @@ packages:
iron-webcrypto@1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
- is-alphabetical@1.0.4:
- resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
-
- is-alphanumerical@1.0.4:
- resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
-
is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
@@ -7894,10 +6584,6 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- is-ci@2.0.0:
- resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
- hasBin: true
-
is-core-module@2.15.1:
resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
@@ -7910,9 +6596,6 @@ packages:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
- is-decimal@1.0.4:
- resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
-
is-directory@0.3.1:
resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
engines: {node: '>=0.10.0'}
@@ -7973,18 +6656,11 @@ packages:
resolution: {integrity: sha1-fY035q135dEnFIkTxXPggtd39VQ=}
engines: {node: '>=6.5.0', npm: '>=3'}
- is-hexadecimal@1.0.4:
- resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
-
is-inside-container@1.0.0:
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
engines: {node: '>=14.16'}
hasBin: true
- is-installed-globally@0.4.0:
- resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
- engines: {node: '>=10'}
-
is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
@@ -8005,10 +6681,6 @@ packages:
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
- is-npm@5.0.0:
- resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==}
- engines: {node: '>=10'}
-
is-number-object@1.0.7:
resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
@@ -8017,18 +6689,10 @@ packages:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- is-obj@1.0.1:
- resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
- engines: {node: '>=0.10.0'}
-
is-obj@2.0.0:
resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
engines: {node: '>=8'}
- is-path-cwd@2.2.0:
- resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
- engines: {node: '>=6'}
-
is-path-inside@3.0.3:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
@@ -8037,9 +6701,9 @@ packages:
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
engines: {node: '>=8'}
- is-plain-obj@3.0.0:
- resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
- engines: {node: '>=10'}
+ is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
@@ -8052,14 +6716,6 @@ packages:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
- is-regexp@1.0.0:
- resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
- engines: {node: '>=0.10.0'}
-
- is-root@2.1.0:
- resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==}
- engines: {node: '>=6'}
-
is-set@2.0.3:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
@@ -8096,9 +6752,6 @@ packages:
resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
- is-typedarray@1.0.0:
- resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
-
is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
@@ -8125,16 +6778,10 @@ packages:
resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
engines: {node: '>= 0.4'}
- is-whitespace-character@1.0.4:
- resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==}
-
is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
- is-word-character@1.0.4:
- resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==}
-
is-wsl@1.1.0:
resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
engines: {node: '>=4'}
@@ -8147,9 +6794,6 @@ packages:
resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
engines: {node: '>=16'}
- is-yarn-global@0.3.0:
- resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==}
-
is64bit@2.0.0:
resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==}
engines: {node: '>=18'}
@@ -8381,10 +7025,6 @@ packages:
resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jest-worker@27.5.1:
- resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
- engines: {node: '>= 10.13.0'}
-
jest-worker@29.7.0:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -8441,10 +7081,6 @@ packages:
canvas:
optional: true
- jsesc@0.5.0:
- resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
- hasBin: true
-
jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
@@ -8455,9 +7091,6 @@ packages:
engines: {node: '>=6'}
hasBin: true
- json-buffer@3.0.0:
- resolution: {integrity: sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=}
-
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
@@ -8532,9 +7165,6 @@ packages:
keypress@0.2.1:
resolution: {integrity: sha512-HjorDJFNhnM4SicvaUXac0X77NiskggxJdesG72+O5zBKpSqKFCrqmndKVqpu3pFqkla0St6uGk8Ju0sCurrmg==}
- keyv@3.1.0:
- resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==}
-
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -8549,6 +7179,10 @@ packages:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
+ kleur@4.1.5:
+ resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
+ engines: {node: '>=6'}
+
language-subtag-registry@0.3.23:
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
@@ -8556,13 +7190,6 @@ packages:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
engines: {node: '>=0.10'}
- latest-version@5.1.0:
- resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==}
- engines: {node: '>=8'}
-
- launch-editor@2.9.1:
- resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
-
lazystream@1.0.1:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
@@ -8582,10 +7209,6 @@ packages:
lighthouse-logger@1.4.2:
resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
- lilconfig@2.1.0:
- resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
- engines: {node: '>=10'}
-
lilconfig@3.1.2:
resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
engines: {node: '>=14'}
@@ -8615,18 +7238,6 @@ packages:
lit@2.8.0:
resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==}
- loader-runner@4.3.0:
- resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
- engines: {node: '>=6.11.5'}
-
- loader-utils@2.0.4:
- resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
- engines: {node: '>=8.9.0'}
-
- loader-utils@3.3.1:
- resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
- engines: {node: '>= 12.13.0'}
-
locate-path@2.0.0:
resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
engines: {node: '>=4'}
@@ -8649,9 +7260,6 @@ packages:
lodash.clonedeep@4.5.0:
resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
- lodash.curry@4.1.1:
- resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==}
-
lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
@@ -8664,9 +7272,6 @@ packages:
lodash.flatten@4.4.0:
resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
- lodash.flow@3.5.0:
- resolution: {integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==}
-
lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
@@ -8730,9 +7335,6 @@ packages:
lodash.union@4.6.0:
resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
- lodash.uniq@4.5.0:
- resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
-
lodash.uppercase@4.3.0:
resolution: {integrity: sha512-+Nbnxkj7s8K5U8z6KnEYPGUOGp3woZbB7Ecs7v3LkkjLQSm2kP9SKIILitN1ktn2mB/tmM9oSlku06I+/lH7QA==}
@@ -8772,6 +7374,9 @@ packages:
long@5.2.3:
resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==}
+ longest-streak@3.1.0:
+ resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
+
loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
@@ -8779,17 +7384,6 @@ packages:
loupe@2.3.7:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
- lower-case@2.0.2:
- resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
-
- lowercase-keys@1.0.1:
- resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
- engines: {node: '>=0.10.0'}
-
- lowercase-keys@2.0.0:
- resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
- engines: {node: '>=8'}
-
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
@@ -8811,10 +7405,6 @@ packages:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
- make-dir@3.1.0:
- resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
- engines: {node: '>=8'}
-
make-dir@4.0.0:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
@@ -8825,35 +7415,37 @@ packages:
makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
- markdown-escapes@1.0.4:
- resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==}
-
markdown-table@2.0.0:
resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==}
+ marked@4.3.0:
+ resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==}
+ engines: {node: '>= 12'}
+ hasBin: true
+
marky@1.2.5:
resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==}
md5.js@1.3.5:
resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
- mdast-squeeze-paragraphs@4.0.0:
- resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==}
+ mdast-util-definitions@5.1.2:
+ resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
- mdast-util-definitions@4.0.0:
- resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==}
+ mdast-util-from-markdown@1.3.1:
+ resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
- mdast-util-to-hast@10.0.1:
- resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==}
+ mdast-util-phrasing@3.0.1:
+ resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
- mdast-util-to-string@2.0.0:
- resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
+ mdast-util-to-hast@12.3.0:
+ resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
- mdn-data@2.0.14:
- resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
+ mdast-util-to-markdown@1.5.0:
+ resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
- mdurl@1.0.1:
- resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
+ mdast-util-to-string@3.2.0:
+ resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
media-engine@1.0.3:
resolution: {integrity: sha512-aa5tG6sDoK+k70B9iEX1NeyfT8ObCKhNDs6lJVpwF6r8vhUfuKMslIcirq6HIUYuuUYLefcEQOn9bSBOvawtwg==}
@@ -8865,10 +7457,6 @@ packages:
resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
engines: {node: '>= 0.6'}
- memfs@3.5.3:
- resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
- engines: {node: '>= 4.0.0'}
-
memoize-one@5.2.1:
resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
@@ -8962,14 +7550,73 @@ packages:
micro-ftch@0.3.1:
resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==}
+ micromark-core-commonmark@1.1.0:
+ resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==}
+
+ micromark-factory-destination@1.1.0:
+ resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
+
+ micromark-factory-label@1.1.0:
+ resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
+
+ micromark-factory-space@1.1.0:
+ resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
+
+ micromark-factory-title@1.1.0:
+ resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
+
+ micromark-factory-whitespace@1.1.0:
+ resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
+
+ micromark-util-character@1.2.0:
+ resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
+
+ micromark-util-chunked@1.1.0:
+ resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
+
+ micromark-util-classify-character@1.1.0:
+ resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
+
+ micromark-util-combine-extensions@1.1.0:
+ resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
+
+ micromark-util-decode-numeric-character-reference@1.1.0:
+ resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
+
+ micromark-util-decode-string@1.1.0:
+ resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
+
+ micromark-util-encode@1.1.0:
+ resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
+
+ micromark-util-html-tag-name@1.2.0:
+ resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
+
+ micromark-util-normalize-identifier@1.1.0:
+ resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
+
+ micromark-util-resolve-all@1.1.0:
+ resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
+
+ micromark-util-sanitize-uri@1.2.0:
+ resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
+
+ micromark-util-subtokenize@1.1.0:
+ resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
+
+ micromark-util-symbol@1.1.0:
+ resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
+
+ micromark-util-types@1.1.0:
+ resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
+
+ micromark@3.2.0:
+ resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
+
micromatch@4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
- mime-db@1.33.0:
- resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==}
- engines: {node: '>= 0.6'}
-
mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
@@ -8978,10 +7625,6 @@ packages:
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'}
-
mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
@@ -9017,20 +7660,10 @@ packages:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
- mimic-response@1.0.1:
- resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
- engines: {node: '>=4'}
-
min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- mini-css-extract-plugin@2.9.1:
- resolution: {integrity: sha512-+Vyi+GCCOHnrJ2VPS+6aPoXN2k2jgUzDRhTFLjjTBn23qyXJXkjUWQgTL+mXpF5/A8ixLdCc6kWsoeOjKGejKQ==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
-
minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
@@ -9113,10 +7746,6 @@ packages:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
- mrmime@2.0.0:
- resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
- engines: {node: '>=10'}
-
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -9134,10 +7763,6 @@ packages:
resolution: {integrity: sha512-G5upNcGzEGuTHkzxezPrrD6CaIHR9uo+7MwqhNVcXTs33IInon4y7nMiGxl2CY5hG7chvYQUQhz5V52/Qe3cbg==}
deprecated: This module is deprecated, please upgrade to @multiformats/multiaddr
- multicast-dns@7.2.5:
- resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
- hasBin: true
-
multiformats@9.9.0:
resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==}
@@ -9207,9 +7832,6 @@ packages:
nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- no-case@3.0.4:
- resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
-
nocache@3.0.4:
resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==}
engines: {node: '>=12.0.0'}
@@ -9287,21 +7909,9 @@ packages:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- normalize-range@0.1.2:
- resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
- engines: {node: '>=0.10.0'}
-
normalize-svg-path@1.1.0:
resolution: {integrity: sha512-r9KHKG2UUeB5LoTouwDzBy2VxXlHsiM6fyLQvnJa0S5hrhzqElH/CH7TUGhT1fVvIYBIKf3OpY4YJ4CK+iaqHg==}
- normalize-url@4.5.1:
- resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==}
- engines: {node: '>=8'}
-
- normalize-url@6.1.0:
- resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
- engines: {node: '>=10'}
-
npm-package-arg@11.0.3:
resolution: {integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -9318,12 +7928,6 @@ packages:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- nprogress@0.2.0:
- resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
-
- nth-check@2.1.1:
- resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
-
nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
@@ -9384,9 +7988,6 @@ packages:
obliterator@2.0.4:
resolution: {integrity: sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==}
- obuf@1.1.2:
- resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
-
ofetch@1.4.0:
resolution: {integrity: sha512-MuHgsEhU6zGeX+EMh+8mSMrYTnsqJQQrpM00Q6QHMKNqQ0bKy0B43tk8tL1wg+CnsSTy1kg4Ir2T5Ig6rD+dfQ==}
@@ -9439,10 +8040,6 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
- opener@1.5.2:
- resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
- hasBin: true
-
optimism@0.18.0:
resolution: {integrity: sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==}
@@ -9480,10 +8077,6 @@ packages:
outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
- p-cancelable@1.1.0:
- resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==}
- engines: {node: '>=6'}
-
p-defer@3.0.0:
resolution: {integrity: sha512-ugZxsxmtTln604yeYd29EGrNhazN2lywetzpKhfmQjW/VJmhpDmWbiX+h0zL8V91R0UXkhb3KtPmyq9PZw3aYw==}
engines: {node: '>=8'}
@@ -9535,10 +8128,6 @@ packages:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
- p-retry@4.6.2:
- resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
- engines: {node: '>=8'}
-
p-try@1.0.0:
resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
engines: {node: '>=4'}
@@ -9550,10 +8139,6 @@ packages:
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'}
-
package-manager-detector@0.2.5:
resolution: {integrity: sha512-3dS7y28uua+UDbRCLBqltMBrbI+A5U2mI9YuxHRxIWYmLj3DwntEBmERYzIAQ4DMeuCUOBSak7dBHHoXKpOTYQ==}
@@ -9563,9 +8148,6 @@ packages:
pako@1.0.11:
resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
- param-case@3.0.4:
- resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
-
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -9576,9 +8158,6 @@ packages:
parse-duration@1.1.0:
resolution: {integrity: sha512-z6t9dvSJYaPoQq7quMzdEagSFtpGu+utzHqqxmpVWNNZRIXnvqyCvn9XsTdh7c/w0Bqmdz3RB3YnRaKtpRtEXQ==}
- parse-entities@2.0.0:
- resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
-
parse-json@4.0.0:
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
engines: {node: '>=4'}
@@ -9591,18 +8170,9 @@ packages:
resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==}
engines: {node: '>=18'}
- parse-numeric-range@1.3.0:
- resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==}
-
parse-svg-path@0.1.2:
resolution: {integrity: sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==}
- parse5-htmlparser2-tree-adapter@7.0.0:
- resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
-
- parse5-parser-stream@7.1.2:
- resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
-
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
@@ -9613,9 +8183,6 @@ packages:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- pascal-case@3.1.2:
- resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
-
password-prompt@1.1.3:
resolution: {integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==}
@@ -9631,9 +8198,6 @@ packages:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- path-is-inside@1.0.2:
- resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
-
path-key@2.0.1:
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
engines: {node: '>=4'}
@@ -9656,12 +8220,6 @@ packages:
path-to-regexp@0.1.10:
resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
- path-to-regexp@1.9.0:
- resolution: {integrity: sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==}
-
- path-to-regexp@2.2.1:
- resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==}
-
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
@@ -9755,235 +8313,9 @@ packages:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
- postcss-calc@8.2.4:
- resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
- peerDependencies:
- postcss: ^8.2.2
-
- postcss-colormin@5.3.1:
- resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-convert-values@5.1.3:
- resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-discard-comments@5.1.2:
- resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-discard-duplicates@5.1.0:
- resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-discard-empty@5.1.1:
- resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-discard-overridden@5.1.0:
- resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-discard-unused@5.1.0:
- resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-loader@7.3.4:
- resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==}
- engines: {node: '>= 14.15.0'}
- peerDependencies:
- postcss: ^7.0.0 || ^8.0.1
- webpack: ^5.0.0
-
- postcss-merge-idents@5.1.1:
- resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-merge-longhand@5.1.7:
- resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-merge-rules@5.1.4:
- resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-minify-font-values@5.1.0:
- resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-minify-gradients@5.1.1:
- resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-minify-params@5.1.4:
- resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-minify-selectors@5.2.1:
- resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- 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-local-by-default@4.0.5:
- resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-modules-scope@3.2.0:
- resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-modules-values@4.0.0:
- resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-normalize-charset@5.1.0:
- resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-normalize-display-values@5.1.0:
- resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-normalize-positions@5.1.1:
- resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-normalize-repeat-style@5.1.1:
- resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-normalize-string@5.1.0:
- resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-normalize-timing-functions@5.1.0:
- resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-normalize-unicode@5.1.1:
- resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-normalize-url@5.1.0:
- resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-normalize-whitespace@5.1.1:
- resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-ordered-values@5.1.3:
- resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-reduce-idents@5.2.0:
- resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-reduce-initial@5.1.2:
- resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-reduce-transforms@5.1.0:
- resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-selector-parser@6.1.2:
- resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
- engines: {node: '>=4'}
-
- postcss-sort-media-queries@4.4.1:
- resolution: {integrity: sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- postcss: ^8.4.16
-
- postcss-svgo@5.1.0:
- resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-unique-selectors@5.1.1:
- resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss-zindex@5.1.0:
- resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
postcss@8.4.31:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
@@ -9992,10 +8324,6 @@ packages:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.47:
- resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
- engines: {node: ^10 || ^12 || >=14}
-
preact@10.24.3:
resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==}
@@ -10010,10 +8338,6 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prepend-http@2.0.0:
- resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==}
- engines: {node: '>=4'}
-
prettier-linter-helpers@1.0.0:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
@@ -10039,9 +8363,6 @@ packages:
engines: {node: '>=14'}
hasBin: true
- pretty-error@4.0.0:
- resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
-
pretty-format@26.6.2:
resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
engines: {node: '>= 10'}
@@ -10054,19 +8375,6 @@ packages:
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- pretty-time@1.1.0:
- resolution: {integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==}
- engines: {node: '>=4'}
-
- prism-react-renderer@1.3.5:
- resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==}
- peerDependencies:
- react: '>=0.14.9'
-
- prismjs@1.29.0:
- resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
- engines: {node: '>=6'}
-
proc-log@4.2.0:
resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -10077,9 +8385,6 @@ packages:
process-warning@1.0.0:
resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==}
- promise@7.3.1:
- resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
-
promise@8.3.0:
resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
@@ -10093,8 +8398,8 @@ packages:
property-expr@2.0.6:
resolution: {integrity: sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==}
- property-information@5.6.0:
- resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
+ property-information@6.5.0:
+ resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
protobufjs@6.11.4:
resolution: {integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==}
@@ -10126,13 +8431,6 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- pupa@2.1.1:
- resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==}
- engines: {node: '>=8'}
-
- pure-color@1.3.0:
- resolution: {integrity: sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==}
-
pure-rand@6.1.0:
resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
@@ -10192,10 +8490,6 @@ packages:
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
- range-parser@1.2.0:
- resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==}
- engines: {node: '>= 0.6'}
-
range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
@@ -10204,13 +8498,6 @@ packages:
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
- rc@1.2.8:
- resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
- hasBin: true
-
- react-base16-styling@0.6.0:
- resolution: {integrity: sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==}
-
react-clientside-effect@1.2.6:
resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==}
peerDependencies:
@@ -10222,16 +8509,6 @@ packages:
react: ^16.9.0 || ^17 || ^18
react-dom: ^16.9.0 || ^17 || ^18
- react-dev-utils@12.0.1:
- resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
- engines: {node: '>=14'}
- peerDependencies:
- typescript: '>=2.7'
- webpack: '>=4'
- peerDependenciesMeta:
- typescript:
- optional: true
-
react-devtools-core@5.3.2:
resolution: {integrity: sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg==}
@@ -10240,9 +8517,6 @@ packages:
peerDependencies:
react: ^18.3.1
- react-error-overlay@6.0.11:
- resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
-
react-fast-compare@3.2.2:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
@@ -10255,17 +8529,6 @@ packages:
'@types/react':
optional: true
- react-helmet-async@1.3.0:
- resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
- peerDependencies:
- 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-hook-form@7.53.0:
resolution: {integrity: sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ==}
engines: {node: '>=18.0.0'}
@@ -10281,22 +8544,6 @@ packages:
react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
- react-json-view@1.21.3:
- resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==}
- peerDependencies:
- react: ^17.0.0 || ^16.3.0 || ^15.5.4
- react-dom: ^17.0.0 || ^16.3.0 || ^15.5.4
-
- react-lifecycles-compat@3.0.4:
- resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
-
- react-loadable-ssr-addon-v5-slorber@1.0.1:
- resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==}
- engines: {node: '>=10.13.0'}
- peerDependencies:
- react-loadable: '*'
- webpack: '>=4.41.1 || 5.x'
-
react-native-fetch-api@3.0.0:
resolution: {integrity: sha512-g2rtqPjdroaboDKTsJCTlcmtw54E25OjyaunUP0anOZn4Fuo2IKs8BVfe02zVggA/UysbmfSnRJIqtNkAgggNA==}
@@ -10341,22 +8588,6 @@ packages:
'@types/react':
optional: true
- react-router-config@5.1.1:
- resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==}
- peerDependencies:
- react: '>=15'
- react-router: '>=5'
-
- react-router-dom@5.3.4:
- resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==}
- peerDependencies:
- react: '>=15'
-
- react-router@5.3.4:
- resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==}
- peerDependencies:
- react: '>=15'
-
react-style-singleton@2.2.1:
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
@@ -10367,12 +8598,6 @@ packages:
'@types/react':
optional: true
- react-textarea-autosize@8.5.3:
- resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
- engines: {node: '>=10'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
-
react-web-share@2.0.2:
resolution: {integrity: sha512-bGm1TJc6xtC0MhAnYFsrzT4En7l2oAdLTgCK7nk7b4xGTg3L5gOldiPrmYQ8a/dEXNydgekvOj/tfjduIlIRVA==}
peerDependencies:
@@ -10420,9 +8645,6 @@ packages:
resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
engines: {node: '>= 14.16.0'}
- reading-time@1.5.0:
- resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==}
-
readline-sync@1.4.10:
resolution: {integrity: sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==}
engines: {node: '>= 0.8.0'}
@@ -10480,22 +8702,10 @@ packages:
resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
engines: {node: '>= 0.4'}
- regexpu-core@5.3.2:
- resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
- engines: {node: '>=4'}
-
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-url@5.1.0:
- resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==}
- engines: {node: '>=8'}
-
regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
@@ -10503,10 +8713,6 @@ packages:
resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
hasBin: true
- regjsparser@0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
- hasBin: true
-
rehackt@0.1.0:
resolution: {integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==}
peerDependencies:
@@ -10518,31 +8724,21 @@ packages:
react:
optional: true
- relateurl@0.2.7:
- resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
- engines: {node: '>= 0.10'}
-
- remark-emoji@2.2.0:
- resolution: {integrity: sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==}
-
- remark-footnotes@2.0.0:
- resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==}
+ remark-html@15.0.2:
+ resolution: {integrity: sha512-/CIOI7wzHJzsh48AiuIyIe1clxVkUtreul73zcCXLub0FmnevQE0UMFDQm7NUx8/3rl/4zCshlMfqBdWScQthw==}
- remark-mdx@1.6.22:
- resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==}
+ remark-parse@10.0.2:
+ resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
- remark-parse@8.0.3:
- resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==}
+ remark-stringify@10.0.3:
+ resolution: {integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==}
- remark-squeeze-paragraphs@4.0.0:
- resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==}
+ remark@14.0.3:
+ resolution: {integrity: sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==}
remeda@1.61.0:
resolution: {integrity: sha512-caKfSz9rDeSKBQQnlJnVW3mbVdFgxgGWQKq1XlFokqjf+hQD5gxutLGTTY2A/x24UxVyJe9gH5fAkFI63ULw4A==}
- renderkid@3.0.0:
- resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
-
repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
@@ -10555,9 +8751,6 @@ packages:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- require-like@0.1.2:
- resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==}
-
require-main-filename@2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
@@ -10580,9 +8773,6 @@ packages:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
- resolve-pathname@3.0.0:
- resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==}
-
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
@@ -10608,9 +8798,6 @@ packages:
resolution: {integrity: sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==}
engines: {node: '>=0.8'}
- responselike@1.0.2:
- resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==}
-
restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
@@ -10629,10 +8816,6 @@ packages:
retimer@3.0.0:
resolution: {integrity: sha512-WKE0j11Pa0ZJI5YIk0nflGI7SQsfl2ljihVy7ogh7DeQSeYAUi0ubZ/yEueGtDfUPk6GH5LRw1hBdLq4IwUBWA==}
- retry@0.13.1:
- resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
- engines: {node: '>= 4'}
-
reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -10672,13 +8855,6 @@ packages:
rollup:
optional: true
- rtl-detect@1.1.2:
- resolution: {integrity: sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==}
-
- rtlcss@3.5.0:
- resolution: {integrity: sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==}
- hasBin: true
-
run-async@2.4.1:
resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
engines: {node: '>=0.12.0'}
@@ -10693,6 +8869,10 @@ packages:
rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ sade@1.8.1:
+ resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
+ engines: {node: '>=6'}
+
safe-array-concat@1.1.2:
resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
engines: {node: '>=0.4'}
@@ -10714,9 +8894,6 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sax@1.4.1:
- resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
-
saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
@@ -10734,28 +8911,9 @@ packages:
scheduler@0.24.0-canary-efb381bbf-20230505:
resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==}
- schema-utils@2.7.0:
- resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
- engines: {node: '>= 8.9.0'}
-
- schema-utils@2.7.1:
- resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
- engines: {node: '>= 8.9.0'}
-
- schema-utils@3.3.0:
- resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
- engines: {node: '>= 10.13.0'}
-
- schema-utils@4.2.0:
- resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
- engines: {node: '>= 12.13.0'}
-
scrypt-js@3.0.1:
resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==}
- search-insights@2.17.2:
- resolution: {integrity: sha512-zFNpOpUO+tY2D85KrxJ+aqwnIfdEGi06UH2+xEb+Bp9Mwznmauqc9djbnBibJO5mpfUPPa8st6Sx65+vbeO45g==}
-
secp256k1@4.0.4:
resolution: {integrity: sha512-6JfvwvjUOn8F/jUoBY2Q1v5WY5XS+rj8qSe0v8Y4ezH4InLgTEeOOPQsRll9OV429Pvo6BCHGavIyJfr3TAhsw==}
engines: {node: '>=18.0.0'}
@@ -10768,17 +8926,10 @@ packages:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
engines: {node: '>=4'}
- select-hose@2.0.0:
- resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
-
selfsigned@2.4.1:
resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
- semver-diff@3.1.1:
- resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==}
- engines: {node: '>=8'}
-
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
@@ -10813,13 +8964,6 @@ packages:
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- serve-handler@6.1.5:
- resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==}
-
- serve-index@1.9.1:
- resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
- engines: {node: '>= 0.8.0'}
-
serve-static@1.16.2:
resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
@@ -10841,9 +8985,6 @@ packages:
setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
- setprototypeof@1.1.0:
- resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
-
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
@@ -10877,9 +9018,6 @@ 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'}
@@ -10903,26 +9041,13 @@ packages:
simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
- 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.2:
- resolution: {integrity: sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==}
- engines: {node: '>=12.0.0', npm: '>=5.6.0'}
- hasBin: true
-
slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- slash@4.0.0:
- resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
- engines: {node: '>=12'}
-
slash@5.1.0:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
@@ -10951,9 +9076,6 @@ packages:
resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==}
engines: {node: '>=10.0.0'}
- sockjs@0.3.24:
- resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
-
solc@0.8.26:
resolution: {integrity: sha512-yiPQNVf5rBFHwN6SIf3TUUvVAFKcQqmSUFeq+fb6pNRCo0ZCgpYOZDi3BVoezCPIAcKrVYd/qXlBLUP9wVrZ9g==}
engines: {node: '>=10.0.0'}
@@ -10978,10 +9100,6 @@ packages:
sonic-boom@2.8.0:
resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==}
- sort-css-media-queries@2.1.0:
- resolution: {integrity: sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA==}
- engines: {node: '>= 6.3.0'}
-
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
@@ -11008,8 +9126,8 @@ packages:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
- space-separated-tokens@1.1.5:
- resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
+ space-separated-tokens@2.0.2:
+ resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
spawndamnit@3.0.1:
resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
@@ -11026,13 +9144,6 @@ packages:
spdx-license-ids@3.0.20:
resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
- spdy-transport@3.0.0:
- resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
-
- spdy@4.0.2:
- resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
- engines: {node: '>=6.0.0'}
-
split-ca@1.0.1:
resolution: {integrity: sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==}
@@ -11050,10 +9161,6 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- stable@0.1.8:
- resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
- deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
-
stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
@@ -11065,9 +9172,6 @@ packages:
resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
engines: {node: '>=6'}
- state-toggle@1.0.3:
- resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==}
-
statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
@@ -11159,9 +9263,8 @@ packages:
string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- stringify-object@3.3.0:
- resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
- engines: {node: '>=4'}
+ stringify-entities@4.0.4:
+ resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
strip-ansi@5.2.0:
resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
@@ -11207,10 +9310,6 @@ packages:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
- strip-json-comments@2.0.1:
- resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
- engines: {node: '>=0.10.0'}
-
strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
@@ -11218,9 +9317,6 @@ packages:
strnum@1.0.5:
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
- style-to-object@0.3.0:
- resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
-
styled-components@6.1.13:
resolution: {integrity: sha512-M0+N2xSnAtwcVAQeFEsGWFFxXDftHUD7XrKla06QbpUMmbmtFBMMTcKWvFXtWxuD5qQkB8iU5gk6QASlx2ZRMw==}
engines: {node: '>= 16'}
@@ -11241,12 +9337,6 @@ packages:
babel-plugin-macros:
optional: true
- stylehacks@5.1.1:
- resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
stylis@4.2.0:
resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
@@ -11255,6 +9345,7 @@ packages:
sudo-prompt@9.2.1:
resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
superstruct@1.0.4:
resolution: {integrity: sha512-7JpaAoX2NGyoFlI9NBh66BQXGONc+uE+MRS5i2iOBKuS4e+ccgMDjATgZldkah+33DakBxDHiss9kvUcGAO8UQ==}
@@ -11287,14 +9378,6 @@ packages:
svg-arc-to-cubic-bezier@3.2.0:
resolution: {integrity: sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==}
- svg-parser@2.0.4:
- resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
-
- svgo@2.8.0:
- resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
- engines: {node: '>=10.13.0'}
- hasBin: true
-
symbol-observable@4.0.0:
resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==}
engines: {node: '>=0.10'}
@@ -11329,10 +9412,6 @@ packages:
resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
engines: {node: '>=10.0.0'}
- tapable@1.1.3:
- resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
- engines: {node: '>=6'}
-
tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
@@ -11368,27 +9447,6 @@ packages:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
- 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@5.33.0:
- resolution: {integrity: sha512-JuPVaB7s1gdFKPKTelwUyRq5Sid2A3Gko2S0PncwdBq7kN9Ti9HPWDQ06MPsEDGsZeVESjKEnyGy68quBk1w6g==}
- engines: {node: '>=10'}
- hasBin: true
-
terser@5.36.0:
resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
engines: {node: '>=10'}
@@ -11420,9 +9478,6 @@ packages:
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- thunky@1.1.0:
- resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
-
tightrope@0.2.0:
resolution: {integrity: sha512-Kw36UHxJEELq2VUqdaSGR2/8cAsPgMtvX8uGVU6Jk26O66PhXec0A5ZnRYs47btbtwPDpXXF66+Fo3vimCM9aQ==}
engines: {node: '>=16'}
@@ -11439,9 +9494,6 @@ packages:
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==}
-
tmp-promise@3.0.3:
resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==}
@@ -11463,10 +9515,6 @@ packages:
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'}
-
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -11481,10 +9529,6 @@ packages:
toposort@2.0.2:
resolution: {integrity: sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==}
- totalist@3.0.1:
- resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
- engines: {node: '>=6'}
-
tough-cookie@4.1.4:
resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
@@ -11496,14 +9540,11 @@ packages:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
- trim-trailing-lines@1.1.4:
- resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==}
-
- trim@0.0.1:
- resolution: {integrity: sha1-WFhUf2spB1fulczMZm+1AITEYN0=}
+ trim-lines@3.0.1:
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
- trough@1.0.5:
- resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
+ trough@2.2.0:
+ resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
ts-api-utils@1.3.0:
resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
@@ -11643,9 +9684,6 @@ packages:
resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
engines: {node: '>= 0.4'}
- typedarray-to-buffer@3.1.5:
- resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
-
typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
@@ -11690,16 +9728,9 @@ packages:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'}
- undici@6.19.8:
- resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==}
- engines: {node: '>=18.17'}
-
unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
- unherit@1.1.3:
- resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
-
unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
engines: {node: '>=4'}
@@ -11726,42 +9757,26 @@ packages:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
- unified@9.2.0:
- resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==}
-
- unified@9.2.2:
- resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
-
- unique-string@2.0.0:
- resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
- engines: {node: '>=8'}
-
- unist-builder@2.0.3:
- resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==}
-
- unist-util-generated@1.1.6:
- resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==}
+ unified@10.1.2:
+ resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
- unist-util-is@4.1.0:
- resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}
+ unist-util-generated@2.0.1:
+ resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
- unist-util-position@3.1.0:
- resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==}
+ unist-util-is@5.2.1:
+ resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
- unist-util-remove-position@2.0.1:
- resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==}
+ unist-util-position@4.0.4:
+ resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
- unist-util-remove@2.1.0:
- resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==}
+ unist-util-stringify-position@3.0.3:
+ resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
- unist-util-stringify-position@2.0.3:
- resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
+ unist-util-visit-parents@5.1.3:
+ resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
- unist-util-visit-parents@3.1.1:
- resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
-
- unist-util-visit@2.0.3:
- resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==}
+ unist-util-visit@4.1.2:
+ resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
@@ -11827,42 +9842,18 @@ packages:
resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
- update-browserslist-db@1.1.0:
- resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
update-browserslist-db@1.1.1:
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
- update-notifier@5.1.0:
- resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==}
- engines: {node: '>=10'}
-
uqr@0.1.2:
resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
- url-loader@4.1.1:
- resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- file-loader: '*'
- webpack: ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- file-loader:
- optional: true
-
- url-parse-lax@3.0.0:
- resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
- engines: {node: '>=4'}
-
url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
@@ -11879,32 +9870,9 @@ packages:
'@types/react':
optional: true
- use-composed-ref@1.3.0:
- resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
-
- use-isomorphic-layout-effect@1.1.2:
- resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-latest@1.2.1:
- resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-sidecar@1.1.2:
- resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
- engines: {node: '>=10'}
+ use-sidecar@1.1.2:
+ resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
+ engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -11917,11 +9885,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
- use-sync-external-store@1.2.2:
- resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
-
utf-8-validate@5.0.10:
resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
engines: {node: '>=6.14.2'}
@@ -11935,13 +9898,6 @@ packages:
util@0.12.5:
resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
- utila@0.4.0:
- resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
-
- utility-types@3.11.0:
- resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==}
- engines: {node: '>= 4'}
-
utils-merge@1.0.1:
resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
engines: {node: '>= 0.4.0'}
@@ -11954,6 +9910,11 @@ packages:
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
+ uvu@0.5.6:
+ resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
+ engines: {node: '>=8'}
+ hasBin: true
+
v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
@@ -11980,9 +9941,6 @@ packages:
react:
optional: true
- value-equal@1.0.1:
- resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==}
-
varint@6.0.0:
resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
@@ -11990,14 +9948,14 @@ packages:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- vfile-location@3.2.0:
- resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==}
+ vfile-location@4.1.0:
+ resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==}
- vfile-message@2.0.4:
- resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
+ vfile-message@3.1.4:
+ resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
- vfile@4.2.1:
- resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
+ vfile@5.3.7:
+ resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
viem@2.17.0:
resolution: {integrity: sha512-+gaVlsfDsHL1oYdjpatdRxW1WK/slLYVvpOws3fEdLfQFUToezKI6YLC9l1g2uKm4Hg3OdGX1KQy/G7/58tTKQ==}
@@ -12037,26 +9995,14 @@ packages:
typescript:
optional: true
- wait-on@6.0.1:
- resolution: {integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==}
- engines: {node: '>=10.0.0'}
- hasBin: true
-
walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
- watchpack@2.4.2:
- resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
- engines: {node: '>=10.13.0'}
-
- wbuf@1.7.3:
- resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
-
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- web-namespaces@1.1.4:
- resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==}
+ web-namespaces@2.0.1:
+ resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
web-streams-polyfill@3.3.3:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
@@ -12087,70 +10033,10 @@ packages:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
- webpack-bundle-analyzer@4.10.2:
- resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==}
- engines: {node: '>= 10.13.0'}
- hasBin: true
-
- 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.2:
- resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==}
- engines: {node: '>= 12.13.0'}
- hasBin: true
- peerDependencies:
- webpack: ^4.37.0 || ^5.0.0
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack:
- optional: true
- webpack-cli:
- optional: true
-
- webpack-merge@5.10.0:
- resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==}
- 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.94.0:
- resolution: {integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
-
- webpackbar@5.0.2:
- resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==}
- engines: {node: '>=12'}
- peerDependencies:
- webpack: 3 || 4 || 5
-
- websocket-driver@0.7.4:
- resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
- engines: {node: '>=0.8.0'}
-
- websocket-extensions@0.1.4:
- resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
- engines: {node: '>=0.8.0'}
-
whatwg-encoding@2.0.0:
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
engines: {node: '>=12'}
- whatwg-encoding@3.1.1:
- resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
- engines: {node: '>=18'}
-
whatwg-fetch@3.6.20:
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
@@ -12158,10 +10044,6 @@ packages:
resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
engines: {node: '>=12'}
- whatwg-mimetype@4.0.0:
- resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
- engines: {node: '>=18'}
-
whatwg-url@11.0.0:
resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
engines: {node: '>=12'}
@@ -12204,13 +10086,6 @@ packages:
resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
engines: {node: '>=8'}
- widest-line@4.0.1:
- resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
- engines: {node: '>=12'}
-
- wildcard@2.0.1:
- resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
-
word-wrap@1.2.5:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
@@ -12243,9 +10118,6 @@ packages:
write-file-atomic@2.4.3:
resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
- write-file-atomic@3.0.3:
- resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
-
write-file-atomic@4.0.2:
resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
@@ -12309,14 +10181,6 @@ packages:
utf-8-validate:
optional: true
- xdg-basedir@4.0.0:
- resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
- engines: {node: '>=8'}
-
- xml-js@1.6.11:
- resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==}
- hasBin: true
-
xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
@@ -12433,8 +10297,8 @@ packages:
react:
optional: true
- zwitch@1.0.5:
- resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
+ zwitch@2.0.4:
+ resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
snapshots:
@@ -12444,112 +10308,6 @@ snapshots:
'@adraffy/ens-normalize@1.10.1': {}
- '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)':
- dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
- - search-insights
-
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)':
- dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
- search-insights: 2.17.2
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
-
- '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)':
- dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
- '@algolia/client-search': 4.24.0
- algoliasearch: 4.24.0
-
- '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)':
- dependencies:
- '@algolia/client-search': 4.24.0
- algoliasearch: 4.24.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-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/client-common': 4.24.0
- '@algolia/client-search': 4.24.0
- '@algolia/requester-common': 4.24.0
- '@algolia/transporter': 4.24.0
-
- '@algolia/client-common@4.24.0':
- dependencies:
- '@algolia/requester-common': 4.24.0
- '@algolia/transporter': 4.24.0
-
- '@algolia/client-personalization@4.24.0':
- dependencies:
- '@algolia/client-common': 4.24.0
- '@algolia/requester-common': 4.24.0
- '@algolia/transporter': 4.24.0
-
- '@algolia/client-search@4.24.0':
- dependencies:
- '@algolia/client-common': 4.24.0
- '@algolia/requester-common': 4.24.0
- '@algolia/transporter': 4.24.0
-
- '@algolia/events@4.0.1': {}
-
- '@algolia/logger-common@4.24.0': {}
-
- '@algolia/logger-console@4.24.0':
- dependencies:
- '@algolia/logger-common': 4.24.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/requester-browser-xhr@4.24.0':
- dependencies:
- '@algolia/requester-common': 4.24.0
-
- '@algolia/requester-common@4.24.0': {}
-
- '@algolia/requester-node-http@4.24.0':
- dependencies:
- '@algolia/requester-common': 4.24.0
-
- '@algolia/transporter@4.24.0':
- dependencies:
- '@algolia/cache-common': 4.24.0
- '@algolia/logger-common': 4.24.0
- '@algolia/requester-common': 4.24.0
-
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.5
@@ -12593,27 +10351,6 @@ snapshots:
'@babel/compat-data@7.26.2': {}
- '@babel/core@7.12.9':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.6
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.12.9)
- '@babel/helpers': 7.25.6
- '@babel/parser': 7.25.6
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
- convert-source-map: 1.9.0
- debug: 4.3.7(supports-color@8.1.1)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- lodash: 4.17.21
- resolve: 1.22.8
- semver: 5.7.2
- source-map: 0.5.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/core@7.25.2':
dependencies:
'@ampproject/remapping': 2.3.0
@@ -12677,21 +10414,10 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
- '@babel/helper-annotate-as-pure@7.24.7':
- dependencies:
- '@babel/types': 7.25.6
-
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
'@babel/types': 7.26.0
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
- dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-compilation-targets@7.25.2':
dependencies:
'@babel/compat-data': 7.25.4
@@ -12708,32 +10434,6 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/traverse': 7.25.6
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.0)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/traverse': 7.25.6
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12747,20 +10447,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- regexpu-core: 5.3.2
- semver: 6.3.1
-
- '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.24.7
- regexpu-core: 5.3.2
- semver: 6.3.1
-
'@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12768,28 +10454,6 @@ snapshots:
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.7(supports-color@8.1.1)
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.7(supports-color@8.1.1)
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12801,13 +10465,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.24.8':
- dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
'@babel/traverse': 7.25.9
@@ -12829,16 +10486,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.2(@babel/core@7.12.9)':
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -12849,16 +10496,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.2(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12868,38 +10505,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.24.7':
- dependencies:
- '@babel/types': 7.25.6
-
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
'@babel/types': 7.26.0
- '@babel/helper-plugin-utils@7.10.4': {}
-
'@babel/helper-plugin-utils@7.24.8': {}
'@babel/helper-plugin-utils@7.25.9': {}
- '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-wrap-function': 7.25.0
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-wrap-function': 7.25.0
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12909,24 +10522,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-replace-supers@7.25.0(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12950,13 +10545,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
- dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
'@babel/traverse': 7.25.9
@@ -12976,14 +10564,6 @@ snapshots:
'@babel/helper-validator-option@7.25.9': {}
- '@babel/helper-wrap-function@7.25.0':
- dependencies:
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-wrap-function@7.25.9':
dependencies:
'@babel/template': 7.25.9
@@ -13017,73 +10597,38 @@ snapshots:
dependencies:
'@babel/types': 7.26.0
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.6
+ '@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/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.6
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -13106,13 +10651,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
- '@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.10.4
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9)
-
'@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -13122,10 +10660,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
-
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -13139,6 +10673,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.2)':
dependencies:
@@ -13160,6 +10695,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
dependencies:
@@ -13170,46 +10706,27 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.25.2)':
dependencies:
@@ -13220,6 +10737,12 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
+
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
dependencies:
@@ -13230,6 +10753,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)':
dependencies:
@@ -13240,11 +10764,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)':
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
dependencies:
@@ -13265,6 +10785,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)':
dependencies:
@@ -13285,11 +10806,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
-
- '@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.8
+ optional: true
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)':
dependencies:
@@ -13300,6 +10817,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)':
dependencies:
@@ -13310,6 +10828,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)':
dependencies:
@@ -13330,6 +10849,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)':
dependencies:
@@ -13340,6 +10860,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)':
dependencies:
@@ -13351,53 +10872,17 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -13407,24 +10892,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -13434,47 +10901,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.26.0)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -13483,45 +10919,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-classes@7.25.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
- '@babel/traverse': 7.25.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-classes@7.25.4(@babel/core@7.26.0)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.0)
- '@babel/traverse': 7.25.6
- globals: 11.12.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
@@ -13537,963 +10939,390 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.25.0
-
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.25.0
-
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
'@babel/template': 7.25.9
- '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.26.0)':
+ '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@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-exponentiation-operator@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
dependencies:
'@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-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.6
+ '@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-simple-access': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.6
+ '@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.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
-
- '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
-
- '@babel/plugin-transform-literals@7.25.2(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-literals@7.25.2(@babel/core@7.26.0)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
-
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
'@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-member-expression-literals@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@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-modules-amd@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-simple-access': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
dependencies:
'@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-simple-access': 7.25.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@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-modules-umd@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
+ '@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-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
'@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.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
-
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ regenerator-transform: 0.15.2
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
-
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-imports': 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-object-super@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ 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-object-super@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.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-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.26.0)':
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0)':
dependencies:
'@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/plugin-transform-parameters@7.24.7(@babel/core@7.12.9)':
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
+ '@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.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.25.2)':
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
+ '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
dependencies:
+ '@babel/compat-data': 7.26.2
'@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-private-property-in-object@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@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-property-literals@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-react-constant-elements@7.25.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
- '@babel/types': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@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.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- regenerator-transform: 0.15.2
-
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- regenerator-transform: 0.15.2
-
- '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
- regenerator-transform: 0.15.2
-
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-runtime@7.25.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@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-shorthand-properties@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@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-sticky-regex@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@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/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@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.25.9(@babel/core@7.26.0)
+ '@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/preset-env@7.25.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
- core-js-compat: 3.38.1
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-env@7.25.4(@babel/core@7.26.0)':
- dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.26.0)
+ '@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-async-generators': 7.8.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@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.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.26.0)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.26.0)
- '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.26.0)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.26.0)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.26.0)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.26.0)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.26.0)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.26.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.26.0)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@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.25.9(@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.11(@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.2(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
@@ -14506,43 +11335,13 @@ snapshots:
'@babel/helper-validator-option': 7.25.9
'@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/types': 7.25.6
- esutils: 2.0.3
-
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/types': 7.25.6
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/types': 7.26.0
esutils: 2.0.3
- '@babel/preset-react@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
- '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-typescript@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
'@babel/preset-typescript@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -14563,13 +11362,6 @@ snapshots:
pirates: 4.0.6
source-map-support: 0.5.21
- '@babel/regjsgen@0.8.0': {}
-
- '@babel/runtime-corejs3@7.25.6':
- dependencies:
- core-js-pure: 3.38.1
- regenerator-runtime: 0.14.1
-
'@babel/runtime@7.25.6':
dependencies:
regenerator-runtime: 0.14.1
@@ -14627,6 +11419,19 @@ snapshots:
'@bcoe/v8-coverage@0.2.3': {}
+ '@chakra-ui/accordion@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/descendant': 3.1.0(react@18.3.1)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/transition': 2.1.0(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/accordion@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/descendant': 3.1.0(react@18.3.1)
@@ -14640,6 +11445,15 @@ snapshots:
framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/alert@2.2.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/alert@2.2.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -14651,6 +11465,15 @@ snapshots:
'@chakra-ui/anatomy@2.2.2': {}
+ '@chakra-ui/avatar@2.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-children-utils': 2.0.6(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/avatar@2.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -14660,6 +11483,14 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/breadcrumb@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/react-children-utils': 2.0.6(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/breadcrumb@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/react-children-utils': 2.0.6(react@18.3.1)
@@ -14672,19 +11503,50 @@ snapshots:
dependencies:
'@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/button@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/button@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
- '@chakra-ui/react-context': 2.1.0(react@18.3.1)
- '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
+ '@chakra-ui/card@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
+ '@chakra-ui/card@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
- '@chakra-ui/card@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ '@chakra-ui/checkbox@2.3.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-types': 2.0.7(react@18.3.1)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.3.1)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@zag-js/focus-visible': 0.16.0
react: 18.3.1
'@chakra-ui/checkbox@2.3.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
@@ -14709,6 +11571,12 @@ snapshots:
'@chakra-ui/shared-utils': 2.0.5
react: 18.3.1
+ '@chakra-ui/close-button@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/close-button@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -14720,6 +11588,11 @@ snapshots:
'@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/control-box@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/control-box@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
@@ -14732,6 +11605,11 @@ snapshots:
'@chakra-ui/shared-utils': 2.0.5
react: 18.3.1
+ '@chakra-ui/css-reset@2.3.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/css-reset@2.3.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)':
dependencies:
'@emotion/react': 11.13.3(@types/react@18.3.8)(react@18.3.1)
@@ -14745,6 +11623,20 @@ snapshots:
'@chakra-ui/dom-utils@2.1.0': {}
+ '@chakra-ui/editable@3.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-types': 2.0.7(react@18.3.1)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-focus-on-pointer-down': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/editable@3.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/react-context': 2.1.0(react@18.3.1)
@@ -14761,6 +11653,14 @@ snapshots:
'@chakra-ui/event-utils@2.0.8': {}
+ '@chakra-ui/focus-lock@2.1.0(@types/react@18.3.12)(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/dom-utils': 2.1.0
+ react: 18.3.1
+ react-focus-lock: 2.13.2(@types/react@18.3.12)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+
'@chakra-ui/focus-lock@2.1.0(@types/react@18.3.8)(react@18.3.1)':
dependencies:
'@chakra-ui/dom-utils': 2.1.0
@@ -14769,6 +11669,16 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
+ '@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-types': 2.0.7(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -14787,6 +11697,12 @@ snapshots:
copy-to-clipboard: 3.3.3
react: 18.3.1
+ '@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/shared-utils': 2.0.5
@@ -14799,6 +11715,13 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/image@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/image@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.3.1)
@@ -14806,6 +11729,16 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/input@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/object-utils': 2.1.0
+ '@chakra-ui/react-children-utils': 2.0.6(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/input@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -14816,6 +11749,17 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/breakpoint-utils': 2.0.8
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/object-utils': 2.1.0
+ '@chakra-ui/react-children-utils': 2.0.6(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/breakpoint-utils': 2.0.8
@@ -14833,6 +11777,14 @@ snapshots:
dependencies:
react: 18.3.1
+ '@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/breakpoint-utils': 2.0.8
+ '@chakra-ui/react-env': 3.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/breakpoint-utils': 2.0.8
@@ -14841,6 +11793,27 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/clickable': 2.1.0(react@18.3.1)
+ '@chakra-ui/descendant': 3.1.0(react@18.3.1)
+ '@chakra-ui/lazy-utils': 2.0.5
+ '@chakra-ui/popper': 3.1.0(react@18.3.1)
+ '@chakra-ui/react-children-utils': 2.0.6(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-animation-state': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-disclosure': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-focus-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-outside-click': 2.2.0(react@18.3.1)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/transition': 2.1.0(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/clickable': 2.1.0(react@18.3.1)
@@ -14862,6 +11835,25 @@ snapshots:
framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/modal@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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:
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/focus-lock': 2.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-types': 2.0.7(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/transition': 2.1.0(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ aria-hidden: 1.2.4
+ framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(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)
+ react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+
'@chakra-ui/modal@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(@types/react@18.3.8)(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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:
'@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -14889,6 +11881,23 @@ snapshots:
next: 14.2.13(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/number-input@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/counter': 2.1.0(react@18.3.1)
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-types': 2.0.7(react@18.3.1)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-event-listener': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-interval': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/number-input@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/counter': 2.1.0(react@18.3.1)
@@ -14910,6 +11919,17 @@ snapshots:
'@chakra-ui/object-utils@2.1.0': {}
+ '@chakra-ui/pin-input@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/descendant': 3.1.0(react@18.3.1)
+ '@chakra-ui/react-children-utils': 2.0.6(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/pin-input@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/descendant': 3.1.0(react@18.3.1)
@@ -14921,6 +11941,23 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/popover@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/lazy-utils': 2.0.5
+ '@chakra-ui/popper': 3.1.0(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-types': 2.0.7(react@18.3.1)
+ '@chakra-ui/react-use-animation-state': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-disclosure': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-focus-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-focus-on-pointer-down': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/popover@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -14952,12 +11989,30 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@chakra-ui/progress@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/progress@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/react-context': 2.1.0(react@18.3.1)
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/provider@2.4.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-env': 3.1.0(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/utils': 2.0.15
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
'@chakra-ui/provider@2.4.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/css-reset': 2.3.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
@@ -14970,6 +12025,17 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@chakra-ui/radio@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-types': 2.0.7(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@zag-js/focus-visible': 0.16.0
+ react: 18.3.1
+
'@chakra-ui/radio@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15088,6 +12154,69 @@ snapshots:
'@chakra-ui/utils': 2.0.15
react: 18.3.1
+ '@chakra-ui/react@2.8.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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:
+ '@chakra-ui/accordion': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/alert': 2.2.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/avatar': 2.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/breadcrumb': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/button': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/card': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/checkbox': 2.3.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/control-box': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/counter': 2.1.0(react@18.3.1)
+ '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/editable': 3.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/focus-lock': 2.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/hooks': 2.2.1(react@18.3.1)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/input': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/layout': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/live-region': 2.1.0(react@18.3.1)
+ '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/menu': 2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/modal': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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)
+ '@chakra-ui/number-input': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/pin-input': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/popover': 2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/popper': 3.1.0(react@18.3.1)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/progress': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/provider': 2.4.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/radio': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-env': 3.1.0(react@18.3.1)
+ '@chakra-ui/select': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/skeleton': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/skip-nav': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/slider': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/stat': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/stepper': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/styled-system': 2.9.2
+ '@chakra-ui/switch': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/table': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/tabs': 3.0.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/tag': 3.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/textarea': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/theme': 3.3.1(@chakra-ui/styled-system@2.9.2)
+ '@chakra-ui/theme-utils': 2.0.21
+ '@chakra-ui/toast': 7.0.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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)
+ '@chakra-ui/tooltip': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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)
+ '@chakra-ui/transition': 2.1.0(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/utils': 2.0.15
+ '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(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:
+ - '@types/react'
+
'@chakra-ui/react@2.8.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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:
'@chakra-ui/accordion': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15151,6 +12280,13 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
+ '@chakra-ui/select@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/select@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15160,6 +12296,14 @@ snapshots:
'@chakra-ui/shared-utils@2.0.5': {}
+ '@chakra-ui/skeleton@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-use-previous': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/skeleton@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15168,11 +12312,31 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/skip-nav@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/skip-nav@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/slider@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/number-utils': 2.0.7
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-types': 2.0.7(react@18.3.1)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-latest-ref': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-pan-event': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-size': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/slider@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/number-utils': 2.0.7
@@ -15188,12 +12352,26 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/shared-utils': 2.0.5
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/stat@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/stat@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15202,6 +12380,14 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/stepper@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/stepper@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15216,6 +12402,14 @@ snapshots:
csstype: 3.1.3
lodash.mergewith: 4.6.2
+ '@chakra-ui/switch@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/checkbox': 2.3.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/switch@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/checkbox': 2.3.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15224,6 +12418,19 @@ snapshots:
framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/color-mode': 2.2.0(react@18.3.1)
+ '@chakra-ui/object-utils': 2.1.0
+ '@chakra-ui/react-utils': 2.0.12(react@18.3.1)
+ '@chakra-ui/styled-system': 2.9.2
+ '@chakra-ui/theme-utils': 2.0.21
+ '@chakra-ui/utils': 2.0.15
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ react: 18.3.1
+ react-fast-compare: 3.2.2
+
'@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/color-mode': 2.2.0(react@18.3.1)
@@ -15237,6 +12444,13 @@ snapshots:
react: 18.3.1
react-fast-compare: 3.2.2
+ '@chakra-ui/table@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/table@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/react-context': 2.1.0(react@18.3.1)
@@ -15244,6 +12458,20 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/tabs@3.0.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/clickable': 2.1.0(react@18.3.1)
+ '@chakra-ui/descendant': 3.1.0(react@18.3.1)
+ '@chakra-ui/lazy-utils': 2.0.5
+ '@chakra-ui/react-children-utils': 2.0.6(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/tabs@3.0.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/clickable': 2.1.0(react@18.3.1)
@@ -15258,6 +12486,13 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/tag@3.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/tag@3.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15265,6 +12500,13 @@ snapshots:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@chakra-ui/textarea@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/textarea@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15293,6 +12535,22 @@ snapshots:
'@chakra-ui/styled-system': 2.9.2
'@chakra-ui/theme-tools': 2.1.2(@chakra-ui/styled-system@2.9.2)
+ '@chakra-ui/toast@7.0.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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:
+ '@chakra-ui/alert': 2.2.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-context': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-timeout': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/styled-system': 2.9.2
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/theme': 3.3.1(@chakra-ui/styled-system@2.9.2)
+ framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(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)
+
'@chakra-ui/toast@7.0.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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:
'@chakra-ui/alert': 2.2.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -15309,6 +12567,21 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@chakra-ui/tooltip@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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:
+ '@chakra-ui/dom-utils': 2.1.0
+ '@chakra-ui/popper': 3.1.0(react@18.3.1)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@chakra-ui/react-types': 2.0.7(react@18.3.1)
+ '@chakra-ui/react-use-disclosure': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-event-listener': 2.1.0(react@18.3.1)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1)
+ '@chakra-ui/shared-utils': 2.0.5
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ framer-motion: 11.5.6(@emotion/is-prop-valid@1.3.1)(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)
+
'@chakra-ui/tooltip@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(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:
'@chakra-ui/dom-utils': 2.1.0
@@ -15337,6 +12610,11 @@ snapshots:
framesync: 6.1.2
lodash.mergewith: 4.6.2
+ '@chakra-ui/visually-hidden@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+
'@chakra-ui/visually-hidden@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1))(react@18.3.1)
@@ -15405,782 +12683,122 @@ snapshots:
'@changesets/config@3.0.4':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/logger': 0.1.1
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- fs-extra: 7.0.1
- micromatch: 4.0.8
-
- '@changesets/errors@0.2.0':
- dependencies:
- extendable-error: 0.1.7
-
- '@changesets/get-dependents-graph@2.1.2':
- dependencies:
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- picocolors: 1.1.1
- semver: 7.6.3
-
- '@changesets/get-release-plan@4.0.5':
- dependencies:
- '@changesets/assemble-release-plan': 6.0.5
- '@changesets/config': 3.0.4
- '@changesets/pre': 2.0.1
- '@changesets/read': 0.6.2
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
-
- '@changesets/get-version-range-type@0.4.0': {}
-
- '@changesets/git@3.0.2':
- dependencies:
- '@changesets/errors': 0.2.0
- '@manypkg/get-packages': 1.1.3
- is-subdir: 1.2.0
- micromatch: 4.0.8
- spawndamnit: 3.0.1
-
- '@changesets/logger@0.1.1':
- dependencies:
- picocolors: 1.1.1
-
- '@changesets/parse@0.4.0':
- dependencies:
- '@changesets/types': 6.0.0
- js-yaml: 3.14.1
-
- '@changesets/pre@2.0.1':
- dependencies:
- '@changesets/errors': 0.2.0
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- fs-extra: 7.0.1
-
- '@changesets/read@0.6.2':
- dependencies:
- '@changesets/git': 3.0.2
- '@changesets/logger': 0.1.1
- '@changesets/parse': 0.4.0
- '@changesets/types': 6.0.0
- fs-extra: 7.0.1
- p-filter: 2.1.0
- picocolors: 1.1.1
-
- '@changesets/should-skip-package@0.1.1':
- dependencies:
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
-
- '@changesets/types@4.1.0': {}
-
- '@changesets/types@6.0.0': {}
-
- '@changesets/write@0.3.2':
- dependencies:
- '@changesets/types': 6.0.0
- fs-extra: 7.0.1
- human-id: 1.0.2
- prettier: 2.8.8
-
- '@coinbase/wallet-sdk@3.9.3':
- dependencies:
- bn.js: 5.2.1
- buffer: 6.0.3
- clsx: 1.2.1
- eth-block-tracker: 7.1.0
- eth-json-rpc-filters: 6.0.1
- eventemitter3: 5.0.1
- keccak: 3.0.4
- preact: 10.25.0
- sha.js: 2.4.11
- transitivePeerDependencies:
- - supports-color
-
- '@coinbase/wallet-sdk@4.0.4':
- dependencies:
- buffer: 6.0.3
- clsx: 1.2.1
- eventemitter3: 5.0.1
- keccak: 3.0.4
- preact: 10.24.3
- sha.js: 2.4.11
-
- '@colors/colors@1.5.0':
- optional: true
-
- '@conventional-changelog/git-client@1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)':
- dependencies:
- '@types/semver': 7.5.8
- semver: 7.6.3
- optionalDependencies:
- conventional-commits-filter: 5.0.0
- conventional-commits-parser: 6.0.0
-
- '@cspotcode/source-map-support@0.8.1':
- dependencies:
- '@jridgewell/trace-mapping': 0.3.9
-
- '@discoveryjs/json-ext@0.5.7': {}
-
- '@docsearch/css@3.6.1': {}
-
- '@docsearch/react@3.6.1(@algolia/client-search@4.24.0)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)':
- dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
- '@docsearch/css': 3.6.1
- algoliasearch: 4.24.0
- optionalDependencies:
- '@types/react': 18.3.12
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- search-insights: 2.17.2
- transitivePeerDependencies:
- - '@algolia/client-search'
-
- '@docusaurus/core@2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/generator': 7.25.6
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-runtime': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@babel/runtime': 7.25.6
- '@babel/runtime-corejs3': 7.25.6
- '@babel/traverse': 7.25.6
- '@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.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@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(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.20(postcss@8.4.47)
- babel-loader: 8.4.1(@babel/core@7.25.2)(webpack@5.94.0)
- babel-plugin-dynamic-import-node: 2.3.3
- boxen: 6.2.1
- chalk: 4.1.2
- 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.94.0)
- core-js: 3.38.1
- css-loader: 6.11.0(webpack@5.94.0)
- css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.3)(webpack@5.94.0)
- cssnano: 5.1.15(postcss@8.4.47)
- del: 6.1.1
- detect-port: 1.6.1
- escape-html: 1.0.3
- eta: 2.2.0
- file-loader: 6.2.0(webpack@5.94.0)
- fs-extra: 10.1.0
- html-minifier-terser: 6.1.0
- html-tags: 3.3.1
- html-webpack-plugin: 5.6.0(webpack@5.94.0)
- import-fresh: 3.3.0
- leven: 3.1.0
- lodash: 4.17.21
- mini-css-extract-plugin: 2.9.1(webpack@5.94.0)
- postcss: 8.4.47
- postcss-loader: 7.3.4(postcss@8.4.47)(typescript@5.6.3)(webpack@5.94.0)
- prompts: 2.4.2
- react: 18.3.1
- react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.6.3)(webpack@5.94.0)
- 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.94.0)
- 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.5
- shelljs: 0.8.5
- terser-webpack-plugin: 5.3.10(webpack@5.94.0)
- tslib: 2.7.0
- update-notifier: 5.1.0
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.94.0))(webpack@5.94.0)
- wait-on: 6.0.1
- webpack: 5.94.0
- webpack-bundle-analyzer: 4.10.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- webpack-dev-server: 4.15.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.94.0)
- webpack-merge: 5.10.0
- webpackbar: 5.0.2(webpack@5.94.0)
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
-
- '@docusaurus/cssnano-preset@2.4.3':
- dependencies:
- cssnano-preset-advanced: 5.3.10(postcss@8.4.47)
- postcss: 8.4.47
- postcss-sort-media-queries: 4.4.1(postcss@8.4.47)
- tslib: 2.7.0
-
- '@docusaurus/logger@2.4.3':
- dependencies:
- chalk: 4.1.2
- tslib: 2.7.0
-
- '@docusaurus/mdx-loader@2.4.3(@docusaurus/types@2.4.3(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.25.6
- '@babel/traverse': 7.25.6
- '@docusaurus/logger': 2.4.3
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(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.94.0)
- fs-extra: 10.1.0
- image-size: 1.1.1
- mdast-util-to-string: 2.0.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.7.0
- unified: 9.2.2
- unist-util-visit: 2.0.3
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.94.0))(webpack@5.94.0)
- webpack: 5.94.0
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@swc/core'
- - esbuild
- - supports-color
- - uglify-js
- - webpack-cli
-
- '@docusaurus/module-type-aliases@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@docusaurus/react-loadable': 5.5.2(react@18.3.1)
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/history': 4.7.11
- '@types/react': 18.3.8
- '@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: 2.0.5(react@18.3.1)
- react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.3.1)'
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
- - webpack-cli
-
- '@docusaurus/plugin-content-blog@2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
- dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/logger': 2.4.3
- '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3(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/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- cheerio: 1.0.0
- feed: 4.2.2
- fs-extra: 10.1.0
- lodash: 4.17.21
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- reading-time: 1.5.0
- tslib: 2.7.0
- unist-util-visit: 2.0.3
- utility-types: 3.11.0
- webpack: 5.94.0
- transitivePeerDependencies:
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
-
- '@docusaurus/plugin-content-docs@2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
- dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/logger': 2.4.3
- '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3(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/module-type-aliases': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(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: 10.1.0
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- lodash: 4.17.21
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- tslib: 2.7.0
- utility-types: 3.11.0
- webpack: 5.94.0
- transitivePeerDependencies:
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
-
- '@docusaurus/plugin-content-pages@2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
- dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3(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/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- fs-extra: 10.1.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- tslib: 2.7.0
- webpack: 5.94.0
- transitivePeerDependencies:
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
+ '@changesets/get-dependents-graph': 2.1.2
+ '@changesets/logger': 0.1.1
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ micromatch: 4.0.8
- '@docusaurus/plugin-debug@2.4.3(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
+ '@changesets/errors@0.2.0':
dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- fs-extra: 10.1.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-json-view: 1.21.3(@types/react@18.3.12)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- tslib: 2.7.0
- transitivePeerDependencies:
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@types/react'
- - bufferutil
- - csso
- - debug
- - encoding
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
+ extendable-error: 0.1.7
- '@docusaurus/plugin-google-analytics@2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
+ '@changesets/get-dependents-graph@2.1.2':
dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(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.7.0
- transitivePeerDependencies:
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ picocolors: 1.1.1
+ semver: 7.6.3
- '@docusaurus/plugin-google-gtag@2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
+ '@changesets/get-release-plan@4.0.5':
dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(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.7.0
- transitivePeerDependencies:
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
+ '@changesets/assemble-release-plan': 6.0.5
+ '@changesets/config': 3.0.4
+ '@changesets/pre': 2.0.1
+ '@changesets/read': 0.6.2
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
- '@docusaurus/plugin-google-tag-manager@2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
+ '@changesets/get-version-range-type@0.4.0': {}
+
+ '@changesets/git@3.0.2':
dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(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.7.0
- transitivePeerDependencies:
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
+ '@changesets/errors': 0.2.0
+ '@manypkg/get-packages': 1.1.3
+ is-subdir: 1.2.0
+ micromatch: 4.0.8
+ spawndamnit: 3.0.1
- '@docusaurus/plugin-sitemap@2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
+ '@changesets/logger@0.1.1':
dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/logger': 2.4.3
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- fs-extra: 10.1.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- sitemap: 7.1.2
- tslib: 2.7.0
- transitivePeerDependencies:
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
-
- '@docusaurus/preset-classic@2.4.3(@algolia/client-search@4.24.0)(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.3)(utf-8-validate@5.0.10)':
- dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-content-blog': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-content-docs': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-content-pages': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-debug': 2.4.3(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-google-analytics': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-google-gtag': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-google-tag-manager': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-sitemap': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/theme-classic': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/theme-common': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/theme-search-algolia': 2.4.3(@algolia/client-search@4.24.0)(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/types': 2.4.3(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'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@types/react'
- - bufferutil
- - csso
- - debug
- - encoding
- - esbuild
- - eslint
- - lightningcss
- - search-insights
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
+ picocolors: 1.1.1
- '@docusaurus/react-loadable@5.5.2(react@18.3.1)':
+ '@changesets/parse@0.4.0':
dependencies:
- '@types/react': 18.3.12
- prop-types: 15.8.1
- react: 18.3.1
+ '@changesets/types': 6.0.0
+ js-yaml: 3.14.1
- '@docusaurus/theme-classic@2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
- dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3(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/module-type-aliases': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/plugin-content-blog': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-content-docs': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-content-pages': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/theme-common': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/theme-translations': 2.4.3
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@mdx-js/react': 1.6.22(react@18.3.1)
- clsx: 1.2.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.47
- prism-react-renderer: 1.3.5(react@18.3.1)
- prismjs: 1.29.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: 3.5.0
- tslib: 2.7.0
- utility-types: 3.11.0
- transitivePeerDependencies:
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
-
- '@docusaurus/theme-common@2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)':
- dependencies:
- '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3(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/module-type-aliases': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@docusaurus/plugin-content-blog': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-content-docs': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/plugin-content-pages': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@types/history': 4.7.11
- '@types/react': 18.3.8
- '@types/react-router-config': 5.0.11
- clsx: 1.2.1
- parse-numeric-range: 1.3.0
- prism-react-renderer: 1.3.5(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- tslib: 2.7.0
- use-sync-external-store: 1.2.2(react@18.3.1)
- utility-types: 3.11.0
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
-
- '@docusaurus/theme-search-algolia@2.4.3(@algolia/client-search@4.24.0)(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.3)(utf-8-validate@5.0.10)':
- dependencies:
- '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/logger': 2.4.3
- '@docusaurus/plugin-content-docs': 2.4.3(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/theme-common': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.8)(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@docusaurus/theme-translations': 2.4.3
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- algoliasearch: 4.24.0
- algoliasearch-helper: 3.22.5(algoliasearch@4.24.0)
- clsx: 1.2.1
- eta: 2.2.0
- fs-extra: 10.1.0
- lodash: 4.17.21
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- tslib: 2.7.0
- utility-types: 3.11.0
- transitivePeerDependencies:
- - '@algolia/client-search'
- - '@docusaurus/types'
- - '@parcel/css'
- - '@rspack/core'
- - '@swc/core'
- - '@swc/css'
- - '@types/react'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - search-insights
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
+ '@changesets/pre@2.0.1':
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
- '@docusaurus/theme-translations@2.4.3':
+ '@changesets/read@0.6.2':
dependencies:
- fs-extra: 10.1.0
- tslib: 2.7.0
+ '@changesets/git': 3.0.2
+ '@changesets/logger': 0.1.1
+ '@changesets/parse': 0.4.0
+ '@changesets/types': 6.0.0
+ fs-extra: 7.0.1
+ p-filter: 2.1.0
+ picocolors: 1.1.1
- '@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@changesets/should-skip-package@0.1.1':
dependencies:
- '@types/history': 4.7.11
- '@types/react': 18.3.8
- commander: 5.1.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.94.0
- webpack-merge: 5.10.0
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
- - webpack-cli
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+
+ '@changesets/types@4.1.0': {}
+
+ '@changesets/types@6.0.0': {}
- '@docusaurus/utils-common@2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ '@changesets/write@0.3.2':
dependencies:
- tslib: 2.7.0
- optionalDependencies:
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@changesets/types': 6.0.0
+ fs-extra: 7.0.1
+ human-id: 1.0.2
+ prettier: 2.8.8
- '@docusaurus/utils-validation@2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ '@coinbase/wallet-sdk@3.9.3':
dependencies:
- '@docusaurus/logger': 2.4.3
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- joi: 17.13.3
- js-yaml: 4.1.0
- tslib: 2.7.0
+ bn.js: 5.2.1
+ buffer: 6.0.3
+ clsx: 1.2.1
+ eth-block-tracker: 7.1.0
+ eth-json-rpc-filters: 6.0.1
+ eventemitter3: 5.0.1
+ keccak: 3.0.4
+ preact: 10.25.0
+ sha.js: 2.4.11
transitivePeerDependencies:
- - '@docusaurus/types'
- - '@swc/core'
- - esbuild
- supports-color
- - uglify-js
- - webpack-cli
- '@docusaurus/utils@2.4.3(@docusaurus/types@2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ '@coinbase/wallet-sdk@4.0.4':
dependencies:
- '@docusaurus/logger': 2.4.3
- '@svgr/webpack': 6.5.1
- escape-string-regexp: 4.0.0
- file-loader: 6.2.0(webpack@5.94.0)
- 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.8
- resolve-pathname: 3.0.0
- shelljs: 0.8.5
- tslib: 2.7.0
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.94.0))(webpack@5.94.0)
- webpack: 5.94.0
+ buffer: 6.0.3
+ clsx: 1.2.1
+ eventemitter3: 5.0.1
+ keccak: 3.0.4
+ preact: 10.24.3
+ sha.js: 2.4.11
+
+ '@colors/colors@1.5.0':
+ optional: true
+
+ '@conventional-changelog/git-client@1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)':
+ dependencies:
+ '@types/semver': 7.5.8
+ semver: 7.6.3
optionalDependencies:
- '@docusaurus/types': 2.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - supports-color
- - uglify-js
- - webpack-cli
+ conventional-commits-filter: 5.0.0
+ conventional-commits-parser: 6.0.0
+
+ '@cspotcode/source-map-support@0.8.1':
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.9
'@effect/schema@0.71.1(effect@3.6.5)':
dependencies:
@@ -16225,6 +12843,22 @@ snapshots:
'@emotion/memoize@0.9.0': {}
+ '@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.25.6
+ '@emotion/babel-plugin': 11.12.0
+ '@emotion/cache': 11.13.1
+ '@emotion/serialize': 1.3.2
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1)
+ '@emotion/utils': 1.4.1
+ '@emotion/weak-memoize': 0.4.0
+ hoist-non-react-statics: 3.3.2
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.12
+ transitivePeerDependencies:
+ - supports-color
+
'@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1)':
dependencies:
'@babel/runtime': 7.25.6
@@ -16247,9 +12881,24 @@ snapshots:
'@emotion/memoize': 0.9.0
'@emotion/unitless': 0.10.0
'@emotion/utils': 1.4.1
- csstype: 3.1.3
-
- '@emotion/sheet@1.4.0': {}
+ csstype: 3.1.3
+
+ '@emotion/sheet@1.4.0': {}
+
+ '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.25.6
+ '@emotion/babel-plugin': 11.12.0
+ '@emotion/is-prop-valid': 1.3.1
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/serialize': 1.3.2
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1)
+ '@emotion/utils': 1.4.1
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.12
+ transitivePeerDependencies:
+ - supports-color
'@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.8)(react@18.3.1))(@types/react@18.3.8)(react@18.3.1)':
dependencies:
@@ -16850,8 +13499,6 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
- '@leichtgewicht/ip-codec@2.0.5': {}
-
'@lit-labs/ssr-dom-shim@1.2.1': {}
'@lit/reactive-element@1.6.3':
@@ -16874,36 +13521,6 @@ snapshots:
globby: 11.1.0
read-yaml-file: 1.1.0
- '@mdx-js/mdx@1.6.22':
- dependencies:
- '@babel/core': 7.12.9
- '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
- '@mdx-js/util': 1.6.22
- babel-plugin-apply-mdx-type-prop: 1.6.22(@babel/core@7.12.9)
- babel-plugin-extract-import-names: 1.6.22
- camelcase-css: 2.0.1
- detab: 2.0.4
- hast-util-raw: 6.0.1
- lodash.uniq: 4.5.0
- mdast-util-to-hast: 10.0.1
- remark-footnotes: 2.0.0
- remark-mdx: 1.6.22
- remark-parse: 8.0.3
- remark-squeeze-paragraphs: 4.0.0
- style-to-object: 0.3.0
- unified: 9.2.0
- unist-builder: 2.0.3
- unist-util-visit: 2.0.3
- transitivePeerDependencies:
- - supports-color
-
- '@mdx-js/react@1.6.22(react@18.3.1)':
- dependencies:
- react: 18.3.1
-
- '@mdx-js/util@1.6.22': {}
-
'@metamask/eth-json-rpc-provider@1.0.1':
dependencies:
'@metamask/json-rpc-engine': 7.3.3
@@ -16997,30 +13614,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/sdk-install-modal-web@0.28.1(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@metamask/sdk-install-modal-web@0.28.1(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
i18next: 23.11.5
qr-code-styling: 1.6.0-rc.1
optionalDependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
+ react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@metamask/sdk-install-modal-web@0.28.1(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@metamask/sdk-install-modal-web@0.28.1(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
i18next: 23.11.5
qr-code-styling: 1.6.0-rc.1
optionalDependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
+ react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- '@metamask/sdk@0.28.4(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@metamask/sdk@0.28.4(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@metamask/onboarding': 1.0.1
'@metamask/providers': 16.1.0
'@metamask/sdk-communication-layer': 0.28.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))
- '@metamask/sdk-install-modal-web': 0.28.1(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@metamask/sdk-install-modal-web': 0.28.1(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
'@types/dom-screen-wake-lock': 1.0.3
'@types/uuid': 10.0.0
bowser: 2.11.0
@@ -17034,7 +13651,7 @@ snapshots:
obj-multiplex: 1.0.0
pump: 3.0.2
qrcode-terminal-nooctal: 0.12.1
- react-native-webview: 11.26.1(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-native-webview: 11.26.1(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
readable-stream: 3.6.2
rollup-plugin-visualizer: 5.12.0
socket.io-client: 4.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -17051,12 +13668,12 @@ snapshots:
- supports-color
- utf-8-validate
- '@metamask/sdk@0.28.4(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@metamask/sdk@0.28.4(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@metamask/onboarding': 1.0.1
'@metamask/providers': 16.1.0
'@metamask/sdk-communication-layer': 0.28.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))
- '@metamask/sdk-install-modal-web': 0.28.1(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@metamask/sdk-install-modal-web': 0.28.1(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
'@types/dom-screen-wake-lock': 1.0.3
'@types/uuid': 10.0.0
bowser: 2.11.0
@@ -17070,7 +13687,7 @@ snapshots:
obj-multiplex: 1.0.0
pump: 3.0.2
qrcode-terminal-nooctal: 0.12.1
- react-native-webview: 11.26.1(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-native-webview: 11.26.1(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
readable-stream: 3.6.2
rollup-plugin-visualizer: 5.12.0
socket.io-client: 4.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -17437,7 +14054,7 @@ snapshots:
chalk: 4.1.2
clean-stack: 3.0.1
cli-progress: 3.12.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
ejs: 3.1.10
get-package-type: 0.1.0
globby: 11.1.0
@@ -17614,8 +14231,6 @@ snapshots:
'@pkgr/core@0.1.1': {}
- '@polka/url@1.0.0-next.28': {}
-
'@popperjs/core@2.11.8': {}
'@prettier/sync@0.3.0(prettier@3.3.3)':
@@ -17645,7 +14260,7 @@ snapshots:
'@protobufjs/utf8@1.1.0': {}
- '@rainbow-me/rainbowkit@2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))':
+ '@rainbow-me/rainbowkit@2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))':
dependencies:
'@tanstack/react-query': 5.55.3(react@18.3.1)
'@vanilla-extract/css': 1.15.5(babel-plugin-macros@3.1.0)
@@ -17658,12 +14273,12 @@ snapshots:
react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1)
ua-parser-js: 1.0.39
viem: 2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
- wagmi: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ wagmi: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
transitivePeerDependencies:
- '@types/react'
- babel-plugin-macros
- '@rainbow-me/rainbowkit@2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))':
+ '@rainbow-me/rainbowkit@2.2.0(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))':
dependencies:
'@tanstack/react-query': 5.55.3(react@18.3.1)
'@vanilla-extract/css': 1.15.5(babel-plugin-macros@3.1.0)
@@ -17676,7 +14291,7 @@ snapshots:
react-remove-scroll: 2.6.0(@types/react@18.3.8)(react@18.3.1)
ua-parser-js: 1.0.39
viem: 2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
- wagmi: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ wagmi: 2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
transitivePeerDependencies:
- '@types/react'
- babel-plugin-macros
@@ -17807,14 +14422,14 @@ snapshots:
'@react-native/assets-registry@0.75.3': {}
- '@react-native/babel-plugin-codegen@0.75.3(@babel/preset-env@7.25.4(@babel/core@7.26.0))':
+ '@react-native/babel-plugin-codegen@0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))':
dependencies:
- '@react-native/codegen': 0.75.3(@babel/preset-env@7.25.4(@babel/core@7.26.0))
+ '@react-native/codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))':
+ '@react-native/babel-preset@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))':
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.0)
@@ -17858,33 +14473,33 @@ snapshots:
'@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
'@babel/template': 7.25.9
- '@react-native/babel-plugin-codegen': 0.75.3(@babel/preset-env@7.25.4(@babel/core@7.26.0))
+ '@react-native/babel-plugin-codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/codegen@0.75.3(@babel/preset-env@7.25.4(@babel/core@7.26.0))':
+ '@react-native/codegen@0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))':
dependencies:
'@babel/parser': 7.26.2
- '@babel/preset-env': 7.25.4(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
glob: 7.2.3
hermes-parser: 0.22.0
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.25.4(@babel/core@7.26.0))
+ jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.26.0))
mkdirp: 0.5.6
nullthrows: 1.1.1
yargs: 17.7.2
transitivePeerDependencies:
- supports-color
- '@react-native/community-cli-plugin@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@react-native/community-cli-plugin@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@react-native-community/cli-server-api': 14.1.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@react-native-community/cli-tools': 14.1.0
'@react-native/dev-middleware': 0.75.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@react-native/metro-babel-transformer': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))
+ '@react-native/metro-babel-transformer': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))
chalk: 4.1.2
execa: 5.1.1
metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -17926,10 +14541,10 @@ snapshots:
'@react-native/js-polyfills@0.75.3': {}
- '@react-native/metro-babel-transformer@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))':
+ '@react-native/metro-babel-transformer@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))':
dependencies:
'@babel/core': 7.26.0
- '@react-native/babel-preset': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))
+ '@react-native/babel-preset': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))
hermes-parser: 0.22.0
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -17938,21 +14553,21 @@ snapshots:
'@react-native/normalize-colors@0.75.3': {}
- '@react-native/virtualized-lists@0.75.3(@types/react@18.3.12)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.75.3(@types/react@18.3.12)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.3.1
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
+ react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
optionalDependencies:
'@types/react': 18.3.12
- '@react-native/virtualized-lists@0.75.3(@types/react@18.3.8)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.75.3(@types/react@18.3.8)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.3.1
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
+ react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
optionalDependencies:
'@types/react': 18.3.8
@@ -18185,8 +14800,6 @@ snapshots:
'@sinclair/typebox@0.27.8': {}
- '@sindresorhus/is@0.14.0': {}
-
'@sindresorhus/merge-streams@2.3.0': {}
'@sinonjs/commons@3.0.1':
@@ -18197,12 +14810,6 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
- '@slorber/static-site-generator-webpack-plugin@4.0.7':
- dependencies:
- eval: 0.1.8
- p-map: 4.0.0
- webpack-sources: 3.2.3
-
'@socket.io/component-emitter@3.1.2': {}
'@solidity-parser/parser@0.16.2':
@@ -18291,110 +14898,17 @@ snapshots:
'@stablelib/random': 1.0.2
'@stablelib/wipe': 1.0.1
- '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
-
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
-
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
-
- '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
-
- '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
-
- '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
-
- '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
-
- '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
-
- '@svgr/babel-preset@6.5.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.25.2)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.25.2)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.25.2)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.25.2)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.25.2)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.25.2)
-
- '@svgr/core@6.5.1':
- dependencies:
- '@babel/core': 7.25.2
- '@svgr/babel-preset': 6.5.1(@babel/core@7.25.2)
- '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
- camelcase: 6.3.0
- cosmiconfig: 7.1.0
- transitivePeerDependencies:
- - supports-color
-
- '@svgr/hast-util-to-babel-ast@6.5.1':
- dependencies:
- '@babel/types': 7.25.6
- entities: 4.5.0
-
- '@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)':
- dependencies:
- '@babel/core': 7.25.2
- '@svgr/babel-preset': 6.5.1(@babel/core@7.25.2)
- '@svgr/core': 6.5.1
- '@svgr/hast-util-to-babel-ast': 6.5.1
- svg-parser: 2.0.4
- transitivePeerDependencies:
- - supports-color
-
- '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)':
- dependencies:
- '@svgr/core': 6.5.1
- cosmiconfig: 7.1.0
- deepmerge: 4.3.1
- svgo: 2.8.0
-
- '@svgr/webpack@6.5.1':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-transform-react-constant-elements': 7.25.1(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@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)
- transitivePeerDependencies:
- - supports-color
-
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.13':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
'@swc/helpers@0.5.5':
dependencies:
'@swc/counter': 0.1.3
tslib: 2.7.0
- '@szmarczak/http-timer@1.1.2':
- dependencies:
- defer-to-connect: 1.1.3
-
'@tanstack/query-core@5.55.3': {}
'@tanstack/query-devtools@5.55.1': {}
@@ -18461,8 +14975,6 @@ snapshots:
'@tootallnate/once@2.0.0': {}
- '@trysound/sax@0.2.0': {}
-
'@tsconfig/node10@1.0.11': {}
'@tsconfig/node12@1.0.11': {}
@@ -18502,15 +15014,6 @@ snapshots:
dependencies:
'@types/node': 22.8.6
- '@types/body-parser@1.19.5':
- dependencies:
- '@types/connect': 3.4.38
- '@types/node': 22.8.6
-
- '@types/bonjour@3.5.13':
- dependencies:
- '@types/node': 22.6.1
-
'@types/chai-as-promised@7.1.8':
dependencies:
'@types/chai': 4.3.16
@@ -18525,11 +15028,6 @@ snapshots:
dependencies:
'@types/node': 8.10.66
- '@types/connect-history-api-fallback@1.5.4':
- dependencies:
- '@types/express-serve-static-core': 4.19.5
- '@types/node': 22.6.1
-
'@types/connect@3.4.38':
dependencies:
'@types/node': 22.6.1
@@ -18540,25 +15038,18 @@ snapshots:
'@types/dom-screen-wake-lock@1.0.3': {}
- '@types/estree@1.0.6': {}
-
- '@types/execa@0.9.0':
+ '@types/eslint@9.6.1':
dependencies:
- '@types/node': 22.6.1
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
+ optional: true
- '@types/express-serve-static-core@4.19.5':
- dependencies:
- '@types/node': 22.8.6
- '@types/qs': 6.9.16
- '@types/range-parser': 1.2.7
- '@types/send': 0.17.4
+ '@types/estree@1.0.6':
+ optional: true
- '@types/express@4.17.21':
+ '@types/execa@0.9.0':
dependencies:
- '@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.19.5
- '@types/qs': 6.9.16
- '@types/serve-static': 1.15.7
+ '@types/node': 22.6.1
'@types/form-data@0.0.33':
dependencies:
@@ -18571,22 +15062,12 @@ snapshots:
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 22.6.1
+ '@types/node': 22.8.6
'@types/hast@2.3.10':
dependencies:
'@types/unist': 2.0.11
- '@types/history@4.7.11': {}
-
- '@types/html-minifier-terser@6.1.0': {}
-
- '@types/http-errors@2.0.4': {}
-
- '@types/http-proxy@1.17.15':
- dependencies:
- '@types/node': 22.8.6
-
'@types/istanbul-lib-coverage@2.0.6': {}
'@types/istanbul-lib-report@3.0.3':
@@ -18608,14 +15089,11 @@ snapshots:
'@types/tough-cookie': 4.0.5
parse5: 7.1.2
- '@types/json-schema@7.0.15': {}
+ '@types/json-schema@7.0.15':
+ optional: true
'@types/json5@0.0.29': {}
- '@types/keyv@3.1.4':
- dependencies:
- '@types/node': 22.8.6
-
'@types/lodash.mergewith@4.6.7':
dependencies:
'@types/lodash': 4.17.9
@@ -18632,8 +15110,6 @@ snapshots:
'@types/memory-cache@0.2.6': {}
- '@types/mime@1.3.5': {}
-
'@types/minimatch@3.0.5': {}
'@types/minimatch@5.1.2': {}
@@ -18652,8 +15128,6 @@ snapshots:
'@types/node@12.20.55': {}
- '@types/node@17.0.45': {}
-
'@types/node@22.6.1':
dependencies:
undici-types: 6.19.8
@@ -18672,7 +15146,7 @@ snapshots:
'@types/parse-json@4.0.2': {}
- '@types/parse5@5.0.3': {}
+ '@types/parse5@6.0.3': {}
'@types/pbkdf2@3.1.2':
dependencies:
@@ -18682,29 +15156,10 @@ snapshots:
'@types/qs@6.9.16': {}
- '@types/range-parser@1.2.7': {}
-
'@types/react-dom@18.3.0':
dependencies:
'@types/react': 18.3.8
- '@types/react-router-config@5.0.11':
- dependencies:
- '@types/history': 4.7.11
- '@types/react': 18.3.8
- '@types/react-router': 5.1.20
-
- '@types/react-router-dom@5.3.3':
- dependencies:
- '@types/history': 4.7.11
- '@types/react': 18.3.12
- '@types/react-router': 5.1.20
-
- '@types/react-router@5.1.20':
- dependencies:
- '@types/history': 4.7.11
- '@types/react': 18.3.12
-
'@types/react-table@7.7.20':
dependencies:
'@types/react': 18.3.8
@@ -18713,47 +15168,19 @@ snapshots:
dependencies:
'@types/prop-types': 15.7.13
csstype: 3.1.3
+ optional: true
'@types/react@18.3.8':
dependencies:
'@types/prop-types': 15.7.13
csstype: 3.1.3
- '@types/responselike@1.0.3':
- dependencies:
- '@types/node': 22.8.6
-
- '@types/retry@0.12.0': {}
-
- '@types/sax@1.2.7':
- dependencies:
- '@types/node': 17.0.45
-
'@types/secp256k1@4.0.6':
dependencies:
'@types/node': 22.8.6
'@types/semver@7.5.8': {}
- '@types/send@0.17.4':
- dependencies:
- '@types/mime': 1.3.5
- '@types/node': 22.6.1
-
- '@types/serve-index@1.9.4':
- dependencies:
- '@types/express': 4.17.21
-
- '@types/serve-static@1.15.7':
- dependencies:
- '@types/http-errors': 2.0.4
- '@types/node': 22.6.1
- '@types/send': 0.17.4
-
- '@types/sockjs@0.3.36':
- dependencies:
- '@types/node': 22.6.1
-
'@types/stack-utils@2.0.3': {}
'@types/stylis@4.2.5': {}
@@ -18770,10 +15197,6 @@ snapshots:
dependencies:
'@types/node': 22.6.1
- '@types/ws@8.5.12':
- dependencies:
- '@types/node': 22.6.1
-
'@types/yargs-parser@21.0.3': {}
'@types/yargs@15.0.19':
@@ -18970,10 +15393,10 @@ snapshots:
next: 14.2.13(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
- '@wagmi/connectors@5.1.15(@types/react@18.3.12)(@wagmi/core@2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.12)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)':
+ '@wagmi/connectors@5.1.15(@types/react@18.3.12)(@wagmi/core@2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.12)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)':
dependencies:
'@coinbase/wallet-sdk': 4.0.4
- '@metamask/sdk': 0.28.4(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)
+ '@metamask/sdk': 0.28.4(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)
'@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
'@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
'@wagmi/core': 2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.12)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))
@@ -19009,10 +15432,10 @@ snapshots:
- utf-8-validate
- zod
- '@wagmi/connectors@5.1.15(@types/react@18.3.8)(@wagmi/core@2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.8)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)':
+ '@wagmi/connectors@5.1.15(@types/react@18.3.8)(@wagmi/core@2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.8)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)':
dependencies:
'@coinbase/wallet-sdk': 4.0.4
- '@metamask/sdk': 0.28.4(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)
+ '@metamask/sdk': 0.28.4(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)
'@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
'@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)
'@wagmi/core': 2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.8)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))
@@ -19451,82 +15874,6 @@ snapshots:
'@walletconnect/window-getters': 1.0.1
tslib: 1.14.1
- '@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.6': {}
-
- '@webassemblyjs/helper-api-error@1.11.6': {}
-
- '@webassemblyjs/helper-buffer@1.12.1': {}
-
- '@webassemblyjs/helper-numbers@1.11.6':
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.6
- '@webassemblyjs/helper-api-error': 1.11.6
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
-
- '@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.6':
- dependencies:
- '@xtuc/ieee754': 1.2.0
-
- '@webassemblyjs/leb128@1.11.6':
- dependencies:
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/utf8@1.11.6': {}
-
- '@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.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/wasm-opt@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
-
- '@webassemblyjs/wasm-parser@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-api-error': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
-
- '@webassemblyjs/wast-printer@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@xtuc/long': 4.2.2
-
'@whatwg-node/events@0.0.3': {}
'@whatwg-node/fetch@0.8.8':
@@ -19565,10 +15912,6 @@ snapshots:
dependencies:
tslib: 2.7.0
- '@xtuc/ieee754@1.2.0': {}
-
- '@xtuc/long@4.2.2': {}
-
'@zag-js/dom-query@0.16.0': {}
'@zag-js/element-size@0.10.5': {}
@@ -19632,13 +15975,9 @@ snapshots:
acorn: 8.12.1
acorn-walk: 8.3.4
- acorn-import-attributes@1.9.5(acorn@8.12.1):
- dependencies:
- acorn: 8.12.1
-
- acorn-jsx@5.3.2(acorn@8.12.1):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-walk@8.3.4:
dependencies:
@@ -19650,8 +15989,6 @@ snapshots:
add-stream@1.0.0: {}
- address@1.2.2: {}
-
adm-zip@0.4.16: {}
adm-zip@0.5.16: {}
@@ -19673,15 +16010,6 @@ snapshots:
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.17.1):
- dependencies:
- ajv: 8.17.1
- fast-deep-equal: 3.1.3
-
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -19703,29 +16031,6 @@ snapshots:
ts-toolbelt: 9.6.0
zod: 3.23.8
- algoliasearch-helper@3.22.5(algoliasearch@4.24.0):
- dependencies:
- '@algolia/events': 4.0.1
- 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
-
amdefine@1.0.1:
optional: true
@@ -19751,8 +16056,6 @@ snapshots:
slice-ansi: 2.1.0
strip-ansi: 5.2.0
- ansi-html-community@0.0.8: {}
-
ansi-regex@4.1.1: {}
ansi-regex@5.0.1: {}
@@ -19839,8 +16142,6 @@ snapshots:
arg@4.1.3: {}
- arg@5.0.2: {}
-
argparse@1.0.10:
dependencies:
sprintf-js: 1.0.3
@@ -19938,7 +16239,7 @@ snapshots:
dependencies:
pvtsutils: 1.3.5
pvutils: 1.1.3
- tslib: 2.7.0
+ tslib: 2.8.1
assemblyscript@0.19.10:
dependencies:
@@ -19987,16 +16288,6 @@ snapshots:
atomically@1.7.0: {}
- autoprefixer@10.4.20(postcss@8.4.47):
- dependencies:
- browserslist: 4.23.3
- caniuse-lite: 1.0.30001663
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.0
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.0.0
@@ -20009,12 +16300,6 @@ snapshots:
transitivePeerDependencies:
- debug
- axios@0.25.0:
- dependencies:
- follow-redirects: 1.15.9(debug@4.3.4)
- transitivePeerDependencies:
- - debug
-
axios@1.7.7:
dependencies:
follow-redirects: 1.15.9(debug@4.3.4)
@@ -20056,29 +16341,6 @@ snapshots:
- supports-color
optional: true
- babel-loader@8.4.1(@babel/core@7.25.2)(webpack@5.94.0):
- dependencies:
- '@babel/core': 7.25.2
- find-cache-dir: 3.3.2
- loader-utils: 2.0.4
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.94.0
-
- babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9):
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.10.4
- '@mdx-js/util': 1.6.22
-
- babel-plugin-dynamic-import-node@2.3.3:
- dependencies:
- object.assign: 4.1.5
-
- babel-plugin-extract-import-names@1.6.22:
- dependencies:
- '@babel/helper-plugin-utils': 7.10.4
-
babel-plugin-istanbul@6.1.1:
dependencies:
'@babel/helper-plugin-utils': 7.24.8
@@ -20097,65 +16359,25 @@ snapshots:
'@types/babel__traverse': 7.20.6
babel-plugin-macros@3.1.0:
- dependencies:
- '@babel/runtime': 7.25.6
- cosmiconfig: 7.1.0
- resolve: 1.22.8
-
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
- dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/core': 7.25.2
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0):
- dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
- dependencies:
- '@babel/compat-data': 7.26.2
- '@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-corejs3@0.10.6(@babel/core@7.25.2):
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
- core-js-compat: 3.38.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
- core-js-compat: 3.38.1
- transitivePeerDependencies:
- - supports-color
+ dependencies:
+ '@babel/runtime': 7.25.6
+ cosmiconfig: 7.1.0
+ resolve: 1.22.8
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2):
+ babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ '@babel/compat-data': 7.26.2
+ '@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-regenerator@0.6.2(@babel/core@7.26.0):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
@@ -20224,7 +16446,7 @@ snapshots:
babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
optional: true
- bail@1.0.5: {}
+ bail@2.0.2: {}
balanced-match@1.0.2: {}
@@ -20236,12 +16458,8 @@ snapshots:
base-x@4.0.0: {}
- base16@1.0.0: {}
-
base64-js@1.5.1: {}
- batch@0.6.1: {}
-
better-path-resolve@1.0.0:
dependencies:
is-windows: 1.0.2
@@ -20250,8 +16468,6 @@ snapshots:
dependencies:
require-from-string: 2.0.2
- big.js@5.2.2: {}
-
binary-extensions@2.3.0: {}
binary-install-raw@0.0.13(debug@4.3.4):
@@ -20314,13 +16530,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- bonjour-service@1.2.1:
- dependencies:
- fast-deep-equal: 3.1.3
- multicast-dns: 7.2.5
-
- boolbase@1.0.0: {}
-
bowser@2.11.0: {}
boxen@5.1.2:
@@ -20334,17 +16543,6 @@ snapshots:
widest-line: 3.1.0
wrap-ansi: 7.0.0
- boxen@6.2.1:
- dependencies:
- ansi-align: 3.0.1
- camelcase: 6.3.0
- chalk: 4.1.2
- cli-boxes: 3.0.0
- string-width: 5.1.2
- type-fest: 2.19.0
- widest-line: 4.0.1
- wrap-ansi: 8.1.0
-
brace-expansion@1.1.11:
dependencies:
balanced-match: 1.0.2
@@ -20385,10 +16583,10 @@ snapshots:
browserslist@4.23.3:
dependencies:
- caniuse-lite: 1.0.30001663
- electron-to-chromium: 1.5.28
+ caniuse-lite: 1.0.30001684
+ electron-to-chromium: 1.5.67
node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.23.3)
+ update-browserslist-db: 1.1.1(browserslist@4.23.3)
browserslist@4.24.2:
dependencies:
@@ -20452,20 +16650,8 @@ snapshots:
dependencies:
streamsearch: 1.1.0
- bytes@3.0.0: {}
-
bytes@3.1.2: {}
- cacheable-request@6.1.0:
- dependencies:
- clone-response: 1.0.3
- get-stream: 5.2.0
- http-cache-semantics: 4.1.1
- keyv: 3.1.0
- lowercase-keys: 2.0.0
- normalize-url: 4.5.1
- responselike: 1.0.2
-
call-bind@1.0.7:
dependencies:
es-define-property: 1.0.0
@@ -20486,26 +16672,12 @@ snapshots:
callsites@3.1.0: {}
- camel-case@4.1.2:
- dependencies:
- pascal-case: 3.1.2
- tslib: 2.7.0
-
- camelcase-css@2.0.1: {}
-
camelcase@5.3.1: {}
camelcase@6.3.0: {}
camelize@1.0.1: {}
- caniuse-api@3.0.0:
- dependencies:
- browserslist: 4.23.3
- caniuse-lite: 1.0.30001663
- lodash.memoize: 4.1.2
- lodash.uniq: 4.5.0
-
caniuse-lite@1.0.30001663: {}
caniuse-lite@1.0.30001684: {}
@@ -20527,7 +16699,7 @@ snapshots:
cborg@1.10.2: {}
- ccount@1.1.0: {}
+ ccount@2.0.1: {}
chai-as-promised@7.1.2(chai@4.5.0):
dependencies:
@@ -20568,11 +16740,11 @@ snapshots:
char-regex@1.0.2: {}
- character-entities-legacy@1.1.4: {}
+ character-entities-html4@2.1.0: {}
- character-entities@1.2.4: {}
+ character-entities-legacy@3.0.0: {}
- character-reference-invalid@1.1.4: {}
+ character-entities@2.0.2: {}
chardet@0.7.0: {}
@@ -20582,29 +16754,6 @@ snapshots:
dependencies:
get-func-name: 2.0.2
- cheerio-select@2.1.0:
- dependencies:
- boolbase: 1.0.0
- css-select: 5.1.0
- css-what: 6.1.0
- domelementtype: 2.3.0
- domhandler: 5.0.3
- domutils: 3.1.0
-
- cheerio@1.0.0:
- dependencies:
- cheerio-select: 2.1.0
- dom-serializer: 2.0.0
- domhandler: 5.0.3
- domutils: 3.1.0
- encoding-sniffer: 0.2.0
- htmlparser2: 9.1.0
- parse5: 7.1.2
- parse5-htmlparser2-tree-adapter: 7.0.0
- parse5-parser-stream: 7.1.2
- undici: 6.19.8
- whatwg-mimetype: 4.0.0
-
chokidar@3.5.3:
dependencies:
anymatch: 3.1.3
@@ -20646,8 +16795,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- chrome-trace-event@1.0.4: {}
-
chromium-edge-launcher@0.2.0:
dependencies:
'@types/node': 22.8.6
@@ -20674,10 +16821,6 @@ snapshots:
cjs-module-lexer@1.4.1: {}
- clean-css@5.3.3:
- dependencies:
- source-map: 0.6.1
-
clean-stack@2.2.0: {}
clean-stack@3.0.1:
@@ -20686,8 +16829,6 @@ snapshots:
cli-boxes@2.2.1: {}
- cli-boxes@3.0.0: {}
-
cli-cursor@3.1.0:
dependencies:
restore-cursor: 3.1.0
@@ -20764,10 +16905,6 @@ snapshots:
kind-of: 6.0.3
shallow-clone: 3.0.1
- clone-response@1.0.3:
- dependencies:
- mimic-response: 1.0.1
-
clone@1.0.4: {}
clone@2.1.2: {}
@@ -20778,8 +16915,6 @@ snapshots:
co@4.6.0: {}
- collapse-white-space@1.0.6: {}
-
collect-v8-coverage@1.0.2: {}
color-convert@1.9.3:
@@ -20801,21 +16936,17 @@ snapshots:
color2k@2.0.3: {}
- colord@2.9.3: {}
-
colorette@1.4.0: {}
colorette@2.0.20: {}
colors@1.4.0: {}
- combine-promises@1.2.0: {}
-
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
- comma-separated-tokens@1.0.8: {}
+ comma-separated-tokens@2.0.3: {}
command-exists@1.2.9: {}
@@ -20825,10 +16956,6 @@ snapshots:
commander@2.20.3: {}
- commander@5.1.0: {}
-
- commander@7.2.0: {}
-
commander@8.3.0: {}
commander@9.5.0: {}
@@ -20851,18 +16978,6 @@ snapshots:
dependencies:
mime-db: 1.53.0
- compression@1.7.4:
- dependencies:
- accepts: 1.3.8
- bytes: 3.0.0
- compressible: 2.0.18
- debug: 2.6.9
- on-headers: 1.0.2
- safe-buffer: 5.1.2
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
compression@1.7.5:
dependencies:
bytes: 3.1.2
@@ -20935,19 +17050,8 @@ snapshots:
- typescript
- utf-8-validate
- configstore@5.0.1:
- dependencies:
- dot-prop: 5.3.0
- graceful-fs: 4.2.11
- make-dir: 3.1.0
- unique-string: 2.0.0
- write-file-atomic: 3.0.3
- xdg-basedir: 4.0.0
-
confusing-browser-globals@1.0.11: {}
- connect-history-api-fallback@2.0.0: {}
-
connect@3.7.0:
dependencies:
debug: 2.6.9
@@ -20957,12 +17061,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
- consola@2.15.3: {}
-
consola@3.2.3: {}
- content-disposition@0.5.2: {}
-
content-disposition@0.5.4:
dependencies:
safe-buffer: 5.2.1
@@ -21061,29 +17161,13 @@ snapshots:
cookie@0.6.0: {}
- copy-text-to-clipboard@3.2.0: {}
-
copy-to-clipboard@3.3.3:
dependencies:
toggle-selection: 1.0.6
- copy-webpack-plugin@11.0.0(webpack@5.94.0):
- dependencies:
- fast-glob: 3.3.2
- glob-parent: 6.0.2
- globby: 13.2.2
- normalize-path: 3.0.0
- schema-utils: 4.2.0
- serialize-javascript: 6.0.2
- webpack: 5.94.0
-
core-js-compat@3.38.1:
dependencies:
- browserslist: 4.23.3
-
- core-js-pure@3.38.1: {}
-
- core-js@3.38.1: {}
+ browserslist: 4.24.2
core-util-is@1.0.3: {}
@@ -21094,14 +17178,6 @@ snapshots:
js-yaml: 3.14.1
parse-json: 4.0.0
- cosmiconfig@6.0.0:
- dependencies:
- '@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@7.0.1:
dependencies:
'@types/parse-json': 4.0.2
@@ -21239,134 +17315,24 @@ snapshots:
crypto-js@4.2.0: {}
- crypto-random-string@2.0.0: {}
-
css-box-model@1.2.1:
dependencies:
tiny-invariant: 1.3.3
css-color-keywords@1.0.0: {}
- css-declaration-sorter@6.4.1(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
- css-loader@6.11.0(webpack@5.94.0):
- dependencies:
- icss-utils: 5.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
- postcss-modules-scope: 3.2.0(postcss@8.4.47)
- postcss-modules-values: 4.0.0(postcss@8.4.47)
- postcss-value-parser: 4.2.0
- semver: 7.6.3
- optionalDependencies:
- webpack: 5.94.0
-
- css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.3)(webpack@5.94.0):
- dependencies:
- cssnano: 5.1.15(postcss@8.4.47)
- jest-worker: 29.7.0
- postcss: 8.4.47
- schema-utils: 4.2.0
- serialize-javascript: 6.0.2
- source-map: 0.6.1
- webpack: 5.94.0
- optionalDependencies:
- clean-css: 5.3.3
-
- css-select@4.3.0:
- dependencies:
- boolbase: 1.0.0
- css-what: 6.1.0
- domhandler: 4.3.1
- domutils: 2.8.0
- 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.1.1
-
css-to-react-native@3.2.0:
dependencies:
camelize: 1.0.1
css-color-keywords: 1.0.0
postcss-value-parser: 4.2.0
- css-tree@1.1.3:
- dependencies:
- mdn-data: 2.0.14
- source-map: 0.6.1
-
css-what@6.1.0: {}
css.escape@1.5.1: {}
cssesc@3.0.0: {}
- cssnano-preset-advanced@5.3.10(postcss@8.4.47):
- dependencies:
- autoprefixer: 10.4.20(postcss@8.4.47)
- cssnano-preset-default: 5.2.14(postcss@8.4.47)
- postcss: 8.4.47
- postcss-discard-unused: 5.1.0(postcss@8.4.47)
- postcss-merge-idents: 5.1.1(postcss@8.4.47)
- postcss-reduce-idents: 5.2.0(postcss@8.4.47)
- postcss-zindex: 5.1.0(postcss@8.4.47)
-
- cssnano-preset-default@5.2.14(postcss@8.4.47):
- dependencies:
- css-declaration-sorter: 6.4.1(postcss@8.4.47)
- cssnano-utils: 3.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-calc: 8.2.4(postcss@8.4.47)
- postcss-colormin: 5.3.1(postcss@8.4.47)
- postcss-convert-values: 5.1.3(postcss@8.4.47)
- postcss-discard-comments: 5.1.2(postcss@8.4.47)
- postcss-discard-duplicates: 5.1.0(postcss@8.4.47)
- postcss-discard-empty: 5.1.1(postcss@8.4.47)
- postcss-discard-overridden: 5.1.0(postcss@8.4.47)
- postcss-merge-longhand: 5.1.7(postcss@8.4.47)
- postcss-merge-rules: 5.1.4(postcss@8.4.47)
- postcss-minify-font-values: 5.1.0(postcss@8.4.47)
- postcss-minify-gradients: 5.1.1(postcss@8.4.47)
- postcss-minify-params: 5.1.4(postcss@8.4.47)
- postcss-minify-selectors: 5.2.1(postcss@8.4.47)
- postcss-normalize-charset: 5.1.0(postcss@8.4.47)
- postcss-normalize-display-values: 5.1.0(postcss@8.4.47)
- postcss-normalize-positions: 5.1.1(postcss@8.4.47)
- postcss-normalize-repeat-style: 5.1.1(postcss@8.4.47)
- postcss-normalize-string: 5.1.0(postcss@8.4.47)
- postcss-normalize-timing-functions: 5.1.0(postcss@8.4.47)
- postcss-normalize-unicode: 5.1.1(postcss@8.4.47)
- postcss-normalize-url: 5.1.0(postcss@8.4.47)
- postcss-normalize-whitespace: 5.1.1(postcss@8.4.47)
- postcss-ordered-values: 5.1.3(postcss@8.4.47)
- postcss-reduce-initial: 5.1.2(postcss@8.4.47)
- postcss-reduce-transforms: 5.1.0(postcss@8.4.47)
- postcss-svgo: 5.1.0(postcss@8.4.47)
- postcss-unique-selectors: 5.1.1(postcss@8.4.47)
-
- cssnano-utils@3.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
- cssnano@5.1.15(postcss@8.4.47):
- dependencies:
- cssnano-preset-default: 5.2.14(postcss@8.4.47)
- lilconfig: 2.1.0
- postcss: 8.4.47
- yaml: 1.10.2
-
- csso@4.2.0:
- dependencies:
- css-tree: 1.1.3
-
cssom@0.3.8: {}
cssom@0.5.0: {}
@@ -21419,8 +17385,6 @@ snapshots:
dependencies:
mimic-fn: 3.1.0
- debounce@1.2.1: {}
-
debug@2.6.9:
dependencies:
ms: 2.0.0
@@ -21447,11 +17411,11 @@ snapshots:
decimal.js@10.4.3: {}
- decode-uri-component@0.2.2: {}
-
- decompress-response@3.3.0:
+ decode-named-character-reference@1.0.2:
dependencies:
- mimic-response: 1.0.1
+ character-entities: 2.0.2
+
+ decode-uri-component@0.2.2: {}
dedent@1.5.3(babel-plugin-macros@3.1.0):
optionalDependencies:
@@ -21482,24 +17446,16 @@ snapshots:
which-collection: 1.0.2
which-typed-array: 1.1.15
- deep-extend@0.6.0: {}
-
deep-is@0.1.4: {}
deep-object-diff@1.1.9: {}
deepmerge@4.3.1: {}
- default-gateway@6.0.3:
- dependencies:
- execa: 5.1.1
-
defaults@1.0.4:
dependencies:
clone: 1.0.4
- defer-to-connect@1.1.3: {}
-
define-data-property@1.1.4:
dependencies:
es-define-property: 1.0.0
@@ -21516,25 +17472,12 @@ snapshots:
defu@6.1.4: {}
- del@6.1.1:
- dependencies:
- globby: 11.1.0
- graceful-fs: 4.2.11
- is-glob: 4.0.3
- is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
- p-map: 4.0.0
- rimraf: 3.0.2
- slash: 3.0.0
-
delay@5.0.0: {}
delayed-stream@1.0.0: {}
denodeify@1.2.1: {}
- depd@1.1.2: {}
-
depd@2.0.0: {}
dequal@2.0.3: {}
@@ -21543,10 +17486,6 @@ snapshots:
destroy@1.2.0: {}
- detab@2.0.4:
- dependencies:
- repeat-string: 1.6.1
-
detect-browser@5.3.0: {}
detect-indent@6.1.0: {}
@@ -21557,22 +17496,6 @@ snapshots:
detect-node-es@1.1.0: {}
- detect-node@2.1.0: {}
-
- detect-port-alt@1.1.6:
- dependencies:
- address: 1.2.2
- debug: 2.6.9
- transitivePeerDependencies:
- - supports-color
-
- detect-port@1.6.1:
- dependencies:
- address: 1.2.2
- debug: 4.3.7(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
-
dfa@1.2.0: {}
diff-sequences@29.6.3: {}
@@ -21593,17 +17516,13 @@ snapshots:
dns-over-http-resolver@1.2.3(node-fetch@2.7.0(encoding@0.1.13)):
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
native-fetch: 3.0.0(node-fetch@2.7.0(encoding@0.1.13))
receptacle: 1.3.2
transitivePeerDependencies:
- node-fetch
- supports-color
- dns-packet@5.6.1:
- dependencies:
- '@leichtgewicht/ip-codec': 2.0.5
-
docker-compose@0.23.19:
dependencies:
yaml: 1.10.2
@@ -21637,53 +17556,10 @@ snapshots:
dom-accessibility-api@0.6.3: {}
- dom-converter@0.2.0:
- dependencies:
- utila: 0.4.0
-
- dom-serializer@1.4.1:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 4.3.1
- entities: 2.2.0
-
- dom-serializer@2.0.0:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- entities: 4.5.0
-
- domelementtype@2.3.0: {}
-
domexception@4.0.0:
dependencies:
webidl-conversions: 7.0.0
- domhandler@4.3.1:
- dependencies:
- domelementtype: 2.3.0
-
- domhandler@5.0.3:
- dependencies:
- domelementtype: 2.3.0
-
- domutils@2.8.0:
- dependencies:
- dom-serializer: 1.4.1
- domelementtype: 2.3.0
- domhandler: 4.3.1
-
- domutils@3.1.0:
- dependencies:
- dom-serializer: 2.0.0
- domelementtype: 2.3.0
- domhandler: 5.0.3
-
- dot-case@3.0.4:
- dependencies:
- no-case: 3.0.4
- tslib: 2.7.0
-
dot-prop@5.3.0:
dependencies:
is-obj: 2.0.0
@@ -21694,10 +17570,6 @@ snapshots:
dotenv@16.4.5: {}
- duplexer3@0.1.5: {}
-
- duplexer@0.1.2: {}
-
duplexify@4.1.3:
dependencies:
end-of-stream: 1.4.4
@@ -21729,8 +17601,6 @@ snapshots:
dependencies:
encoding: 0.1.13
- electron-to-chromium@1.5.28: {}
-
electron-to-chromium@1.5.67: {}
elliptic@6.5.4:
@@ -21761,21 +17631,12 @@ snapshots:
emoji-regex@9.2.2: {}
- emojis-list@3.0.0: {}
-
- emoticon@3.2.0: {}
-
encode-utf8@1.0.3: {}
encodeurl@1.0.2: {}
encodeurl@2.0.0: {}
- encoding-sniffer@0.2.0:
- dependencies:
- iconv-lite: 0.6.3
- whatwg-encoding: 3.1.1
-
encoding@0.1.13:
dependencies:
iconv-lite: 0.6.3
@@ -21812,8 +17673,6 @@ snapshots:
ansi-colors: 4.1.3
strip-ansi: 6.0.1
- entities@2.2.0: {}
-
entities@4.5.0: {}
env-paths@2.2.1: {}
@@ -21921,8 +17780,6 @@ snapshots:
iterator.prototype: 1.1.2
safe-array-concat: 1.1.2
- es-module-lexer@1.5.4: {}
-
es-object-atoms@1.0.0:
dependencies:
es-errors: 1.3.0
@@ -21951,8 +17808,6 @@ snapshots:
escalade@3.2.0: {}
- escape-goat@2.1.1: {}
-
escape-html@1.0.3: {}
escape-string-regexp@1.0.5: {}
@@ -22038,7 +17893,7 @@ snapshots:
debug: 4.3.7(supports-color@8.1.1)
enhanced-resolve: 5.17.1
eslint: 8.56.0
- eslint-module-utils: 2.11.1(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0)
+ eslint-module-utils: 2.11.1(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.56.0))(eslint@8.56.0)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
@@ -22061,7 +17916,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.11.1(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0):
+ eslint-module-utils@2.11.1(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.56.0))(eslint@8.56.0):
dependencies:
debug: 3.2.7
optionalDependencies:
@@ -22111,7 +17966,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.11.1(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0)
+ eslint-module-utils: 2.11.1(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.56.0))(eslint@8.56.0)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -22155,13 +18010,14 @@ snapshots:
globals: 13.24.0
rambda: 7.5.0
- eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.3.3):
+ eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.3.3):
dependencies:
eslint: 8.56.0
prettier: 3.3.3
prettier-linter-helpers: 1.0.0
synckit: 0.9.1
optionalDependencies:
+ '@types/eslint': 9.6.1
eslint-config-prettier: 9.1.0(eslint@8.56.0)
eslint-plugin-promise@7.1.0(eslint@8.56.0):
@@ -22229,7 +18085,7 @@ snapshots:
'@ungap/structured-clone': 1.2.0
ajv: 6.12.6
chalk: 4.1.2
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
debug: 4.3.7(supports-color@8.1.1)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
@@ -22262,8 +18118,8 @@ snapshots:
espree@9.6.1:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
eslint-visitor-keys: 3.4.3
esprima@2.7.3: {}
@@ -22286,8 +18142,6 @@ snapshots:
esutils@2.0.3: {}
- eta@2.2.0: {}
-
etag@1.8.1: {}
eth-block-tracker@7.1.0:
@@ -22399,17 +18253,10 @@ snapshots:
is-hex-prefixed: 1.0.0
strip-hex-prefix: 1.0.0
- eval@0.1.8:
- dependencies:
- '@types/node': 22.6.1
- require-like: 0.1.2
-
event-target-shim@5.0.1: {}
eventemitter2@6.4.9: {}
- eventemitter3@4.0.7: {}
-
eventemitter3@5.0.1: {}
events@3.3.0: {}
@@ -22431,7 +18278,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
@@ -22443,7 +18290,7 @@ snapshots:
execa@6.1.0:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 6.0.1
human-signals: 3.0.1
is-stream: 3.0.0
@@ -22586,38 +18433,10 @@ snapshots:
dependencies:
reusify: 1.0.4
- faye-websocket@0.11.4:
- dependencies:
- websocket-driver: 0.7.4
-
fb-watchman@2.0.2:
dependencies:
bser: 2.1.1
- fbemitter@3.0.0(encoding@0.1.13):
- dependencies:
- fbjs: 3.0.5(encoding@0.1.13)
- transitivePeerDependencies:
- - encoding
-
- fbjs-css-vars@1.0.2: {}
-
- fbjs@3.0.5(encoding@0.1.13):
- dependencies:
- cross-fetch: 3.1.8(encoding@0.1.13)
- fbjs-css-vars: 1.0.2
- loose-envify: 1.4.0
- object-assign: 4.1.1
- promise: 7.3.1
- setimmediate: 1.0.5
- ua-parser-js: 1.0.39
- transitivePeerDependencies:
- - encoding
-
- feed@4.2.2:
- dependencies:
- xml-js: 1.6.11
-
fetch-blob@3.2.0:
dependencies:
node-domexception: 1.0.0
@@ -22632,18 +18451,10 @@ snapshots:
dependencies:
flat-cache: 3.2.0
- file-loader@6.2.0(webpack@5.94.0):
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 3.3.0
- webpack: 5.94.0
-
filelist@1.0.4:
dependencies:
minimatch: 5.1.6
- filesize@8.0.7: {}
-
fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
@@ -22680,12 +18491,6 @@ snapshots:
make-dir: 2.1.0
pkg-dir: 3.0.0
- find-cache-dir@3.3.2:
- dependencies:
- commondir: 1.0.1
- make-dir: 3.1.0
- pkg-dir: 4.2.0
-
find-root@1.1.0: {}
find-up-simple@1.0.0: {}
@@ -22722,14 +18527,6 @@ snapshots:
flow-parser@0.255.0: {}
- flux@4.0.4(encoding@0.1.13)(react@18.3.1):
- dependencies:
- fbemitter: 3.0.0(encoding@0.1.13)
- fbjs: 3.0.5(encoding@0.1.13)
- react: 18.3.1
- transitivePeerDependencies:
- - encoding
-
focus-lock@1.3.5:
dependencies:
tslib: 2.7.0
@@ -22754,36 +18551,16 @@ snapshots:
restructure: 3.0.2
tiny-inflate: 1.0.3
unicode-properties: 1.4.1
- unicode-trie: 2.0.0
-
- for-each@0.3.3:
- dependencies:
- is-callable: 1.2.7
-
- foreground-child@3.3.0:
- dependencies:
- cross-spawn: 7.0.3
- signal-exit: 4.1.0
-
- fork-ts-checker-webpack-plugin@6.5.3(eslint@8.56.0)(typescript@5.6.3)(webpack@5.94.0):
- dependencies:
- '@babel/code-frame': 7.24.7
- '@types/json-schema': 7.0.15
- chalk: 4.1.2
- chokidar: 3.6.0
- 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.6.3
- tapable: 1.1.3
- typescript: 5.6.3
- webpack: 5.94.0
- optionalDependencies:
- eslint: 8.56.0
+ unicode-trie: 2.0.0
+
+ for-each@0.3.3:
+ dependencies:
+ is-callable: 1.2.7
+
+ foreground-child@3.3.0:
+ dependencies:
+ cross-spawn: 7.0.6
+ signal-exit: 4.1.0
form-data@2.5.1:
dependencies:
@@ -22811,8 +18588,6 @@ snapshots:
fp-ts@1.19.3: {}
- fraction.js@4.3.7: {}
-
framer-motion@11.5.6(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
tslib: 2.7.0
@@ -22863,8 +18638,6 @@ snapshots:
dependencies:
minipass: 3.3.6
- fs-monkey@1.0.6: {}
-
fs.realpath@1.0.0: {}
fsevents@2.3.3:
@@ -22903,8 +18676,6 @@ snapshots:
get-nonce@1.0.1: {}
- get-own-enumerable-property-symbols@3.0.2: {}
-
get-package-type@0.1.0: {}
get-port-please@3.1.2: {}
@@ -22915,10 +18686,6 @@ snapshots:
dependencies:
pump: 3.0.2
- get-stream@5.2.0:
- dependencies:
- pump: 3.0.2
-
get-stream@6.0.1: {}
get-stream@8.0.1: {}
@@ -22954,8 +18721,6 @@ snapshots:
- conventional-commits-filter
- conventional-commits-parser
- github-slugger@1.5.0: {}
-
glob-parent@5.1.2:
dependencies:
is-glob: 4.0.3
@@ -22964,8 +18729,6 @@ snapshots:
dependencies:
is-glob: 4.0.3
- glob-to-regexp@0.4.1: {}
-
glob@10.3.10:
dependencies:
foreground-child: 3.3.0
@@ -23024,10 +18787,6 @@ snapshots:
minipass: 4.2.8
path-scurry: 1.11.1
- global-dirs@3.0.1:
- dependencies:
- ini: 2.0.0
-
global-modules@2.0.0:
dependencies:
global-prefix: 3.0.0
@@ -23069,14 +18828,6 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- globby@13.2.2:
- dependencies:
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 4.0.0
-
globby@14.0.2:
dependencies:
'@sindresorhus/merge-streams': 2.3.0
@@ -23125,22 +18876,6 @@ snapshots:
dependencies:
get-intrinsic: 1.2.4
- got@9.6.0:
- dependencies:
- '@sindresorhus/is': 0.14.0
- '@szmarczak/http-timer': 1.1.2
- '@types/keyv': 3.1.4
- '@types/responselike': 1.0.3
- cacheable-request: 6.1.0
- decompress-response: 3.3.0
- duplexer3: 0.1.5
- get-stream: 4.1.0
- lowercase-keys: 1.0.1
- mimic-response: 1.0.1
- p-cancelable: 1.1.0
- to-readable-stream: 1.0.0
- url-parse-lax: 3.0.0
-
graceful-fs@4.2.11: {}
graphemer@1.4.0: {}
@@ -23207,10 +18942,6 @@ snapshots:
section-matter: 1.0.0
strip-bom-string: 1.0.0
- gzip-size@6.0.0:
- dependencies:
- duplexer: 0.1.2
-
h3@1.12.0:
dependencies:
cookie-es: 1.2.2
@@ -23226,8 +18957,6 @@ snapshots:
transitivePeerDependencies:
- uWebSockets.js
- handle-thing@2.0.1: {}
-
handlebars@4.7.8:
dependencies:
minimist: 1.2.8
@@ -23349,8 +19078,6 @@ snapshots:
dependencies:
has-symbols: 1.0.3
- has-yarn@2.1.0: {}
-
hash-base@3.1.0:
dependencies:
inherits: 2.0.4
@@ -23366,55 +19093,70 @@ snapshots:
dependencies:
function-bind: 1.1.2
- hast-to-hyperscript@9.0.1:
+ hast-util-from-parse5@7.1.2:
dependencies:
+ '@types/hast': 2.3.10
'@types/unist': 2.0.11
- comma-separated-tokens: 1.0.8
- property-information: 5.6.0
- space-separated-tokens: 1.1.5
- style-to-object: 0.3.0
- unist-util-is: 4.1.0
- web-namespaces: 1.1.4
+ hastscript: 7.2.0
+ property-information: 6.5.0
+ vfile: 5.3.7
+ vfile-location: 4.1.0
+ web-namespaces: 2.0.1
- hast-util-from-parse5@6.0.1:
+ hast-util-parse-selector@3.1.1:
dependencies:
- '@types/parse5': 5.0.3
- hastscript: 6.0.0
- property-information: 5.6.0
- vfile: 4.2.1
- vfile-location: 3.2.0
- web-namespaces: 1.1.4
-
- hast-util-parse-selector@2.2.5: {}
+ '@types/hast': 2.3.10
- hast-util-raw@6.0.1:
+ hast-util-raw@7.2.3:
dependencies:
'@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
+ '@types/parse5': 6.0.3
+ hast-util-from-parse5: 7.1.2
+ hast-util-to-parse5: 7.1.0
+ html-void-elements: 2.0.1
parse5: 6.0.1
- unist-util-position: 3.1.0
- vfile: 4.2.1
- web-namespaces: 1.1.4
- xtend: 4.0.2
- zwitch: 1.0.5
+ unist-util-position: 4.0.4
+ unist-util-visit: 4.1.2
+ vfile: 5.3.7
+ web-namespaces: 2.0.1
+ zwitch: 2.0.4
- hast-util-to-parse5@6.0.0:
+ hast-util-sanitize@4.1.0:
dependencies:
- hast-to-hyperscript: 9.0.1
- property-information: 5.6.0
- web-namespaces: 1.1.4
- xtend: 4.0.2
- zwitch: 1.0.5
+ '@types/hast': 2.3.10
+
+ hast-util-to-html@8.0.4:
+ dependencies:
+ '@types/hast': 2.3.10
+ '@types/unist': 2.0.11
+ ccount: 2.0.1
+ comma-separated-tokens: 2.0.3
+ hast-util-raw: 7.2.3
+ hast-util-whitespace: 2.0.1
+ html-void-elements: 2.0.1
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ stringify-entities: 4.0.4
+ zwitch: 2.0.4
+
+ hast-util-to-parse5@7.1.0:
+ dependencies:
+ '@types/hast': 2.3.10
+ comma-separated-tokens: 2.0.3
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ web-namespaces: 2.0.1
+ zwitch: 2.0.4
+
+ hast-util-whitespace@2.0.1: {}
- hastscript@6.0.0:
+ hastscript@7.2.0:
dependencies:
'@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
+ comma-separated-tokens: 2.0.3
+ hast-util-parse-selector: 3.1.1
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
he@1.2.0: {}
@@ -23434,15 +19176,6 @@ snapshots:
hey-listen@1.0.8: {}
- history@4.10.1:
- dependencies:
- '@babel/runtime': 7.25.6
- loose-envify: 1.4.0
- resolve-pathname: 3.0.0
- tiny-invariant: 1.3.3
- tiny-warning: 1.0.3
- value-equal: 1.0.1
-
hmac-drbg@1.0.1:
dependencies:
hash.js: 1.1.7
@@ -23457,13 +19190,6 @@ snapshots:
dependencies:
lru-cache: 10.4.3
- hpack.js@2.1.6:
- dependencies:
- inherits: 2.0.4
- obuf: 1.1.2
- readable-stream: 2.3.8
- wbuf: 1.7.3
-
hsl-to-hex@1.0.0:
dependencies:
hsl-to-rgb-for-reals: 1.1.1
@@ -23474,47 +19200,9 @@ snapshots:
dependencies:
whatwg-encoding: 2.0.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.3
- commander: 8.3.0
- he: 1.2.0
- param-case: 3.0.4
- relateurl: 0.2.7
- terser: 5.33.0
-
- html-tags@3.3.1: {}
-
- html-void-elements@1.0.5: {}
-
- html-webpack-plugin@5.6.0(webpack@5.94.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
- optionalDependencies:
- webpack: 5.94.0
-
- htmlparser2@6.1.0:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 4.3.1
- domutils: 2.8.0
- entities: 2.2.0
-
- htmlparser2@9.1.0:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- domutils: 3.1.0
- entities: 4.5.0
+ html-void-elements@2.0.1: {}
http-basic@8.1.3:
dependencies:
@@ -23523,17 +19211,6 @@ snapshots:
http-response-object: 3.0.2
parse-cache-control: 1.0.1
- http-cache-semantics@4.1.1: {}
-
- http-deceiver@1.2.7: {}
-
- http-errors@1.6.3:
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.0
- statuses: 1.5.0
-
http-errors@2.0.0:
dependencies:
depd: 2.0.0
@@ -23542,8 +19219,6 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
- http-parser-js@0.5.8: {}
-
http-proxy-agent@5.0.0:
dependencies:
'@tootallnate/once': 2.0.0
@@ -23552,26 +19227,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@2.0.6(@types/express@4.17.21):
- dependencies:
- '@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.8
- optionalDependencies:
- '@types/express': 4.17.21
- transitivePeerDependencies:
- - debug
-
- http-proxy@1.18.1:
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.15.9(debug@4.3.4)
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
-
http-response-object@3.0.2:
dependencies:
'@types/node': 10.17.60
@@ -23615,10 +19270,6 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
idb-keyval@6.2.1: {}
ieee754@1.2.1: {}
@@ -23631,8 +19282,6 @@ snapshots:
immer@10.0.2: {}
- immer@9.0.21: {}
-
immutable@4.2.1: {}
immutable@4.3.7: {}
@@ -23647,8 +19296,6 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-lazy@2.1.0: {}
-
import-local@3.2.0:
dependencies:
pkg-dir: 4.2.0
@@ -23660,23 +19307,15 @@ snapshots:
index-to-position@0.1.2: {}
- infima@0.2.0-alpha.43: {}
-
inflight@1.0.6:
dependencies:
once: 1.4.0
wrappy: 1.0.2
- inherits@2.0.3: {}
-
inherits@2.0.4: {}
ini@1.3.8: {}
- ini@2.0.0: {}
-
- inline-style-parser@0.1.1: {}
-
inquirer@9.3.6:
dependencies:
'@inquirer/figures': 1.0.6
@@ -23720,8 +19359,6 @@ snapshots:
ipaddr.js@1.9.1: {}
- ipaddr.js@2.2.0: {}
-
ipfs-core-types@0.9.0(node-fetch@2.7.0(encoding@0.1.13)):
dependencies:
interface-datastore: 6.1.1
@@ -23736,7 +19373,7 @@ snapshots:
any-signal: 2.1.2
blob-to-it: 1.0.4
browser-readablestream-to-it: 1.0.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
err-code: 3.0.1
ipfs-core-types: 0.9.0(node-fetch@2.7.0(encoding@0.1.13))
ipfs-unixfs: 6.0.9
@@ -23812,13 +19449,6 @@ snapshots:
iron-webcrypto@1.2.1: {}
- is-alphabetical@1.0.4: {}
-
- is-alphanumerical@1.0.4:
- dependencies:
- is-alphabetical: 1.0.4
- is-decimal: 1.0.4
-
is-arguments@1.1.1:
dependencies:
call-bind: 1.0.7
@@ -23858,10 +19488,6 @@ snapshots:
is-callable@1.2.7: {}
- is-ci@2.0.0:
- dependencies:
- ci-info: 2.0.0
-
is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
@@ -23874,8 +19500,6 @@ snapshots:
dependencies:
has-tostringtag: 1.0.2
- is-decimal@1.0.4: {}
-
is-directory@0.3.1: {}
is-docker@2.2.1: {}
@@ -23914,17 +19538,10 @@ snapshots:
is-hex-prefixed@1.0.0: {}
- is-hexadecimal@1.0.4: {}
-
is-inside-container@1.0.0:
dependencies:
is-docker: 3.0.0
- is-installed-globally@0.4.0:
- dependencies:
- global-dirs: 3.0.1
- is-path-inside: 3.0.3
-
is-interactive@1.0.0: {}
is-interactive@2.0.0: {}
@@ -23937,25 +19554,19 @@ snapshots:
is-negative-zero@2.0.3: {}
- is-npm@5.0.0: {}
-
is-number-object@1.0.7:
dependencies:
has-tostringtag: 1.0.2
is-number@7.0.0: {}
- is-obj@1.0.1: {}
-
is-obj@2.0.0: {}
- is-path-cwd@2.2.0: {}
-
is-path-inside@3.0.3: {}
is-plain-obj@2.1.0: {}
- is-plain-obj@3.0.0: {}
+ is-plain-obj@4.1.0: {}
is-plain-object@2.0.4:
dependencies:
@@ -23968,10 +19579,6 @@ snapshots:
call-bind: 1.0.7
has-tostringtag: 1.0.2
- is-regexp@1.0.0: {}
-
- is-root@2.1.0: {}
-
is-set@2.0.3: {}
is-shared-array-buffer@1.0.3:
@@ -24000,8 +19607,6 @@ snapshots:
dependencies:
which-typed-array: 1.1.15
- is-typedarray@1.0.0: {}
-
is-unicode-supported@0.1.0: {}
is-unicode-supported@1.3.0: {}
@@ -24021,12 +19626,8 @@ snapshots:
call-bind: 1.0.7
get-intrinsic: 1.2.4
- is-whitespace-character@1.0.4: {}
-
is-windows@1.0.2: {}
- is-word-character@1.0.4: {}
-
is-wsl@1.1.0: {}
is-wsl@2.2.0:
@@ -24037,8 +19638,6 @@ snapshots:
dependencies:
is-inside-container: 1.0.0
- is-yarn-global@0.3.0: {}
-
is64bit@2.0.0:
dependencies:
system-architecture: 0.1.0
@@ -24567,12 +20166,6 @@ snapshots:
jest-util: 29.7.0
string-length: 4.0.2
- jest-worker@27.5.1:
- dependencies:
- '@types/node': 22.6.1
- merge-stream: 2.0.0
- supports-color: 8.1.1
-
jest-worker@29.7.0:
dependencies:
'@types/node': 22.6.1
@@ -24631,7 +20224,7 @@ snapshots:
jsc-safe-url@0.2.4: {}
- jscodeshift@0.14.0(@babel/preset-env@7.25.4(@babel/core@7.26.0)):
+ jscodeshift@0.14.0(@babel/preset-env@7.26.0(@babel/core@7.26.0)):
dependencies:
'@babel/core': 7.26.0
'@babel/parser': 7.26.2
@@ -24639,7 +20232,7 @@ snapshots:
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.0)
'@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.0)
'@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-env': 7.25.4(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
'@babel/preset-flow': 7.25.9(@babel/core@7.26.0)
'@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
'@babel/register': 7.25.9(@babel/core@7.26.0)
@@ -24689,14 +20282,10 @@ snapshots:
- supports-color
- utf-8-validate
- jsesc@0.5.0: {}
-
jsesc@2.5.2: {}
jsesc@3.0.2: {}
- json-buffer@3.0.0: {}
-
json-buffer@3.0.1: {}
json-parse-better-errors@1.0.2: {}
@@ -24761,10 +20350,6 @@ snapshots:
keypress@0.2.1: {}
- keyv@3.1.0:
- dependencies:
- json-buffer: 3.0.0
-
keyv@4.5.4:
dependencies:
json-buffer: 3.0.1
@@ -24775,21 +20360,14 @@ snapshots:
kleur@3.0.3: {}
+ kleur@4.1.5: {}
+
language-subtag-registry@0.3.23: {}
language-tags@1.0.9:
dependencies:
language-subtag-registry: 0.3.23
- latest-version@5.1.0:
- dependencies:
- package-json: 6.5.0
-
- launch-editor@2.9.1:
- dependencies:
- picocolors: 1.1.0
- shell-quote: 1.8.1
-
lazystream@1.0.1:
dependencies:
readable-stream: 2.3.8
@@ -24813,8 +20391,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- lilconfig@2.1.0: {}
-
lilconfig@3.1.2: {}
lines-and-columns@1.2.4: {}
@@ -24882,16 +20458,6 @@ snapshots:
lit-element: 3.3.3
lit-html: 2.8.0
- loader-runner@4.3.0: {}
-
- loader-utils@2.0.4:
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 2.2.3
-
- loader-utils@3.3.1: {}
-
locate-path@2.0.0:
dependencies:
p-locate: 2.0.0
@@ -24914,8 +20480,6 @@ snapshots:
lodash.clonedeep@4.5.0: {}
- lodash.curry@4.1.1: {}
-
lodash.debounce@4.0.8: {}
lodash.defaults@4.2.0: {}
@@ -24924,8 +20488,6 @@ snapshots:
lodash.flatten@4.4.0: {}
- lodash.flow@3.5.0: {}
-
lodash.isequal@4.5.0: {}
lodash.ismatch@4.4.0: {}
@@ -24968,8 +20530,6 @@ snapshots:
lodash.union@4.6.0: {}
- lodash.uniq@4.5.0: {}
-
lodash.uppercase@4.3.0: {}
lodash.upperfirst@4.3.1: {}
@@ -25013,6 +20573,8 @@ snapshots:
long@5.2.3: {}
+ longest-streak@3.1.0: {}
+
loose-envify@1.4.0:
dependencies:
js-tokens: 4.0.0
@@ -25021,14 +20583,6 @@ snapshots:
dependencies:
get-func-name: 2.0.2
- lower-case@2.0.2:
- dependencies:
- tslib: 2.7.0
-
- lowercase-keys@1.0.1: {}
-
- lowercase-keys@2.0.0: {}
-
lru-cache@10.4.3: {}
lru-cache@5.1.1:
@@ -25048,10 +20602,6 @@ snapshots:
pify: 4.0.1
semver: 5.7.2
- make-dir@3.1.0:
- dependencies:
- semver: 6.3.1
-
make-dir@4.0.0:
dependencies:
semver: 7.6.3
@@ -25062,12 +20612,12 @@ snapshots:
dependencies:
tmpl: 1.0.5
- markdown-escapes@1.0.4: {}
-
markdown-table@2.0.0:
dependencies:
repeat-string: 1.6.1
+ marked@4.3.0: {}
+
marky@1.2.5: {}
md5.js@1.3.5:
@@ -25076,30 +20626,59 @@ snapshots:
inherits: 2.0.4
safe-buffer: 5.2.1
- mdast-squeeze-paragraphs@4.0.0:
+ mdast-util-definitions@5.1.2:
dependencies:
- unist-util-remove: 2.1.0
+ '@types/mdast': 3.0.15
+ '@types/unist': 2.0.11
+ unist-util-visit: 4.1.2
- mdast-util-definitions@4.0.0:
+ mdast-util-from-markdown@1.3.1:
dependencies:
- unist-util-visit: 2.0.3
+ '@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
+ micromark-util-decode-numeric-character-reference: 1.1.0
+ micromark-util-decode-string: 1.1.0
+ micromark-util-normalize-identifier: 1.1.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ unist-util-stringify-position: 3.0.3
+ uvu: 0.5.6
+ transitivePeerDependencies:
+ - supports-color
- mdast-util-to-hast@10.0.1:
+ mdast-util-phrasing@3.0.1:
dependencies:
'@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
- unist-util-generated: 1.1.6
- unist-util-position: 3.1.0
- unist-util-visit: 2.0.3
+ unist-util-is: 5.2.1
- mdast-util-to-string@2.0.0: {}
+ mdast-util-to-hast@12.3.0:
+ dependencies:
+ '@types/hast': 2.3.10
+ '@types/mdast': 3.0.15
+ mdast-util-definitions: 5.1.2
+ micromark-util-sanitize-uri: 1.2.0
+ trim-lines: 3.0.1
+ unist-util-generated: 2.0.1
+ unist-util-position: 4.0.4
+ unist-util-visit: 4.1.2
- mdn-data@2.0.14: {}
+ mdast-util-to-markdown@1.5.0:
+ dependencies:
+ '@types/mdast': 3.0.15
+ '@types/unist': 2.0.11
+ longest-streak: 3.1.0
+ mdast-util-phrasing: 3.0.1
+ mdast-util-to-string: 3.2.0
+ micromark-util-decode-string: 1.1.0
+ unist-util-visit: 4.1.2
+ zwitch: 2.0.4
- mdurl@1.0.1: {}
+ mdast-util-to-string@3.2.0:
+ dependencies:
+ '@types/mdast': 3.0.15
media-engine@1.0.3: {}
@@ -25109,10 +20688,6 @@ snapshots:
media-typer@0.3.0: {}
- memfs@3.5.3:
- dependencies:
- fs-monkey: 1.0.6
-
memoize-one@5.2.1: {}
memory-cache@0.2.0: {}
@@ -25313,21 +20888,148 @@ snapshots:
micro-ftch@0.3.1: {}
+ micromark-core-commonmark@1.1.0:
+ dependencies:
+ decode-named-character-reference: 1.0.2
+ micromark-factory-destination: 1.1.0
+ micromark-factory-label: 1.1.0
+ micromark-factory-space: 1.1.0
+ micromark-factory-title: 1.1.0
+ micromark-factory-whitespace: 1.1.0
+ micromark-util-character: 1.2.0
+ micromark-util-chunked: 1.1.0
+ micromark-util-classify-character: 1.1.0
+ micromark-util-html-tag-name: 1.2.0
+ micromark-util-normalize-identifier: 1.1.0
+ micromark-util-resolve-all: 1.1.0
+ micromark-util-subtokenize: 1.1.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ uvu: 0.5.6
+
+ micromark-factory-destination@1.1.0:
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+
+ micromark-factory-label@1.1.0:
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ uvu: 0.5.6
+
+ micromark-factory-space@1.1.0:
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-types: 1.1.0
+
+ micromark-factory-title@1.1.0:
+ dependencies:
+ micromark-factory-space: 1.1.0
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+
+ micromark-factory-whitespace@1.1.0:
+ dependencies:
+ micromark-factory-space: 1.1.0
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+
+ micromark-util-character@1.2.0:
+ dependencies:
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+
+ micromark-util-chunked@1.1.0:
+ dependencies:
+ micromark-util-symbol: 1.1.0
+
+ micromark-util-classify-character@1.1.0:
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+
+ micromark-util-combine-extensions@1.1.0:
+ dependencies:
+ micromark-util-chunked: 1.1.0
+ micromark-util-types: 1.1.0
+
+ micromark-util-decode-numeric-character-reference@1.1.0:
+ dependencies:
+ micromark-util-symbol: 1.1.0
+
+ micromark-util-decode-string@1.1.0:
+ dependencies:
+ decode-named-character-reference: 1.0.2
+ micromark-util-character: 1.2.0
+ micromark-util-decode-numeric-character-reference: 1.1.0
+ micromark-util-symbol: 1.1.0
+
+ micromark-util-encode@1.1.0: {}
+
+ micromark-util-html-tag-name@1.2.0: {}
+
+ micromark-util-normalize-identifier@1.1.0:
+ dependencies:
+ micromark-util-symbol: 1.1.0
+
+ micromark-util-resolve-all@1.1.0:
+ dependencies:
+ micromark-util-types: 1.1.0
+
+ micromark-util-sanitize-uri@1.2.0:
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-encode: 1.1.0
+ micromark-util-symbol: 1.1.0
+
+ micromark-util-subtokenize@1.1.0:
+ dependencies:
+ micromark-util-chunked: 1.1.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ uvu: 0.5.6
+
+ micromark-util-symbol@1.1.0: {}
+
+ micromark-util-types@1.1.0: {}
+
+ micromark@3.2.0:
+ dependencies:
+ '@types/debug': 4.1.12
+ debug: 4.3.7(supports-color@8.1.1)
+ decode-named-character-reference: 1.0.2
+ micromark-core-commonmark: 1.1.0
+ micromark-factory-space: 1.1.0
+ micromark-util-character: 1.2.0
+ micromark-util-chunked: 1.1.0
+ micromark-util-combine-extensions: 1.1.0
+ micromark-util-decode-numeric-character-reference: 1.1.0
+ micromark-util-encode: 1.1.0
+ micromark-util-normalize-identifier: 1.1.0
+ micromark-util-resolve-all: 1.1.0
+ micromark-util-sanitize-uri: 1.2.0
+ micromark-util-subtokenize: 1.1.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ uvu: 0.5.6
+ transitivePeerDependencies:
+ - supports-color
+
micromatch@4.0.8:
dependencies:
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
-
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
@@ -25346,16 +21048,8 @@ snapshots:
mimic-function@5.0.1: {}
- mimic-response@1.0.1: {}
-
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.9.1(webpack@5.94.0):
- dependencies:
- schema-utils: 4.2.0
- tapable: 2.2.1
- webpack: 5.94.0
-
minimalistic-assert@1.0.1: {}
minimalistic-crypto-utils@1.0.1: {}
@@ -25450,8 +21144,6 @@ snapshots:
mri@1.2.0: {}
- mrmime@2.0.0: {}
-
ms@2.0.0: {}
ms@2.1.2: {}
@@ -25477,11 +21169,6 @@ snapshots:
- node-fetch
- supports-color
- multicast-dns@7.2.5:
- dependencies:
- dns-packet: 5.6.1
- thunky: 1.1.0
-
multiformats@9.9.0: {}
mustache@4.2.0: {}
@@ -25568,11 +21255,6 @@ snapshots:
nice-try@1.0.5: {}
- no-case@3.0.4:
- dependencies:
- lower-case: 2.0.2
- tslib: 2.7.0
-
nocache@3.0.4: {}
node-abort-controller@3.1.1: {}
@@ -25631,16 +21313,10 @@ snapshots:
normalize-path@3.0.0: {}
- normalize-range@0.1.2: {}
-
normalize-svg-path@1.1.0:
dependencies:
svg-arc-to-cubic-bezier: 3.2.0
- normalize-url@4.5.1: {}
-
- normalize-url@6.1.0: {}
-
npm-package-arg@11.0.3:
dependencies:
hosted-git-info: 7.0.2
@@ -25660,12 +21336,6 @@ snapshots:
dependencies:
path-key: 4.0.0
- nprogress@0.2.0: {}
-
- nth-check@2.1.1:
- dependencies:
- boolbase: 1.0.0
-
nullthrows@1.1.1: {}
number-to-bn@1.7.0:
@@ -25732,8 +21402,6 @@ snapshots:
obliterator@2.0.4: {}
- obuf@1.1.2: {}
-
ofetch@1.4.0:
dependencies:
destr: 2.0.3
@@ -25789,8 +21457,6 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- opener@1.5.2: {}
-
optimism@0.18.0:
dependencies:
'@wry/caches': 1.0.1
@@ -25868,8 +21534,6 @@ snapshots:
outdent@0.5.0: {}
- p-cancelable@1.1.0: {}
-
p-defer@3.0.0: {}
p-fifo@1.0.0:
@@ -25917,35 +21581,18 @@ snapshots:
dependencies:
aggregate-error: 3.1.0
- p-retry@4.6.2:
- dependencies:
- '@types/retry': 0.12.0
- retry: 0.13.1
-
p-try@1.0.0: {}
p-try@2.2.0: {}
package-json-from-dist@1.0.1: {}
- package-json@6.5.0:
- dependencies:
- got: 9.6.0
- registry-auth-token: 4.2.2
- registry-url: 5.1.0
- semver: 6.3.1
-
package-manager-detector@0.2.5: {}
pako@0.2.9: {}
pako@1.0.11: {}
- param-case@3.0.4:
- dependencies:
- dot-case: 3.0.4
- tslib: 2.7.0
-
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
@@ -25954,15 +21601,6 @@ snapshots:
parse-duration@1.1.0: {}
- parse-entities@2.0.0:
- dependencies:
- character-entities: 1.2.4
- character-entities-legacy: 1.1.4
- character-reference-invalid: 1.1.4
- is-alphanumerical: 1.0.4
- is-decimal: 1.0.4
- is-hexadecimal: 1.0.4
-
parse-json@4.0.0:
dependencies:
error-ex: 1.3.2
@@ -25981,19 +21619,8 @@ snapshots:
index-to-position: 0.1.2
type-fest: 4.26.1
- parse-numeric-range@1.3.0: {}
-
- parse-svg-path@0.1.2: {}
-
- parse5-htmlparser2-tree-adapter@7.0.0:
- dependencies:
- domhandler: 5.0.3
- parse5: 7.1.2
-
- parse5-parser-stream@7.1.2:
- dependencies:
- parse5: 7.1.2
-
+ parse-svg-path@0.1.2: {}
+
parse5@6.0.1: {}
parse5@7.1.2:
@@ -26002,15 +21629,10 @@ snapshots:
parseurl@1.3.3: {}
- pascal-case@3.1.2:
- dependencies:
- no-case: 3.0.4
- tslib: 2.7.0
-
password-prompt@1.1.3:
dependencies:
ansi-escapes: 4.3.2
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
path-exists@3.0.0: {}
@@ -26018,8 +21640,6 @@ snapshots:
path-is-absolute@1.0.1: {}
- path-is-inside@1.0.2: {}
-
path-key@2.0.1: {}
path-key@3.1.1: {}
@@ -26035,12 +21655,6 @@ snapshots:
path-to-regexp@0.1.10: {}
- path-to-regexp@1.9.0:
- dependencies:
- isarray: 0.0.1
-
- path-to-regexp@2.2.1: {}
-
path-type@4.0.0: {}
path-type@5.0.0: {}
@@ -26126,217 +21740,8 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-calc@8.2.4(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
- postcss-value-parser: 4.2.0
-
- postcss-colormin@5.3.1(postcss@8.4.47):
- dependencies:
- browserslist: 4.23.3
- caniuse-api: 3.0.0
- colord: 2.9.3
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-convert-values@5.1.3(postcss@8.4.47):
- dependencies:
- browserslist: 4.23.3
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-discard-comments@5.1.2(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
- postcss-discard-duplicates@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
- postcss-discard-empty@5.1.1(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
- postcss-discard-overridden@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
- postcss-discard-unused@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
-
- postcss-loader@7.3.4(postcss@8.4.47)(typescript@5.6.3)(webpack@5.94.0):
- dependencies:
- cosmiconfig: 8.3.6(typescript@5.6.3)
- jiti: 1.21.6
- postcss: 8.4.47
- semver: 7.6.3
- webpack: 5.94.0
- transitivePeerDependencies:
- - typescript
-
- postcss-merge-idents@5.1.1(postcss@8.4.47):
- dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-merge-longhand@5.1.7(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.47)
-
- postcss-merge-rules@5.1.4(postcss@8.4.47):
- dependencies:
- browserslist: 4.23.3
- caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
-
- postcss-minify-font-values@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-minify-gradients@5.1.1(postcss@8.4.47):
- dependencies:
- colord: 2.9.3
- cssnano-utils: 3.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-minify-params@5.1.4(postcss@8.4.47):
- dependencies:
- browserslist: 4.23.3
- cssnano-utils: 3.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-minify-selectors@5.2.1(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
-
- postcss-modules-extract-imports@3.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
- postcss-modules-local-by-default@4.0.5(postcss@8.4.47):
- dependencies:
- icss-utils: 5.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
- postcss-value-parser: 4.2.0
-
- postcss-modules-scope@3.2.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
-
- postcss-modules-values@4.0.0(postcss@8.4.47):
- dependencies:
- icss-utils: 5.1.0(postcss@8.4.47)
- postcss: 8.4.47
-
- postcss-normalize-charset@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
- postcss-normalize-display-values@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-normalize-positions@5.1.1(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-normalize-repeat-style@5.1.1(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-normalize-string@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-normalize-timing-functions@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-normalize-unicode@5.1.1(postcss@8.4.47):
- dependencies:
- browserslist: 4.23.3
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-normalize-url@5.1.0(postcss@8.4.47):
- dependencies:
- normalize-url: 6.1.0
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-normalize-whitespace@5.1.1(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-ordered-values@5.1.3(postcss@8.4.47):
- dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.47)
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-reduce-idents@5.2.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-reduce-initial@5.1.2(postcss@8.4.47):
- dependencies:
- browserslist: 4.23.3
- caniuse-api: 3.0.0
- postcss: 8.4.47
-
- postcss-reduce-transforms@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
-
- postcss-selector-parser@6.1.2:
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
-
- postcss-sort-media-queries@4.4.1(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- sort-css-media-queries: 2.1.0
-
- postcss-svgo@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-value-parser: 4.2.0
- svgo: 2.8.0
-
- postcss-unique-selectors@5.1.1(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
-
postcss-value-parser@4.2.0: {}
- postcss-zindex@5.1.0(postcss@8.4.47):
- dependencies:
- postcss: 8.4.47
-
postcss@8.4.31:
dependencies:
nanoid: 3.3.7
@@ -26349,12 +21754,6 @@ snapshots:
picocolors: 1.1.0
source-map-js: 1.2.1
- postcss@8.4.47:
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.1.0
- source-map-js: 1.2.1
-
preact@10.24.3: {}
preact@10.25.0: {}
@@ -26363,8 +21762,6 @@ snapshots:
prelude-ls@1.2.1: {}
- prepend-http@2.0.0: {}
-
prettier-linter-helpers@1.0.0:
dependencies:
fast-diff: 1.3.0
@@ -26381,11 +21778,6 @@ snapshots:
prettier@3.3.3: {}
- pretty-error@4.0.0:
- dependencies:
- lodash: 4.17.21
- renderkid: 3.0.0
-
pretty-format@26.6.2:
dependencies:
'@jest/types': 26.6.2
@@ -26405,24 +21797,12 @@ snapshots:
ansi-styles: 5.2.0
react-is: 18.3.1
- pretty-time@1.1.0: {}
-
- prism-react-renderer@1.3.5(react@18.3.1):
- dependencies:
- react: 18.3.1
-
- prismjs@1.29.0: {}
-
proc-log@4.2.0: {}
process-nextick-args@2.0.1: {}
process-warning@1.0.0: {}
- promise@7.3.1:
- dependencies:
- asap: 2.0.6
-
promise@8.3.0:
dependencies:
asap: 2.0.6
@@ -26440,9 +21820,7 @@ snapshots:
property-expr@2.0.6: {}
- property-information@5.6.0:
- dependencies:
- xtend: 4.0.2
+ property-information@6.5.0: {}
protobufjs@6.11.4:
dependencies:
@@ -26485,12 +21863,6 @@ snapshots:
punycode@2.3.1: {}
- pupa@2.1.1:
- dependencies:
- escape-goat: 2.1.1
-
- pure-color@1.3.0: {}
-
pure-rand@6.1.0: {}
pvtsutils@1.3.5:
@@ -26549,8 +21921,6 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- range-parser@1.2.0: {}
-
range-parser@1.2.1: {}
raw-body@2.5.2:
@@ -26560,20 +21930,6 @@ snapshots:
iconv-lite: 0.4.24
unpipe: 1.0.0
- rc@1.2.8:
- dependencies:
- deep-extend: 0.6.0
- ini: 1.3.8
- minimist: 1.2.8
- strip-json-comments: 2.0.1
-
- react-base16-styling@0.6.0:
- dependencies:
- base16: 1.0.0
- lodash.curry: 4.1.1
- lodash.flow: 3.5.0
- pure-color: 1.3.0
-
react-clientside-effect@1.2.6(react@18.3.1):
dependencies:
'@babel/runtime': 7.25.6
@@ -26588,40 +21944,6 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-dev-utils@12.0.1(eslint@8.56.0)(typescript@5.6.3)(webpack@5.94.0):
- dependencies:
- '@babel/code-frame': 7.24.7
- address: 1.2.2
- browserslist: 4.23.3
- chalk: 4.1.2
- cross-spawn: 7.0.3
- detect-port-alt: 1.1.6
- escape-string-regexp: 4.0.0
- filesize: 8.0.7
- find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.56.0)(typescript@5.6.3)(webpack@5.94.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.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
- strip-ansi: 6.0.1
- text-table: 0.2.0
- webpack: 5.94.0
- optionalDependencies:
- typescript: 5.6.3
- transitivePeerDependencies:
- - eslint
- - supports-color
- - vue-template-compiler
-
react-devtools-core@5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
shell-quote: 1.8.2
@@ -26636,38 +21958,31 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-error-overlay@6.0.11: {}
-
react-fast-compare@3.2.2: {}
- react-focus-lock@2.13.2(@types/react@18.3.8)(react@18.3.1):
+ react-focus-lock@2.13.2(@types/react@18.3.12)(react@18.3.1):
dependencies:
'@babel/runtime': 7.25.6
focus-lock: 1.3.5
prop-types: 15.8.1
react: 18.3.1
react-clientside-effect: 1.2.6(react@18.3.1)
- use-callback-ref: 1.3.2(@types/react@18.3.8)(react@18.3.1)
- use-sidecar: 1.1.2(@types/react@18.3.8)(react@18.3.1)
+ use-callback-ref: 1.3.2(@types/react@18.3.12)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.12)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.8
+ '@types/react': 18.3.12
- react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-focus-lock@2.13.2(@types/react@18.3.8)(react@18.3.1):
dependencies:
'@babel/runtime': 7.25.6
- invariant: 2.2.4
+ focus-lock: 1.3.5
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
-
- 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-clientside-effect: 1.2.6(react@18.3.1)
+ use-callback-ref: 1.3.2(@types/react@18.3.8)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.8)(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.8
react-hook-form@7.53.0(react@18.3.1):
dependencies:
@@ -26679,57 +21994,37 @@ snapshots:
react-is@18.3.1: {}
- react-json-view@1.21.3(@types/react@18.3.12)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
- dependencies:
- flux: 4.0.4(encoding@0.1.13)(react@18.3.1)
- react: 18.3.1
- react-base16-styling: 0.6.0
- react-dom: 18.3.1(react@18.3.1)
- react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.5.3(@types/react@18.3.12)(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - encoding
-
- react-lifecycles-compat@3.0.4: {}
-
- react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2(react@18.3.1))(webpack@5.94.0):
- dependencies:
- '@babel/runtime': 7.25.6
- react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.3.1)'
- webpack: 5.94.0
-
react-native-fetch-api@3.0.0:
dependencies:
p-defer: 3.0.0
- react-native-webview@11.26.1(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1):
+ react-native-webview@11.26.1(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1):
dependencies:
escape-string-regexp: 2.0.0
invariant: 2.2.4
react: 18.3.1
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
+ react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- react-native-webview@11.26.1(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1):
+ react-native-webview@11.26.1(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1):
dependencies:
escape-string-regexp: 2.0.0
invariant: 2.2.4
react: 18.3.1
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
+ react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)
- react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10):
+ react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 14.1.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)
'@react-native-community/cli-platform-android': 14.1.0
'@react-native-community/cli-platform-ios': 14.1.0
'@react-native/assets-registry': 0.75.3
- '@react-native/codegen': 0.75.3(@babel/preset-env@7.25.4(@babel/core@7.26.0))
- '@react-native/community-cli-plugin': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native/codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))
+ '@react-native/community-cli-plugin': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@react-native/gradle-plugin': 0.75.3
'@react-native/js-polyfills': 0.75.3
'@react-native/normalize-colors': 0.75.3
- '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.12)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.12)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -26770,19 +22065,19 @@ snapshots:
- typescript
- utf-8-validate
- react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10):
+ react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 14.1.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)
'@react-native-community/cli-platform-android': 14.1.0
'@react-native-community/cli-platform-ios': 14.1.0
'@react-native/assets-registry': 0.75.3
- '@react-native/codegen': 0.75.3(@babel/preset-env@7.25.4(@babel/core@7.26.0))
- '@react-native/community-cli-plugin': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native/codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))
+ '@react-native/community-cli-plugin': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@react-native/gradle-plugin': 0.75.3
'@react-native/js-polyfills': 0.75.3
'@react-native/normalize-colors': 0.75.3
- '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.8)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.8)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -26863,36 +22158,6 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.8
- react-router-config@5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1):
- dependencies:
- '@babel/runtime': 7.25.6
- react: 18.3.1
- react-router: 5.3.4(react@18.3.1)
-
- react-router-dom@5.3.4(react@18.3.1):
- dependencies:
- '@babel/runtime': 7.25.6
- history: 4.10.1
- loose-envify: 1.4.0
- prop-types: 15.8.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.3.1):
- dependencies:
- '@babel/runtime': 7.25.6
- history: 4.10.1
- hoist-non-react-statics: 3.3.2
- loose-envify: 1.4.0
- path-to-regexp: 1.9.0
- prop-types: 15.8.1
- react: 18.3.1
- react-is: 16.13.1
- tiny-invariant: 1.3.3
- tiny-warning: 1.0.3
-
react-style-singleton@2.2.1(@types/react@18.3.12)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
@@ -26911,15 +22176,6 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.8
- react-textarea-autosize@8.5.3(@types/react@18.3.12)(react@18.3.1):
- dependencies:
- '@babel/runtime': 7.25.6
- react: 18.3.1
- use-composed-ref: 1.3.0(react@18.3.1)
- use-latest: 1.2.1(@types/react@18.3.12)(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
-
react-web-share@2.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
@@ -26988,8 +22244,6 @@ snapshots:
readdirp@4.0.2: {}
- reading-time@1.5.0: {}
-
readline-sync@1.4.10: {}
readline@1.3.0: {}
@@ -27046,7 +22300,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
regexp.prototype.flags@1.5.2:
dependencies:
@@ -27055,15 +22309,6 @@ snapshots:
es-errors: 1.3.0
set-function-name: 2.0.2
- regexpu-core@5.3.2:
- dependencies:
- '@babel/regjsgen': 0.8.0
- regenerate: 1.4.2
- regenerate-unicode-properties: 10.2.0
- regjsparser: 0.9.1
- unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.2.0
-
regexpu-core@6.2.0:
dependencies:
regenerate: 1.4.2
@@ -27073,93 +22318,56 @@ snapshots:
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.2.0
- registry-auth-token@4.2.2:
- dependencies:
- rc: 1.2.8
-
- registry-url@5.1.0:
- dependencies:
- rc: 1.2.8
-
regjsgen@0.8.0: {}
regjsparser@0.12.0:
dependencies:
jsesc: 3.0.2
- regjsparser@0.9.1:
- dependencies:
- jsesc: 0.5.0
-
rehackt@0.1.0(@types/react@18.3.12)(react@18.3.1):
optionalDependencies:
'@types/react': 18.3.12
react: 18.3.1
- relateurl@0.2.7: {}
-
- remark-emoji@2.2.0:
+ remark-html@15.0.2:
dependencies:
- emoticon: 3.2.0
- node-emoji: 1.11.0
- unist-util-visit: 2.0.3
-
- remark-footnotes@2.0.0: {}
+ '@types/mdast': 3.0.15
+ hast-util-sanitize: 4.1.0
+ hast-util-to-html: 8.0.4
+ mdast-util-to-hast: 12.3.0
+ unified: 10.1.2
- remark-mdx@1.6.22:
+ remark-parse@10.0.2:
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-proposal-object-rest-spread': 7.12.1(@babel/core@7.12.9)
- '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
- '@mdx-js/util': 1.6.22
- is-alphabetical: 1.0.4
- remark-parse: 8.0.3
- unified: 9.2.0
+ '@types/mdast': 3.0.15
+ mdast-util-from-markdown: 1.3.1
+ unified: 10.1.2
transitivePeerDependencies:
- supports-color
- remark-parse@8.0.3:
+ remark-stringify@10.0.3:
dependencies:
- ccount: 1.1.0
- collapse-white-space: 1.0.6
- is-alphabetical: 1.0.4
- is-decimal: 1.0.4
- is-whitespace-character: 1.0.4
- is-word-character: 1.0.4
- markdown-escapes: 1.0.4
- parse-entities: 2.0.0
- repeat-string: 1.6.1
- state-toggle: 1.0.3
- trim: 0.0.1
- trim-trailing-lines: 1.1.4
- unherit: 1.1.3
- unist-util-remove-position: 2.0.1
- vfile-location: 3.2.0
- xtend: 4.0.2
+ '@types/mdast': 3.0.15
+ mdast-util-to-markdown: 1.5.0
+ unified: 10.1.2
- remark-squeeze-paragraphs@4.0.0:
+ remark@14.0.3:
dependencies:
- mdast-squeeze-paragraphs: 4.0.0
+ '@types/mdast': 3.0.15
+ remark-parse: 10.0.2
+ remark-stringify: 10.0.3
+ unified: 10.1.2
+ transitivePeerDependencies:
+ - supports-color
remeda@1.61.0: {}
- renderkid@3.0.0:
- dependencies:
- css-select: 4.3.0
- dom-converter: 0.2.0
- htmlparser2: 6.1.0
- lodash: 4.17.21
- strip-ansi: 6.0.1
-
repeat-string@1.6.1: {}
require-directory@2.1.1: {}
require-from-string@2.0.2: {}
- require-like@0.1.2: {}
-
require-main-filename@2.0.0: {}
requires-port@1.0.0: {}
@@ -27174,8 +22382,6 @@ snapshots:
resolve-from@5.0.0: {}
- resolve-pathname@3.0.0: {}
-
resolve-pkg-maps@1.0.0: {}
resolve.exports@2.0.2: {}
@@ -27200,10 +22406,6 @@ snapshots:
response-iterator@0.2.6: {}
- responselike@1.0.2:
- dependencies:
- lowercase-keys: 1.0.1
-
restore-cursor@3.1.0:
dependencies:
onetime: 5.1.2
@@ -27223,8 +22425,6 @@ snapshots:
retimer@3.0.0: {}
- retry@0.13.1: {}
-
reusify@1.0.4: {}
rfdc@1.4.1: {}
@@ -27257,15 +22457,6 @@ snapshots:
source-map: 0.7.4
yargs: 17.7.2
- rtl-detect@1.1.2: {}
-
- rtlcss@3.5.0:
- dependencies:
- find-up: 5.0.0
- picocolors: 1.1.0
- postcss: 8.4.47
- strip-json-comments: 3.1.1
-
run-async@2.4.1: {}
run-async@3.0.0: {}
@@ -27276,7 +22467,11 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
+
+ sade@1.8.1:
+ dependencies:
+ mri: 1.2.0
safe-array-concat@1.1.2:
dependencies:
@@ -27299,8 +22494,6 @@ snapshots:
safer-buffer@2.1.2: {}
- sax@1.4.1: {}
-
saxes@6.0.0:
dependencies:
xmlchars: 2.2.0
@@ -27335,35 +22528,8 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- schema-utils@2.7.0:
- dependencies:
- '@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.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.15
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
-
- schema-utils@4.2.0:
- dependencies:
- '@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1(ajv@8.17.1)
- ajv-keywords: 5.1.0(ajv@8.17.1)
-
scrypt-js@3.0.1: {}
- search-insights@2.17.2: {}
-
secp256k1@4.0.4:
dependencies:
elliptic: 6.6.0
@@ -27381,17 +22547,11 @@ snapshots:
extend-shallow: 2.0.1
kind-of: 6.0.3
- select-hose@2.0.0: {}
-
selfsigned@2.4.1:
dependencies:
'@types/node-forge': 1.3.11
node-forge: 1.3.1
- semver-diff@3.1.1:
- dependencies:
- semver: 6.3.1
-
semver@5.7.2: {}
semver@6.3.1: {}
@@ -27430,29 +22590,6 @@ snapshots:
dependencies:
randombytes: 2.1.0
- serve-handler@6.1.5:
- 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
- range-parser: 1.2.0
-
- serve-index@1.9.1:
- dependencies:
- accepts: 1.3.8
- batch: 0.6.1
- debug: 2.6.9
- escape-html: 1.0.3
- http-errors: 1.6.3
- mime-types: 2.1.35
- parseurl: 1.3.3
- transitivePeerDependencies:
- - supports-color
-
serve-static@1.16.2:
dependencies:
encodeurl: 2.0.0
@@ -27484,8 +22621,6 @@ snapshots:
setimmediate@1.0.5: {}
- setprototypeof@1.1.0: {}
-
setprototypeof@1.2.0: {}
sha.js@2.4.11:
@@ -27516,8 +22651,6 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.8.1: {}
-
shell-quote@1.8.2: {}
shelljs@0.8.5:
@@ -27541,25 +22674,10 @@ snapshots:
dependencies:
is-arrayish: 0.3.2
- sirv@2.0.4:
- dependencies:
- '@polka/url': 1.0.0-next.28
- mrmime: 2.0.0
- totalist: 3.0.1
-
sisteransi@1.0.5: {}
- sitemap@7.1.2:
- dependencies:
- '@types/node': 17.0.45
- '@types/sax': 1.2.7
- arg: 5.0.2
- sax: 1.4.1
-
slash@3.0.0: {}
- slash@4.0.0: {}
-
slash@5.1.0: {}
slice-ansi@2.1.0:
@@ -27602,12 +22720,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- sockjs@0.3.24:
- dependencies:
- faye-websocket: 0.11.4
- uuid: 8.3.2
- websocket-driver: 0.7.4
-
solc@0.8.26(debug@4.3.7):
dependencies:
command-exists: 1.2.9
@@ -27678,8 +22790,6 @@ snapshots:
dependencies:
atomic-sleep: 1.0.0
- sort-css-media-queries@2.1.0: {}
-
source-map-js@1.2.1: {}
source-map-support@0.5.13:
@@ -27703,7 +22813,7 @@ snapshots:
source-map@0.7.4: {}
- space-separated-tokens@1.1.5: {}
+ space-separated-tokens@2.0.2: {}
spawndamnit@3.0.1:
dependencies:
@@ -27724,27 +22834,6 @@ snapshots:
spdx-license-ids@3.0.20: {}
- spdy-transport@3.0.0:
- dependencies:
- debug: 4.3.7(supports-color@8.1.1)
- detect-node: 2.1.0
- hpack.js: 2.1.6
- obuf: 1.1.2
- readable-stream: 3.6.2
- wbuf: 1.7.3
- transitivePeerDependencies:
- - supports-color
-
- spdy@4.0.2:
- dependencies:
- debug: 4.3.7(supports-color@8.1.1)
- handle-thing: 2.0.1
- http-deceiver: 1.2.7
- select-hose: 2.0.0
- spdy-transport: 3.0.0
- transitivePeerDependencies:
- - supports-color
-
split-ca@1.0.1: {}
split-on-first@1.1.0: {}
@@ -27757,8 +22846,6 @@ snapshots:
sprintf-js@1.0.3: {}
- stable@0.1.8: {}
-
stack-utils@2.0.6:
dependencies:
escape-string-regexp: 2.0.0
@@ -27769,8 +22856,6 @@ snapshots:
dependencies:
type-fest: 0.7.1
- state-toggle@1.0.3: {}
-
statuses@1.5.0: {}
statuses@2.0.1: {}
@@ -27880,11 +22965,10 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- stringify-object@3.3.0:
+ stringify-entities@4.0.4:
dependencies:
- get-own-enumerable-property-symbols: 3.0.2
- is-obj: 1.0.1
- is-regexp: 1.0.0
+ character-entities-html4: 2.1.0
+ character-entities-legacy: 3.0.0
strip-ansi@5.2.0:
dependencies:
@@ -27918,16 +23002,10 @@ snapshots:
dependencies:
min-indent: 1.0.1
- strip-json-comments@2.0.1: {}
-
strip-json-comments@3.1.1: {}
strnum@1.0.5: {}
- style-to-object@0.3.0:
- dependencies:
- inline-style-parser: 0.1.1
-
styled-components@6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@emotion/is-prop-valid': 1.2.2
@@ -27958,12 +23036,6 @@ snapshots:
'@babel/core': 7.26.0
babel-plugin-macros: 3.1.0
- stylehacks@5.1.1(postcss@8.4.47):
- dependencies:
- browserslist: 4.23.3
- postcss: 8.4.47
- postcss-selector-parser: 6.1.2
-
stylis@4.2.0: {}
stylis@4.3.2: {}
@@ -27997,18 +23069,6 @@ snapshots:
svg-arc-to-cubic-bezier@3.2.0: {}
- svg-parser@2.0.4: {}
-
- svgo@2.8.0:
- dependencies:
- '@trysound/sax': 0.2.0
- commander: 7.2.0
- css-select: 4.3.0
- css-tree: 1.1.3
- csso: 4.2.0
- picocolors: 1.1.0
- stable: 0.1.8
-
symbol-observable@4.0.0: {}
symbol-tree@3.2.4: {}
@@ -28063,8 +23123,6 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- tapable@1.1.3: {}
-
tapable@2.2.1: {}
tar-fs@1.16.3:
@@ -28113,22 +23171,6 @@ snapshots:
term-size@2.2.1: {}
- terser-webpack-plugin@5.3.10(webpack@5.94.0):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- jest-worker: 27.5.1
- schema-utils: 3.3.0
- serialize-javascript: 6.0.2
- terser: 5.33.0
- webpack: 5.94.0
-
- terser@5.33.0:
- dependencies:
- '@jridgewell/source-map': 0.3.6
- acorn: 8.12.1
- commander: 2.20.3
- source-map-support: 0.5.21
-
terser@5.36.0:
dependencies:
'@jridgewell/source-map': 0.3.6
@@ -28175,8 +23217,6 @@ snapshots:
through@2.3.8: {}
- thunky@1.1.0: {}
-
tightrope@0.2.0: {}
timeout-abort-controller@2.0.0:
@@ -28191,8 +23231,6 @@ snapshots:
tiny-invariant@1.3.3: {}
- tiny-warning@1.0.3: {}
-
tmp-promise@3.0.3:
dependencies:
tmp: 0.2.3
@@ -28209,8 +23247,6 @@ snapshots:
to-fast-properties@2.0.0: {}
- to-readable-stream@1.0.0: {}
-
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
@@ -28221,8 +23257,6 @@ snapshots:
toposort@2.0.2: {}
- totalist@3.0.1: {}
-
tough-cookie@4.1.4:
dependencies:
psl: 1.9.0
@@ -28236,11 +23270,9 @@ snapshots:
dependencies:
punycode: 2.3.1
- trim-trailing-lines@1.1.4: {}
-
- trim@0.0.1: {}
+ trim-lines@3.0.1: {}
- trough@1.0.5: {}
+ trough@2.2.0: {}
ts-api-utils@1.3.0(typescript@5.6.2):
dependencies:
@@ -28421,10 +23453,6 @@ snapshots:
is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
- typedarray-to-buffer@3.1.5:
- dependencies:
- is-typedarray: 1.0.0
-
typedarray@0.0.6: {}
typescript@5.6.2: {}
@@ -28461,8 +23489,6 @@ snapshots:
dependencies:
'@fastify/busboy': 2.1.1
- undici@6.19.8: {}
-
unenv@1.10.0:
dependencies:
consola: 3.2.3
@@ -28471,11 +23497,6 @@ snapshots:
node-fetch-native: 1.6.4
pathe: 1.1.2
- unherit@1.1.3:
- dependencies:
- inherits: 2.0.4
- xtend: 4.0.2
-
unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
@@ -28499,60 +23520,40 @@ snapshots:
unicorn-magic@0.1.0: {}
- unified@9.2.0:
- dependencies:
- '@types/unist': 2.0.11
- bail: 1.0.5
- extend: 3.0.2
- is-buffer: 2.0.5
- is-plain-obj: 2.1.0
- trough: 1.0.5
- vfile: 4.2.1
-
- unified@9.2.2:
+ unified@10.1.2:
dependencies:
'@types/unist': 2.0.11
- bail: 1.0.5
+ bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
- is-plain-obj: 2.1.0
- trough: 1.0.5
- vfile: 4.2.1
-
- unique-string@2.0.0:
- dependencies:
- crypto-random-string: 2.0.0
-
- unist-builder@2.0.3: {}
-
- unist-util-generated@1.1.6: {}
+ is-plain-obj: 4.1.0
+ trough: 2.2.0
+ vfile: 5.3.7
- unist-util-is@4.1.0: {}
+ unist-util-generated@2.0.1: {}
- unist-util-position@3.1.0: {}
-
- unist-util-remove-position@2.0.1:
+ unist-util-is@5.2.1:
dependencies:
- unist-util-visit: 2.0.3
+ '@types/unist': 2.0.11
- unist-util-remove@2.1.0:
+ unist-util-position@4.0.4:
dependencies:
- unist-util-is: 4.1.0
+ '@types/unist': 2.0.11
- unist-util-stringify-position@2.0.3:
+ unist-util-stringify-position@3.0.3:
dependencies:
'@types/unist': 2.0.11
- unist-util-visit-parents@3.1.1:
+ unist-util-visit-parents@5.1.3:
dependencies:
'@types/unist': 2.0.11
- unist-util-is: 4.1.0
+ unist-util-is: 5.2.1
- unist-util-visit@2.0.3:
+ unist-util-visit@4.1.2:
dependencies:
'@types/unist': 2.0.11
- unist-util-is: 4.1.0
- unist-util-visit-parents: 3.1.1
+ unist-util-is: 5.2.1
+ unist-util-visit-parents: 5.1.3
universalify@0.1.2: {}
@@ -28585,11 +23586,11 @@ snapshots:
consola: 3.2.3
pathe: 1.1.2
- update-browserslist-db@1.1.0(browserslist@4.23.3):
+ update-browserslist-db@1.1.1(browserslist@4.23.3):
dependencies:
browserslist: 4.23.3
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
@@ -28597,42 +23598,12 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
- update-notifier@5.1.0:
- dependencies:
- boxen: 5.1.2
- chalk: 4.1.2
- configstore: 5.0.1
- has-yarn: 2.1.0
- import-lazy: 2.1.0
- is-ci: 2.0.0
- is-installed-globally: 0.4.0
- is-npm: 5.0.0
- is-yarn-global: 0.3.0
- latest-version: 5.1.0
- pupa: 2.1.1
- semver: 7.6.3
- semver-diff: 3.1.1
- xdg-basedir: 4.0.0
-
uqr@0.1.2: {}
uri-js@4.4.1:
dependencies:
punycode: 2.3.1
- url-loader@4.1.1(file-loader@6.2.0(webpack@5.94.0))(webpack@5.94.0):
- dependencies:
- loader-utils: 2.0.4
- mime-types: 2.1.35
- schema-utils: 3.3.0
- webpack: 5.94.0
- optionalDependencies:
- file-loader: 6.2.0(webpack@5.94.0)
-
- url-parse-lax@3.0.0:
- dependencies:
- prepend-http: 2.0.0
-
url-parse@1.5.10:
dependencies:
querystringify: 2.2.0
@@ -28654,23 +23625,6 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.8
- use-composed-ref@1.3.0(react@18.3.1):
- dependencies:
- react: 18.3.1
-
- use-isomorphic-layout-effect@1.1.2(@types/react@18.3.12)(react@18.3.1):
- dependencies:
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.12
-
- use-latest@1.2.1(@types/react@18.3.12)(react@18.3.1):
- dependencies:
- react: 18.3.1
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.12)(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.12
-
use-sidecar@1.1.2(@types/react@18.3.12)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
@@ -28691,10 +23645,6 @@ snapshots:
dependencies:
react: 18.3.1
- use-sync-external-store@1.2.2(react@18.3.1):
- dependencies:
- react: 18.3.1
-
utf-8-validate@5.0.10:
dependencies:
node-gyp-build: 4.8.2
@@ -28711,16 +23661,19 @@ snapshots:
is-typed-array: 1.1.13
which-typed-array: 1.1.15
- utila@0.4.0: {}
-
- utility-types@3.11.0: {}
-
utils-merge@1.0.1: {}
uuid@8.3.2: {}
uuid@9.0.1: {}
+ uvu@0.5.6:
+ dependencies:
+ dequal: 2.0.3
+ diff: 5.2.0
+ kleur: 4.1.5
+ sade: 1.8.1
+
v8-compile-cache-lib@3.0.1: {}
v8-to-istanbul@9.3.0:
@@ -28752,25 +23705,26 @@ snapshots:
'@types/react': 18.3.8
react: 18.3.1
- value-equal@1.0.1: {}
-
varint@6.0.0: {}
vary@1.1.2: {}
- vfile-location@3.2.0: {}
+ vfile-location@4.1.0:
+ dependencies:
+ '@types/unist': 2.0.11
+ vfile: 5.3.7
- vfile-message@2.0.4:
+ vfile-message@3.1.4:
dependencies:
'@types/unist': 2.0.11
- unist-util-stringify-position: 2.0.3
+ unist-util-stringify-position: 3.0.3
- vfile@4.2.1:
+ vfile@5.3.7:
dependencies:
'@types/unist': 2.0.11
is-buffer: 2.0.5
- unist-util-stringify-position: 2.0.3
- vfile-message: 2.0.4
+ unist-util-stringify-position: 3.0.3
+ vfile-message: 3.1.4
viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8):
dependencies:
@@ -28835,10 +23789,10 @@ snapshots:
dependencies:
xml-name-validator: 4.0.0
- wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8):
+ wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8):
dependencies:
'@tanstack/react-query': 5.55.3(react@18.3.1)
- '@wagmi/connectors': 5.1.15(@types/react@18.3.12)(@wagmi/core@2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.12)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ '@wagmi/connectors': 5.1.15(@types/react@18.3.12)(@wagmi/core@2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.12)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
'@wagmi/core': 2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.12)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))
react: 18.3.1
use-sync-external-store: 1.2.0(react@18.3.1)
@@ -28872,10 +23826,10 @@ snapshots:
- utf-8-validate
- zod
- wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8):
+ wagmi@2.12.17(@tanstack/query-core@5.55.3)(@tanstack/react-query@5.55.3(react@18.3.1))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8):
dependencies:
'@tanstack/react-query': 5.55.3(react@18.3.1)
- '@wagmi/connectors': 5.1.15(@types/react@18.3.8)(@wagmi/core@2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.8)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.4(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ '@wagmi/connectors': 5.1.15(@types/react@18.3.8)(@wagmi/core@2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.8)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.8)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
'@wagmi/core': 2.13.8(@tanstack/query-core@5.55.3)(@types/react@18.3.8)(immer@10.0.2)(react@18.3.1)(typescript@5.6.3)(viem@2.17.0(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.23.8))
react: 18.3.1
use-sync-external-store: 1.2.0(react@18.3.1)
@@ -28909,34 +23863,15 @@ snapshots:
- utf-8-validate
- zod
- wait-on@6.0.1:
- dependencies:
- axios: 0.25.0
- joi: 17.13.3
- lodash: 4.17.21
- minimist: 1.2.8
- rxjs: 7.8.1
- transitivePeerDependencies:
- - debug
-
walker@1.0.8:
dependencies:
makeerror: 1.0.12
- watchpack@2.4.2:
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
-
- wbuf@1.7.3:
- dependencies:
- minimalistic-assert: 1.0.1
-
wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
- web-namespaces@1.1.4: {}
+ web-namespaces@2.0.1: {}
web-streams-polyfill@3.3.3: {}
@@ -28980,141 +23915,14 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-bundle-analyzer@4.10.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
- dependencies:
- '@discoveryjs/json-ext': 0.5.7
- acorn: 8.12.1
- acorn-walk: 8.3.4
- commander: 7.2.0
- debounce: 1.2.1
- escape-string-regexp: 4.0.0
- gzip-size: 6.0.0
- html-escaper: 2.0.2
- opener: 1.5.2
- picocolors: 1.1.0
- sirv: 2.0.4
- ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- webpack-dev-middleware@5.3.4(webpack@5.94.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.94.0
-
- webpack-dev-server@4.15.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.94.0):
- 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.12
- ansi-html-community: 0.0.8
- bonjour-service: 1.2.1
- chokidar: 3.6.0
- colorette: 2.0.20
- compression: 1.7.4
- connect-history-api-fallback: 2.0.0
- default-gateway: 6.0.3
- express: 4.21.0
- graceful-fs: 4.2.11
- html-entities: 2.5.2
- http-proxy-middleware: 2.0.6(@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.4.1
- serve-index: 1.9.1
- sockjs: 0.3.24
- spdy: 4.0.2
- webpack-dev-middleware: 5.3.4(webpack@5.94.0)
- ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- optionalDependencies:
- webpack: 5.94.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
-
- webpack-merge@5.10.0:
- dependencies:
- clone-deep: 4.0.1
- flat: 5.0.2
- wildcard: 2.0.1
-
- webpack-sources@3.2.3: {}
-
- webpack@5.94.0:
- dependencies:
- '@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
- browserslist: 4.23.3
- chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.1
- es-module-lexer: 1.5.4
- 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.10(webpack@5.94.0)
- watchpack: 2.4.2
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
-
- webpackbar@5.0.2(webpack@5.94.0):
- dependencies:
- chalk: 4.1.2
- consola: 2.15.3
- pretty-time: 1.1.0
- std-env: 3.7.0
- webpack: 5.94.0
-
- websocket-driver@0.7.4:
- dependencies:
- http-parser-js: 0.5.8
- safe-buffer: 5.2.1
- websocket-extensions: 0.1.4
-
- websocket-extensions@0.1.4: {}
-
whatwg-encoding@2.0.0:
dependencies:
iconv-lite: 0.6.3
- whatwg-encoding@3.1.1:
- dependencies:
- iconv-lite: 0.6.3
-
whatwg-fetch@3.6.20: {}
whatwg-mimetype@3.0.0: {}
- whatwg-mimetype@4.0.0: {}
-
whatwg-url@11.0.0:
dependencies:
tr46: 3.0.0
@@ -29179,12 +23987,6 @@ snapshots:
dependencies:
string-width: 4.2.3
- widest-line@4.0.1:
- dependencies:
- string-width: 5.1.2
-
- wildcard@2.0.1: {}
-
word-wrap@1.2.5: {}
wordwrap@1.0.0: {}
@@ -29223,13 +24025,6 @@ snapshots:
imurmurhash: 0.1.4
signal-exit: 3.0.7
- write-file-atomic@3.0.3:
- dependencies:
- imurmurhash: 0.1.4
- is-typedarray: 1.0.0
- signal-exit: 3.0.7
- typedarray-to-buffer: 3.1.5
-
write-file-atomic@4.0.2:
dependencies:
imurmurhash: 0.1.4
@@ -29262,12 +24057,6 @@ snapshots:
bufferutil: 4.0.8
utf-8-validate: 5.0.10
- xdg-basedir@4.0.0: {}
-
- xml-js@1.6.11:
- dependencies:
- sax: 1.4.1
-
xml-name-validator@4.0.0: {}
xmlchars@2.2.0: {}
@@ -29385,4 +24174,4 @@ snapshots:
immer: 10.0.2
react: 18.3.1
- zwitch@1.0.5: {}
+ zwitch@2.0.4: {}