diff --git a/.trunk/configs/rome.json b/.trunk/configs/rome.json
index 639e43cb..1f5dbcd1 100644
--- a/.trunk/configs/rome.json
+++ b/.trunk/configs/rome.json
@@ -1,5 +1,5 @@
{
- "$schema": "../../node_modules/rome/configuration_schema.json",
+ "$schema": "./node_modules/rome/configuration_schema.json",
"formatter": {
"enabled": true,
"indentStyle": "space",
@@ -13,5 +13,11 @@
},
"organizeImports": {
"enabled": true
+ },
+ "files": {
+ "ignore": [
+ "node_modules",
+ "dist"
+ ]
}
-}
+}
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
index b3568f7e..ab8c7272 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -3,5 +3,8 @@
"editor.defaultFormatter": "trunk.io",
"files.associations": {
"*.mdx": "markdown"
+ },
+ "[typescriptreact]": {
+ "editor.defaultFormatter": "rome.rome"
}
-}
+}
\ No newline at end of file
diff --git a/docs/configuration/module-config/detection-sensor.mdx b/docs/configuration/module-config/detection-sensor.mdx
new file mode 100644
index 00000000..3d28817c
--- /dev/null
+++ b/docs/configuration/module-config/detection-sensor.mdx
@@ -0,0 +1,134 @@
+---
+id: detection-sensor
+title: Detection Sensor Module Usage
+slug: /settings/moduleconfig/detection-sensor
+sidebar_label: Detection Sensor
+---
+
+import Tabs from "@theme/Tabs";
+import TabItem from "@theme/TabItem";
+
+The Detection Sensor module allows you to configure a GPIO pin to be monitored for a specified high/low status and send text alerts over the Detection Sensor portnum when an event is detected. This is particularly useful for motion detection sensors, reed switches, and other open / closed state systems in which notifications over the mesh are desired. Config options are: Enabled, Minimum Broadcast Interval, State Broadcast Interval, Send Bell, Name, Monitor Pin, Detection Triggered High, and Use Pull-up.
+
+In order to use this module, make sure your devices have firmware version 2.2.2 or higher.
+
+## Detection Sensor Module Config Values
+
+### Enabled
+
+Whether the Module is enabled.
+
+### Minimum Broadcast Interval
+
+The interval in seconds of how often we can send a message to the mesh when a state change is detected.
+
+### State Broadcast Interval
+
+The interval in seconds of how often we should send a message to the mesh with the current state regardless of changes, When set to 0, only state changes will be broadcasted, Works as a sort of status heartbeat for peace of mind.
+
+### Send Bell
+
+Send ASCII bell with alert message. Useful for triggering ext. notification on bell
+name.
+
+### Friendly Name
+
+Used to format the message sent to mesh. Example: A name "Motion" would result in a message "Motion detected". Maximum length of 20 characters.
+
+### Monitor Pin
+
+The GPIO pin to monitor for state changes.
+
+### Detection Triggered High
+
+Whether or not the GPIO pin state detection is triggered on HIGH (1), otherwise LOW (0).
+
+### Use Pull-up
+
+Whether or not use INPUT_PULLUP mode for GPIO pin. Only applicable if the board uses pull-up resistors on the pin.
+
+## Detection Sensor Module Client Availability
+
+
+
+
+
+:::info
+All Detection Sensor Module config options are available for Android in app version 2.2.2 and higher.
+
+1. Open the Meshtastic App
+2. Navigate to: **Vertical Ellipsis (3 dots top right) > Radio Configuration > Detection Sensor**
+:::
+
+
+
+
+All Detection Sensor Module config options are available on iOS, iPadOS and macOS app versions 2.2.2 and higher at Settings > Modules > Detection Sensor
+
+
+
+
+:::info
+
+All Detection Sensor Module config options are available in the python CLI version 2.2.2 and higher.
+
+:::
+
+Example commands are below:
+
+```shell title="Enable/Disable the Detection Sensor Module"
+meshtastic --set detection_sensor.enabled true
+meshtastic --set detection_sensor.enabled false
+```
+
+```shell title="Set the Minimum Broadcast Interval to 90 seconds"
+meshtastic --set detection_sensor.minimum_broadcast_secs 90
+```
+
+```shell title="Set the State Broadcast Interval to 5 minutes"
+meshtastic --set detection_sensor.state_broadcast_secs 300
+```
+
+```shell title="Enable/Disable Send Bell"
+meshtastic --set detection_sensor.send_bell true
+meshtastic --set detection_sensor.send_bell false
+```
+
+```shell title="Set the friendly name to 'motion'"
+meshtastic --set detection_sensor.name "motion"
+```
+
+```shell title="Set the Monitor Pin to 7"
+meshtastic --set detection_sensor.monitor_pin 7
+```
+
+```shell title="Enable Notifications when the Monitor Pin goes HIGH"
+meshtastic --set detection_sensor.monitor_pin true
+```
+
+```shell title="Enable Notifications when the Monitor Pin goes LOW"
+meshtastic --set detection_sensor.monitor_pin false
+```
+
+```shell title="Enable the use INPUT_PULLUP mode"
+meshtastic --set detection_sensor.use_pullup true
+```
+
+```shell title="Get the Detection Sensor Module Configuration"
+meshtastic --get detection_sensor
+```
+
+
+
+Not yet implemented.
+
+
+
\ No newline at end of file
diff --git a/docs/configuration/module-config/index.mdx b/docs/configuration/module-config/index.mdx
index 38e77cec..b4335d9f 100644
--- a/docs/configuration/module-config/index.mdx
+++ b/docs/configuration/module-config/index.mdx
@@ -12,6 +12,7 @@ Modules are included in the firmware and allow users to extend the functionality
| :------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| [Audio](/docs/settings/moduleconfig/audio) | Enable Support for Codec2 Voice Comms on certain devices. |
| [Canned Message](/docs/settings/moduleconfig/canned-message) | Set a number of predefined messages to send out directly from the device with the use of an input device like a rotary encoder. |
+| [Detection Sensor](/docs/settings/moduleconfig/detection-sensor) | Configure a GPIO pin to be monitored for specified high/low status and send text alerts. |
| [External Notification](/docs/settings/moduleconfig/external-notification) | Incoming messages are able to alert you using circuits you attach to the device (LEDs, Buzzers, etc). |
| [MQTT](/docs/settings/moduleconfig/mqtt) | Forward packets along to an MQTT server. This allows users on the local mesh to communicate with users on another mesh over the internet. |
| [Neighbor Info](/docs/settings/moduleconfig/neighbor-info) | Send info on 0-hop neighbors to the mesh. |
diff --git a/docs/software/integrations/atak-plugin.mdx b/docs/software/integrations/atak-plugin.mdx
new file mode 100644
index 00000000..25d110bd
--- /dev/null
+++ b/docs/software/integrations/atak-plugin.mdx
@@ -0,0 +1,28 @@
+---
+id: integrations-atak-plugin
+title: ATAK Plugin
+sidebar_label: ATAK Plugin
+sidebar_position: 2
+---
+
+## Official Meshtastic ATAK Plugin
+
+Meshtastic can integrate with ATAK on Android using the [Official ATAK Plugin.](https://github.com/meshtastic/ATAK-Plugin)
+
+### Introduction
+
+The ATAK plugin does not permit any Meshtastic configuration. The plugin does three things:
+
+1. Bind to the IMeshService provided by the Meshtastic Android App in order to send.
+2. Intercept all outgoing ATAK CoT via the ATAK "PreSendProcessor" Interface and send them to the IMeshService.
+3. Listen for broadcasts from the Meshtastic Android App regarding ATAK_FORWARDER portnum packets.
+
+The current iteration works very well for ATAK CoT that fit within the 200ish byte range (after we shrink via libcotshirnk) because they fit into a single DataPacket.
+
+### Instructions
+
+1. Use the Meshtastic Android App on all party's devices, and ensure they can talk to their local LoRa radio. Confirm they are able to achieve basic text messaging using the App.
+
+2. With the Meshtastic Android App running in the background (to ensure the IMeshService is alive), launch ATAK (with the Meshtastic ATAK-Plugin installed or install it once ATAK is running) and you should observe a green Meshtastic icon in the bottom right. If the icon is red, then the plugin was not able to bind to the IMeshService provided by the Meshtastic Android App. If this is the case, check to ensure the Meshtastic Android App is functioning. The plugin will reconnect after a failed bind without restarting ATAK.
+
+3. ATAK PLI and simple map markers will fit within the "small send" DataPackets. Sending larger CoT such as freestyle map drawings or GeoChats will fragment and take longer to send. Don't try to send a bunch without waiting for the previous one to complete.
\ No newline at end of file
diff --git a/docs/software/integrations/index.mdx b/docs/software/integrations/index.mdx
index c49a761e..58bd9a65 100644
--- a/docs/software/integrations/index.mdx
+++ b/docs/software/integrations/index.mdx
@@ -11,4 +11,6 @@ Current Meshtastic integrations:
- [CalTopo / SARTopo](/docs/software/integrations/integrations-caltopo) - Track Meshtastic nodes in CalTopo and SARTopo.
+- [ATAK Plugin](/docs/software/integrations/integrations-atak-plugin) - Official Meshtastic ATAK Plugin for sending CoT to IMeshService in the Meshtastic Android app.
+
Support for the integrated products should be sought from their respective authors or vendors.
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 476575ad..1a29164a 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -15,11 +15,6 @@ const config = {
organizationName: "meshtastic",
projectName: "meshtastic",
themeConfig: /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ {
- announcementBar: {
- id: "2_0",
- content:
- '🎉 Meshtastic 2.0 Has Now Launched! Check it Out Here 🎉',
- },
docs: {
sidebar: {
autoCollapseCategories: true,
diff --git a/package.json b/package.json
index 5f5c067e..481c8d67 100644
--- a/package.json
+++ b/package.json
@@ -18,32 +18,26 @@
"@docusaurus/preset-classic": "3.0.0-alpha.0",
"@docusaurus/theme-common": "3.0.0-alpha.0",
"@docusaurus/theme-mermaid": "3.0.0-alpha.0",
- "@headlessui/react": "^1.7.16",
"@heroicons/react": "^2.0.18",
"@mdx-js/react": "^2.3.0",
- "@meshtastic/meshtasticjs": "2.2.0-0",
- "autoprefixer": "^10.4.14",
+ "@meshtastic/meshtasticjs": "2.2.4-0",
+ "autoprefixer": "^10.4.15",
"base64-js": "^1.5.1",
"dotenv": "^16.3.1",
- "framer-motion": "^6.5.1",
- "postcss": "^8.4.27",
+ "postcss": "^8.4.29",
"react": "^18.2.0",
"react-dom": "^18.2.0",
- "react-icons": "^4.10.1",
- "react-responsive-carousel": "^3.2.23",
- "swr": "^2.2.0",
- "tailwindcss": "^3.3.3",
- "url-search-params-polyfill": "^8.2.4",
- "use-breakpoint": "^3.1.1"
+ "react-icons": "^4.11.0",
+ "swr": "^2.2.2",
+ "tailwindcss": "^3.3.3"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.0.0-alpha.0",
- "@tailwindcss/typography": "^0.5.9",
"@tsconfig/docusaurus": "^2.0.0",
- "@types/node": "^20.4.8",
- "@types/react": "^18.2.18",
+ "@types/node": "^20.6.0",
+ "@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"rome": "^12.1.3",
- "typescript": "^5.1.6"
+ "typescript": "^5.2.2"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 46350d7d..f7c57f22 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,22 +10,19 @@ dependencies:
version: 4.19.1
'@docusaurus/core':
specifier: 3.0.0-alpha.0
- version: 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ version: 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/plugin-content-docs':
specifier: 3.0.0-alpha.0
- version: 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ version: 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/preset-classic':
specifier: 3.0.0-alpha.0
- version: 3.0.0-alpha.0(@algolia/client-search@4.19.1)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ version: 3.0.0-alpha.0(@algolia/client-search@4.19.1)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.8.2)(typescript@5.2.2)
'@docusaurus/theme-common':
specifier: 3.0.0-alpha.0
- version: 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ version: 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/theme-mermaid':
specifier: 3.0.0-alpha.0
- version: 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@headlessui/react':
- specifier: ^1.7.16
- version: 1.7.16(react-dom@18.2.0)(react@18.2.0)
+ version: 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@heroicons/react':
specifier: ^2.0.18
version: 2.0.18(react@18.2.0)
@@ -33,23 +30,20 @@ dependencies:
specifier: ^2.3.0
version: 2.3.0(react@18.2.0)
'@meshtastic/meshtasticjs':
- specifier: 2.2.0-0
- version: 2.2.0-0
+ specifier: 2.2.4-0
+ version: 2.2.4-0
autoprefixer:
- specifier: ^10.4.14
- version: 10.4.14(postcss@8.4.27)
+ specifier: ^10.4.15
+ version: 10.4.15(postcss@8.4.29)
base64-js:
specifier: ^1.5.1
version: 1.5.1
dotenv:
specifier: ^16.3.1
version: 16.3.1
- framer-motion:
- specifier: ^6.5.1
- version: 6.5.1(react-dom@18.2.0)(react@18.2.0)
postcss:
- specifier: ^8.4.27
- version: 8.4.27
+ specifier: ^8.4.29
+ version: 8.4.29
react:
specifier: ^18.2.0
version: 18.2.0
@@ -57,40 +51,28 @@ dependencies:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
react-icons:
- specifier: ^4.10.1
- version: 4.10.1(react@18.2.0)
- react-responsive-carousel:
- specifier: ^3.2.23
- version: 3.2.23
+ specifier: ^4.11.0
+ version: 4.11.0(react@18.2.0)
swr:
- specifier: ^2.2.0
- version: 2.2.0(react@18.2.0)
+ specifier: ^2.2.2
+ version: 2.2.2(react@18.2.0)
tailwindcss:
specifier: ^3.3.3
version: 3.3.3
- url-search-params-polyfill:
- specifier: ^8.2.4
- version: 8.2.4
- use-breakpoint:
- specifier: ^3.1.1
- version: 3.1.1(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@docusaurus/module-type-aliases':
specifier: 3.0.0-alpha.0
version: 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
- '@tailwindcss/typography':
- specifier: ^0.5.9
- version: 0.5.9(tailwindcss@3.3.3)
'@tsconfig/docusaurus':
specifier: ^2.0.0
version: 2.0.0
'@types/node':
- specifier: ^20.4.8
- version: 20.4.8
+ specifier: ^20.6.0
+ version: 20.6.0
'@types/react':
- specifier: ^18.2.18
- version: 18.2.18
+ specifier: ^18.2.21
+ version: 18.2.21
'@types/react-dom':
specifier: ^18.2.7
version: 18.2.7
@@ -98,74 +80,86 @@ devDependencies:
specifier: ^12.1.3
version: 12.1.3
typescript:
- specifier: ^5.1.6
- version: 5.1.6
+ specifier: ^5.2.2
+ version: 5.2.2
packages:
- /@algolia/autocomplete-core@1.8.2:
- resolution: {integrity: sha512-mTeshsyFhAqw/ebqNsQpMtbnjr+qVOSKXArEj4K0d7sqc8It1XD0gkASwecm9mF/jlOQ4Z9RNg1HbdA8JPdRwQ==}
+ /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)(search-insights@2.8.2):
+ resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
dependencies:
- '@algolia/autocomplete-shared': 1.8.2
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)(search-insights@2.8.2)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)
+ transitivePeerDependencies:
+ - '@algolia/client-search'
+ - algoliasearch
+ - search-insights
dev: false
- /@algolia/autocomplete-preset-algolia@1.8.2(@algolia/client-search@4.19.1)(algoliasearch@4.17.0):
- resolution: {integrity: sha512-J0oTx4me6ZM9kIKPuL3lyU3aB8DEvpVvR6xWmHVROx5rOYJGQcZsdG4ozxwcOyiiu3qxMkIbzntnV1S1VWD8yA==}
+ /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)(search-insights@2.8.2):
+ resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==}
+ peerDependencies:
+ search-insights: '>= 1 < 3'
+ dependencies:
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)
+ search-insights: 2.8.2
+ transitivePeerDependencies:
+ - '@algolia/client-search'
+ - algoliasearch
+ dev: false
+
+ /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1):
+ resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
- '@algolia/autocomplete-shared': 1.8.2
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)
'@algolia/client-search': 4.19.1
- algoliasearch: 4.17.0
+ algoliasearch: 4.19.1
dev: false
- /@algolia/autocomplete-shared@1.8.2:
- resolution: {integrity: sha512-b6Z/X4MczChMcfhk6kfRmBzPgjoPzuS9KGR4AFsiLulLNRAAqhP+xZTKtMnZGhLuc61I20d5WqlId02AZvcO6g==}
- dev: false
-
- /@algolia/cache-browser-local-storage@4.17.0:
- resolution: {integrity: sha512-myRSRZDIMYB8uCkO+lb40YKiYHi0fjpWRtJpR/dgkaiBlSD0plRyB6lLOh1XIfmMcSeBOqDE7y9m8xZMrXYfyQ==}
+ /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1):
+ resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==}
+ peerDependencies:
+ '@algolia/client-search': '>= 4.9.1 < 6'
+ algoliasearch: '>= 4.9.1 < 6'
dependencies:
- '@algolia/cache-common': 4.17.0
+ '@algolia/client-search': 4.19.1
+ algoliasearch: 4.19.1
dev: false
- /@algolia/cache-common@4.17.0:
- resolution: {integrity: sha512-g8mXzkrcUBIPZaulAuqE7xyHhLAYAcF2xSch7d9dABheybaU3U91LjBX6eJTEB7XVhEsgK4Smi27vWtAJRhIKQ==}
+ /@algolia/cache-browser-local-storage@4.19.1:
+ resolution: {integrity: sha512-FYAZWcGsFTTaSAwj9Std8UML3Bu8dyWDncM7Ls8g+58UOe4XYdlgzXWbrIgjaguP63pCCbMoExKr61B+ztK3tw==}
+ dependencies:
+ '@algolia/cache-common': 4.19.1
dev: false
/@algolia/cache-common@4.19.1:
resolution: {integrity: sha512-XGghi3l0qA38HiqdoUY+wvGyBsGvKZ6U3vTiMBT4hArhP3fOGLXpIINgMiiGjTe4FVlTa5a/7Zf2bwlIHfRqqg==}
dev: false
- /@algolia/cache-in-memory@4.17.0:
- resolution: {integrity: sha512-PT32ciC/xI8z919d0oknWVu3kMfTlhQn3MKxDln3pkn+yA7F7xrxSALysxquv+MhFfNAcrtQ/oVvQVBAQSHtdw==}
+ /@algolia/cache-in-memory@4.19.1:
+ resolution: {integrity: sha512-+PDWL+XALGvIginigzu8oU6eWw+o76Z8zHbBovWYcrtWOEtinbl7a7UTt3x3lthv+wNuFr/YD1Gf+B+A9V8n5w==}
dependencies:
- '@algolia/cache-common': 4.17.0
+ '@algolia/cache-common': 4.19.1
dev: false
- /@algolia/client-account@4.17.0:
- resolution: {integrity: sha512-sSEHx9GA6m7wrlsSMNBGfyzlIfDT2fkz2u7jqfCCd6JEEwmxt8emGmxAU/0qBfbhRSuGvzojoLJlr83BSZAKjA==}
+ /@algolia/client-account@4.19.1:
+ resolution: {integrity: sha512-Oy0ritA2k7AMxQ2JwNpfaEcgXEDgeyKu0V7E7xt/ZJRdXfEpZcwp9TOg4TJHC7Ia62gIeT2Y/ynzsxccPw92GA==}
dependencies:
- '@algolia/client-common': 4.17.0
- '@algolia/client-search': 4.17.0
- '@algolia/transporter': 4.17.0
+ '@algolia/client-common': 4.19.1
+ '@algolia/client-search': 4.19.1
+ '@algolia/transporter': 4.19.1
dev: false
- /@algolia/client-analytics@4.17.0:
- resolution: {integrity: sha512-84ooP8QA3mQ958hQ9wozk7hFUbAO+81CX1CjAuerxBqjKIInh1fOhXKTaku05O/GHBvcfExpPLIQuSuLYziBXQ==}
+ /@algolia/client-analytics@4.19.1:
+ resolution: {integrity: sha512-5QCq2zmgdZLIQhHqwl55ZvKVpLM3DNWjFI4T+bHr3rGu23ew2bLO4YtyxaZeChmDb85jUdPDouDlCumGfk6wOg==}
dependencies:
- '@algolia/client-common': 4.17.0
- '@algolia/client-search': 4.17.0
- '@algolia/requester-common': 4.17.0
- '@algolia/transporter': 4.17.0
- dev: false
-
- /@algolia/client-common@4.17.0:
- resolution: {integrity: sha512-jHMks0ZFicf8nRDn6ma8DNNsdwGgP/NKiAAL9z6rS7CymJ7L0+QqTJl3rYxRW7TmBhsUH40wqzmrG6aMIN/DrQ==}
- dependencies:
- '@algolia/requester-common': 4.17.0
- '@algolia/transporter': 4.17.0
+ '@algolia/client-common': 4.19.1
+ '@algolia/client-search': 4.19.1
+ '@algolia/requester-common': 4.19.1
+ '@algolia/transporter': 4.19.1
dev: false
/@algolia/client-common@4.19.1:
@@ -175,20 +169,12 @@ packages:
'@algolia/transporter': 4.19.1
dev: false
- /@algolia/client-personalization@4.17.0:
- resolution: {integrity: sha512-RMzN4dZLIta1YuwT7QC9o+OeGz2cU6eTOlGNE/6RcUBLOU3l9tkCOdln5dPE2jp8GZXPl2yk54b2nSs1+pAjqw==}
+ /@algolia/client-personalization@4.19.1:
+ resolution: {integrity: sha512-8CWz4/H5FA+krm9HMw2HUQenizC/DxUtsI5oYC0Jxxyce1vsr8cb1aEiSJArQT6IzMynrERif1RVWLac1m36xw==}
dependencies:
- '@algolia/client-common': 4.17.0
- '@algolia/requester-common': 4.17.0
- '@algolia/transporter': 4.17.0
- dev: false
-
- /@algolia/client-search@4.17.0:
- resolution: {integrity: sha512-x4P2wKrrRIXszT8gb7eWsMHNNHAJs0wE7/uqbufm4tZenAp+hwU/hq5KVsY50v+PfwM0LcDwwn/1DroujsTFoA==}
- dependencies:
- '@algolia/client-common': 4.17.0
- '@algolia/requester-common': 4.17.0
- '@algolia/transporter': 4.17.0
+ '@algolia/client-common': 4.19.1
+ '@algolia/requester-common': 4.19.1
+ '@algolia/transporter': 4.19.1
dev: false
/@algolia/client-search@4.19.1:
@@ -203,46 +189,30 @@ packages:
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
dev: false
- /@algolia/logger-common@4.17.0:
- resolution: {integrity: sha512-DGuoZqpTmIKJFDeyAJ7M8E/LOenIjWiOsg1XJ1OqAU/eofp49JfqXxbfgctlVZVmDABIyOz8LqEoJ6ZP4DTyvw==}
- dev: false
-
/@algolia/logger-common@4.19.1:
resolution: {integrity: sha512-i6pLPZW/+/YXKis8gpmSiNk1lOmYCmRI6+x6d2Qk1OdfvX051nRVdalRbEcVTpSQX6FQAoyeaui0cUfLYW5Elw==}
dev: false
- /@algolia/logger-console@4.17.0:
- resolution: {integrity: sha512-zMPvugQV/gbXUvWBCzihw6m7oxIKp48w37QBIUu/XqQQfxhjoOE9xyfJr1KldUt5FrYOKZJVsJaEjTsu+bIgQg==}
+ /@algolia/logger-console@4.19.1:
+ resolution: {integrity: sha512-jj72k9GKb9W0c7TyC3cuZtTr0CngLBLmc8trzZlXdfvQiigpUdvTi1KoWIb2ZMcRBG7Tl8hSb81zEY3zI2RlXg==}
dependencies:
- '@algolia/logger-common': 4.17.0
+ '@algolia/logger-common': 4.19.1
dev: false
- /@algolia/requester-browser-xhr@4.17.0:
- resolution: {integrity: sha512-aSOX/smauyTkP21Pf52pJ1O2LmNFJ5iHRIzEeTh0mwBeADO4GdG94cAWDILFA9rNblq/nK3EDh3+UyHHjplZ1A==}
+ /@algolia/requester-browser-xhr@4.19.1:
+ resolution: {integrity: sha512-09K/+t7lptsweRTueHnSnmPqIxbHMowejAkn9XIcJMLdseS3zl8ObnS5GWea86mu3vy4+8H+ZBKkUN82Zsq/zg==}
dependencies:
- '@algolia/requester-common': 4.17.0
- dev: false
-
- /@algolia/requester-common@4.17.0:
- resolution: {integrity: sha512-XJjmWFEUlHu0ijvcHBoixuXfEoiRUdyzQM6YwTuB8usJNIgShua8ouFlRWF8iCeag0vZZiUm4S2WCVBPkdxFgg==}
+ '@algolia/requester-common': 4.19.1
dev: false
/@algolia/requester-common@4.19.1:
resolution: {integrity: sha512-BisRkcWVxrDzF1YPhAckmi2CFYK+jdMT60q10d7z3PX+w6fPPukxHRnZwooiTUrzFe50UBmLItGizWHP5bDzVQ==}
dev: false
- /@algolia/requester-node-http@4.17.0:
- resolution: {integrity: sha512-bpb/wDA1aC6WxxM8v7TsFspB7yBN3nqCGs2H1OADolQR/hiAIjAxusbuMxVbRFOdaUvAIqioIIkWvZdpYNIn8w==}
+ /@algolia/requester-node-http@4.19.1:
+ resolution: {integrity: sha512-6DK52DHviBHTG2BK/Vv2GIlEw7i+vxm7ypZW0Z7vybGCNDeWzADx+/TmxjkES2h15+FZOqVf/Ja677gePsVItA==}
dependencies:
- '@algolia/requester-common': 4.17.0
- dev: false
-
- /@algolia/transporter@4.17.0:
- resolution: {integrity: sha512-6xL6H6fe+Fi0AEP3ziSgC+G04RK37iRb4uUUqVAH9WPYFI8g+LYFq6iv5HS8Cbuc5TTut+Bwj6G+dh/asdb9uA==}
- dependencies:
- '@algolia/cache-common': 4.17.0
- '@algolia/logger-common': 4.17.0
- '@algolia/requester-common': 4.17.0
+ '@algolia/requester-common': 4.19.1
dev: false
/@algolia/transporter@4.19.1:
@@ -256,1324 +226,1325 @@ packages:
/@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
+ dev: false
/@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.18
+ '@jridgewell/trace-mapping': 0.3.19
dev: false
- /@babel/code-frame@7.21.4:
- resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
+ /@babel/code-frame@7.22.13:
+ resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.18.6
+ '@babel/highlight': 7.22.13
+ chalk: 2.4.2
dev: false
- /@babel/compat-data@7.21.7:
- resolution: {integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==}
+ /@babel/compat-data@7.22.9:
+ resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/core@7.21.8:
- resolution: {integrity: sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==}
+ /@babel/core@7.22.17:
+ resolution: {integrity: sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.21.4
- '@babel/generator': 7.21.5
- '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
- '@babel/helper-module-transforms': 7.21.5
- '@babel/helpers': 7.21.5
- '@babel/parser': 7.21.8
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
- '@babel/types': 7.21.5
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.22.15
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17)
+ '@babel/helpers': 7.22.15
+ '@babel/parser': 7.22.16
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.22.17
+ '@babel/types': 7.22.17
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
- semver: 6.3.0
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/generator@7.21.5:
- resolution: {integrity: sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==}
+ /@babel/generator@7.22.15:
+ resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.17
'@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.18
+ '@jridgewell/trace-mapping': 0.3.19
jsesc: 2.5.2
dev: false
- /@babel/helper-annotate-as-pure@7.18.6:
- resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
+ /@babel/helper-annotate-as-pure@7.22.5:
+ resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.17
dev: false
- /@babel/helper-builder-binary-assignment-operator-visitor@7.21.5:
- resolution: {integrity: sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==}
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
+ resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.17
dev: false
- /@babel/helper-compilation-targets@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==}
+ /@babel/helper-compilation-targets@7.22.15:
+ resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.21.7
- '@babel/core': 7.21.8
- '@babel/helper-validator-option': 7.21.0
- browserslist: 4.21.5
+ '@babel/compat-data': 7.22.9
+ '@babel/helper-validator-option': 7.22.15
+ browserslist: 4.21.10
lru-cache: 5.1.1
- semver: 6.3.0
+ semver: 6.3.1
dev: false
- /@babel/helper-create-class-features-plugin@7.21.8(@babel/core@7.21.8):
- resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==}
+ /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.21.5
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-member-expression-to-functions': 7.21.5
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.21.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/helper-split-export-declaration': 7.18.6
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.22.17
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.22.15
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.17)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
dev: false
- /@babel/helper-create-regexp-features-plugin@7.21.8(@babel/core@7.21.8):
- resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==}
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/core': 7.22.17
+ '@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
- semver: 6.3.0
+ semver: 6.3.1
dev: false
- /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.8):
- resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
+ /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.17):
+ resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
peerDependencies:
- '@babel/core': ^7.4.0-0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.4
- semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-environment-visitor@7.21.5:
- resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==}
+ /@babel/helper-environment-visitor@7.22.5:
+ resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-function-name@7.21.0:
- resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
+ /@babel/helper-function-name@7.22.5:
+ resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.20.7
- '@babel/types': 7.21.5
+ '@babel/template': 7.22.15
+ '@babel/types': 7.22.17
dev: false
- /@babel/helper-hoist-variables@7.18.6:
- resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
+ /@babel/helper-hoist-variables@7.22.5:
+ resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.17
dev: false
- /@babel/helper-member-expression-to-functions@7.21.5:
- resolution: {integrity: sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==}
+ /@babel/helper-member-expression-to-functions@7.22.15:
+ resolution: {integrity: sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.17
dev: false
- /@babel/helper-module-imports@7.21.4:
- resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
+ /@babel/helper-module-imports@7.22.15:
+ resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.17
dev: false
- /@babel/helper-module-transforms@7.21.5:
- resolution: {integrity: sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-environment-visitor': 7.21.5
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-simple-access': 7.21.5
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.19.1
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
- '@babel/types': 7.21.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/helper-optimise-call-expression@7.18.6:
- resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.21.5
- dev: false
-
- /@babel/helper-plugin-utils@7.21.5:
- resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==}
- engines: {node: '>=6.9.0'}
- dev: false
-
- /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.8):
- resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
+ /@babel/helper-module-transforms@7.22.17(@babel/core@7.22.17):
+ resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.21.5
- '@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.15
+ dev: false
+
+ /@babel/helper-optimise-call-expression@7.22.5:
+ resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.17
+ dev: false
+
+ /@babel/helper-plugin-utils@7.22.5:
+ resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/helper-remap-async-to-generator@7.22.17(@babel/core@7.22.17):
+ resolution: {integrity: sha512-bxH77R5gjH3Nkde6/LuncQoLaP16THYPscurp1S8z7S9ZgezCyV3G8Hc+TZiCmY8pz4fp8CvKSgtJMW0FkLAxA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-wrap-function': 7.22.17
+ dev: false
+
+ /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.17):
+ resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.22.15
+ '@babel/helper-optimise-call-expression': 7.22.5
+ dev: false
+
+ /@babel/helper-simple-access@7.22.5:
+ resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.17
+ dev: false
+
+ /@babel/helper-skip-transparent-expression-wrappers@7.22.5:
+ resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.17
+ dev: false
+
+ /@babel/helper-split-export-declaration@7.22.6:
+ resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.17
+ dev: false
+
+ /@babel/helper-string-parser@7.22.5:
+ resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/helper-validator-identifier@7.22.15:
+ resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/helper-validator-option@7.22.15:
+ resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/helper-wrap-function@7.22.17:
+ resolution: {integrity: sha512-nAhoheCMlrqU41tAojw9GpVEKDlTS8r3lzFmF0lP52LwblCPbuFSO7nGIZoIcoU5NIm1ABrna0cJExE4Ay6l2Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-function-name': 7.22.5
+ '@babel/template': 7.22.15
+ '@babel/types': 7.22.17
+ dev: false
+
+ /@babel/helpers@7.22.15:
+ resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.22.17
+ '@babel/types': 7.22.17
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-replace-supers@7.21.5:
- resolution: {integrity: sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==}
+ /@babel/highlight@7.22.13:
+ resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.21.5
- '@babel/helper-member-expression-to-functions': 7.21.5
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
- '@babel/types': 7.21.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/helper-simple-access@7.21.5:
- resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.21.5
- dev: false
-
- /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
- resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.21.5
- dev: false
-
- /@babel/helper-split-export-declaration@7.18.6:
- resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.21.5
- dev: false
-
- /@babel/helper-string-parser@7.21.5:
- resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
- engines: {node: '>=6.9.0'}
- dev: false
-
- /@babel/helper-validator-identifier@7.19.1:
- resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
- engines: {node: '>=6.9.0'}
- dev: false
-
- /@babel/helper-validator-option@7.21.0:
- resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
- engines: {node: '>=6.9.0'}
- dev: false
-
- /@babel/helper-wrap-function@7.20.5:
- resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-function-name': 7.21.0
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
- '@babel/types': 7.21.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/helpers@7.21.5:
- resolution: {integrity: sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.5
- '@babel/types': 7.21.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/highlight@7.18.6:
- resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.22.15
chalk: 2.4.2
js-tokens: 4.0.0
dev: false
- /@babel/parser@7.21.8:
- resolution: {integrity: sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==}
+ /@babel/parser@7.22.16:
+ resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.17
dev: false
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.8):
- resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.8)
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.22.17)
dev: false
- /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.8):
- resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.17):
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-environment-visitor': 7.21.5
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.8)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.8)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.22.17
dev: false
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.8):
- resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.8)
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.8)
- dev: false
-
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.8):
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.8)
- dev: false
-
- /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.8)
- dev: false
-
- /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.8):
- resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.8)
- dev: false
-
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.8)
- dev: false
-
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.8)
- dev: false
-
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.8):
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.21.7
- '@babel/core': 7.21.8
- '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.8)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.8)
- dev: false
-
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.8)
- dev: false
-
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.8):
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.8)
- dev: false
-
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.8):
- resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.8)
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.8):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.17):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.8):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.17):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.8):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.17):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.8):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.17):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.8):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.17):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.8):
- resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.8):
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.17):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.8):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.17):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.8):
- resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
+ /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.8):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.17):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.8):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.17):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.8):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.17):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.8):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.17):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.8):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.17):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.8):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.17):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.8):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.17):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.8):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.17):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.8):
- resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
+ /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.8):
- resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.8)
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.8):
- resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.8):
- resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
- '@babel/helper-environment-visitor': 7.21.5
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-replace-supers': 7.21.5
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/template': 7.20.7
- dev: false
-
- /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.8):
- resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.8):
- resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.21.5
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.8):
- resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.8):
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.8):
- resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-module-transforms': 7.21.5
- '@babel/helper-plugin-utils': 7.21.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-module-transforms': 7.21.5
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-simple-access': 7.21.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.8):
- resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.21.5
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-validator-identifier': 7.19.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-module-transforms': 7.21.5
- '@babel/helper-plugin-utils': 7.21.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.17):
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
+ /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-replace-supers': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.17(@babel/core@7.22.17)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.17(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-block-scoping@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-classes@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.17)
+ '@babel/helper-split-export-declaration': 7.22.6
+ globals: 11.12.0
+ dev: false
+
+ /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/template': 7.22.15
+ dev: false
+
+ /@babel/plugin-transform-destructuring@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.15
+ dev: false
+
+ /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.22.9
+ '@babel/core': 7.22.17
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.17):
+ resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-react-constant-elements@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17)
+ dev: false
+
+ /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17)
+ '@babel/types': 7.22.17
+ dev: false
+
+ /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.17):
+ resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ regenerator-transform: 0.15.2
+ dev: false
+
+ /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-runtime@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.17)
+ babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.17)
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.17)
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.8):
- resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
+ /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: false
- /@babel/plugin-transform-react-constant-elements@7.21.3(@babel/core@7.21.8):
- resolution: {integrity: sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==}
+ /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
+ /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
+ /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.8)
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==}
+ /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.8)
- '@babel/types': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.17)
dev: false
- /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
+ /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.17):
+ resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==}
+ /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- regenerator-transform: 0.15.1
+ '@babel/core': 7.22.17
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
+ /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.21.8):
- resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==}
+ /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.17
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/preset-env@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-tZFHr54GBkHk6hQuVA8w4Fmq+MSPsfvMG0vPnOYyTnJpyfMqybL8/MbNCPRT9zc2KBO2pe4tq15g6Uno4Jpoag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-plugin-utils': 7.21.5
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.8)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.8)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.8)
- semver: 6.3.0
+ '@babel/compat-data': 7.22.9
+ '@babel/core': 7.22.17
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.17)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.17)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.17)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.17)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.17)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.17)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.17)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.17)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.17)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.17)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-async-generator-functions': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-block-scoping': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-destructuring': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-modules-systemjs': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.22.17)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.22.17)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.22.17)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.17)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.22.17)
+ '@babel/types': 7.22.17
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.17)
+ babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.17)
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.17)
+ core-js-compat: 3.32.2
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
- engines: {node: '>=6.9.0'}
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.17):
+ resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.8):
- resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- dev: false
-
- /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.8):
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.8):
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.8):
- resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.8(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.8)
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-create-regexp-features-plugin': 7.21.8(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- dev: false
-
- /@babel/preset-env@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.21.7
- '@babel/core': 7.21.8
- '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.8)
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.8)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.8)
- '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.8)
- '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.8)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.8)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.8)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.8)
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.8)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.8)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.8)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.8)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.8)
- '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.8)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.8)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.8)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.8)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.8)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.8)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.8)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.8)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.8)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.8)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.8)
- '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.21.8)
- '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.8)
- '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.8)
- '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.8)
- '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.21.8)
- '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.8)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.8)
- '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.21.8)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.8)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.8)
- '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.8)
- '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.21.8)
- '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.8)
- '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.8)
- '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.8)
- '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.21.8)
- '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.8)
- '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.8)
- '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.8)
- '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.21.8)
- '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.8)
- '@babel/preset-modules': 0.1.5(@babel/core@7.21.8)
- '@babel/types': 7.21.5
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.8)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.8)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.8)
- core-js-compat: 3.30.2
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/preset-modules@0.1.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.8)
- '@babel/types': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/types': 7.22.17
esutils: 2.0.3
dev: false
- /@babel/preset-react@7.18.6(@babel/core@7.21.8):
- resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
+ /@babel/preset-react@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.8)
- '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.21.8)
- '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.21.8)
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.17)
dev: false
- /@babel/preset-typescript@7.21.5(@babel/core@7.21.8):
- resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==}
+ /@babel/preset-typescript@7.22.15(@babel/core@7.22.17):
+ resolution: {integrity: sha512-HblhNmh6yM+cU4VwbBRpxFhxsTdfS1zsvH9W+gEjD0ARV9+8B4sNfpI6GuhePti84nuvhiwKS539jKPFHskA9A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.8)
- '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.21.8)
- '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.8)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.22.17
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17)
+ '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.17)
dev: false
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: false
- /@babel/runtime-corejs3@7.21.5:
- resolution: {integrity: sha512-FRqFlFKNazWYykft5zvzuEl1YyTDGsIRrjV9rvxvYkUC7W/ueBng1X68Xd6uRMzAaJ0xMKn08/wem5YS1lpX8w==}
+ /@babel/runtime-corejs3@7.22.15:
+ resolution: {integrity: sha512-SAj8oKi8UogVi6eXQXKNPu8qZ78Yzy7zawrlTr0M+IuW/g8Qe9gVDhGcF9h1S69OyACpYoLxEzpjs1M15sI5wQ==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.30.2
- regenerator-runtime: 0.13.11
+ core-js-pure: 3.32.2
+ regenerator-runtime: 0.14.0
dev: false
- /@babel/runtime@7.21.5:
- resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==}
+ /@babel/runtime@7.22.15:
+ resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==}
engines: {node: '>=6.9.0'}
dependencies:
- regenerator-runtime: 0.13.11
+ regenerator-runtime: 0.14.0
- /@babel/template@7.20.7:
- resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
+ /@babel/template@7.22.15:
+ resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.21.4
- '@babel/parser': 7.21.8
- '@babel/types': 7.21.5
+ '@babel/code-frame': 7.22.13
+ '@babel/parser': 7.22.16
+ '@babel/types': 7.22.17
dev: false
- /@babel/traverse@7.21.5:
- resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==}
+ /@babel/traverse@7.22.17:
+ resolution: {integrity: sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.21.4
- '@babel/generator': 7.21.5
- '@babel/helper-environment-visitor': 7.21.5
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.21.8
- '@babel/types': 7.21.5
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.22.15
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/parser': 7.22.16
+ '@babel/types': 7.22.17
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/types@7.21.5:
- resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
+ /@babel/types@7.22.17:
+ resolution: {integrity: sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-string-parser': 7.21.5
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-string-parser': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.15
to-fast-properties: 2.0.0
dev: false
- /@braintree/sanitize-url@6.0.2:
- resolution: {integrity: sha512-Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg==}
+ /@braintree/sanitize-url@6.0.4:
+ resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==}
dev: false
- /@buf/meshtastic_protobufs.bufbuild_es@1.3.0-20230807174505-db3cb0c7cf53.1(@bufbuild/protobuf@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1, tarball: https://buf.build/gen/npm/v1/@buf/meshtastic_protobufs.bufbuild_es/-/meshtastic_protobufs.bufbuild_es-1.3.0-20230807174505-db3cb0c7cf53.1.tgz}
+ /@buf/meshtastic_protobufs.bufbuild_es@1.3.1-20230904233148-2a7fc47982a9.1(@bufbuild/protobuf@1.3.1):
+ resolution: {registry: https://buf.build/gen/npm/v1, tarball: https://buf.build/gen/npm/v1/@buf/meshtastic_protobufs.bufbuild_es/-/meshtastic_protobufs.bufbuild_es-1.3.1-20230904233148-2a7fc47982a9.1.tgz}
peerDependencies:
- '@bufbuild/protobuf': ^1.3.0
+ '@bufbuild/protobuf': ^1.3.1
dependencies:
- '@bufbuild/protobuf': 1.3.0
+ '@bufbuild/protobuf': 1.3.1
dev: false
- /@bufbuild/protobuf@1.3.0:
- resolution: {integrity: sha512-G372ods0pLt46yxVRsnP/e2btVPuuzArcMPFpIDeIwiGPuuglEs9y75iG0HMvZgncsj5TvbYRWqbVyOe3PLCWQ==}
+ /@bufbuild/protobuf@1.3.1:
+ resolution: {integrity: sha512-BUyJWutgP2S8K/1NphOJokuwDckXS4qI2T1pGZAlkFdZchWae3jm6fCdkcGbLlM1QLOcNFFePd+7Feo4BYGrJQ==}
dev: false
/@colors/colors@1.5.0:
@@ -1588,16 +1559,17 @@ packages:
engines: {node: '>=10.0.0'}
dev: false
- /@docsearch/css@3.3.4:
- resolution: {integrity: sha512-vDwCDoVXDgopw/hvr0zEADew2wWaGP8Qq0Bxhgii1Ewz2t4fQeyJwIRN/mWADeLFYPVkpz8TpEbxya/i6Tm0WA==}
+ /@docsearch/css@3.5.2:
+ resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
dev: false
- /@docsearch/react@3.3.4(@algolia/client-search@4.19.1)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-aeOf1WC5zMzBEi2SI6WWznOmIo9rnpN4p7a3zHXxowVciqlI4HsZGtOR9nFOufLeolv7HibwLlaM0oyUqJxasw==}
+ /@docsearch/react@3.5.2(@algolia/client-search@4.19.1)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.8.2):
+ resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
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
@@ -1605,19 +1577,22 @@ packages:
optional: true
react-dom:
optional: true
+ search-insights:
+ optional: true
dependencies:
- '@algolia/autocomplete-core': 1.8.2
- '@algolia/autocomplete-preset-algolia': 1.8.2(@algolia/client-search@4.19.1)(algoliasearch@4.17.0)
- '@docsearch/css': 3.3.4
- '@types/react': 18.2.18
- algoliasearch: 4.17.0
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)(search-insights@2.8.2)
+ '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.19.1)(algoliasearch@4.19.1)
+ '@docsearch/css': 3.5.2
+ '@types/react': 18.2.21
+ algoliasearch: 4.19.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
+ search-insights: 2.8.2
transitivePeerDependencies:
- '@algolia/client-search'
dev: false
- /@docusaurus/core@3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/core@3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-e1P/PpQqy0DFnYmE6Mv7Dv0RhhA0nF5G+jwkMEEOrztRKaDOqHzWZYy7IC0s+63YizCzgYYuyD02QMhgr77Yhg==}
engines: {node: '>=16.14'}
hasBin: true
@@ -1625,16 +1600,16 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/generator': 7.21.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.8)
- '@babel/plugin-transform-runtime': 7.21.4(@babel/core@7.21.8)
- '@babel/preset-env': 7.21.5(@babel/core@7.21.8)
- '@babel/preset-react': 7.18.6(@babel/core@7.21.8)
- '@babel/preset-typescript': 7.21.5(@babel/core@7.21.8)
- '@babel/runtime': 7.21.5
- '@babel/runtime-corejs3': 7.21.5
- '@babel/traverse': 7.21.5
+ '@babel/core': 7.22.17
+ '@babel/generator': 7.22.15
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17)
+ '@babel/plugin-transform-runtime': 7.22.15(@babel/core@7.22.17)
+ '@babel/preset-env': 7.22.15(@babel/core@7.22.17)
+ '@babel/preset-react': 7.22.15(@babel/core@7.22.17)
+ '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17)
+ '@babel/runtime': 7.22.15
+ '@babel/runtime-corejs3': 7.22.15
+ '@babel/traverse': 7.22.17
'@docusaurus/cssnano-preset': 3.0.0-alpha.0
'@docusaurus/logger': 3.0.0-alpha.0
'@docusaurus/mdx-loader': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)
@@ -1644,60 +1619,60 @@ packages:
'@docusaurus/utils-validation': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.14(postcss@8.4.27)
- babel-loader: 9.1.3(@babel/core@7.21.8)(webpack@5.82.1)
+ autoprefixer: 10.4.15(postcss@8.4.29)
+ babel-loader: 9.1.3(@babel/core@7.22.17)(webpack@5.88.2)
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
chokidar: 3.5.3
clean-css: 5.3.2
cli-table3: 0.6.3
- combine-promises: 1.1.0
+ combine-promises: 1.2.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0(webpack@5.82.1)
- core-js: 3.30.2
- css-loader: 6.7.3(webpack@5.82.1)
- css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(webpack@5.82.1)
- cssnano: 5.1.15(postcss@8.4.27)
+ copy-webpack-plugin: 11.0.0(webpack@5.88.2)
+ core-js: 3.32.2
+ css-loader: 6.8.1(webpack@5.88.2)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(webpack@5.88.2)
+ cssnano: 5.1.15(postcss@8.4.29)
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
eta: 2.2.0
- file-loader: 6.2.0(webpack@5.82.1)
+ file-loader: 6.2.0(webpack@5.88.2)
fs-extra: 11.1.1
html-minifier-terser: 7.2.0
html-tags: 3.3.1
- html-webpack-plugin: 5.5.1(webpack@5.82.1)
+ html-webpack-plugin: 5.5.3(webpack@5.88.2)
import-fresh: 3.3.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.7.5(webpack@5.82.1)
- postcss: 8.4.27
- postcss-loader: 7.3.0(postcss@8.4.27)(webpack@5.82.1)
+ mini-css-extract-plugin: 2.7.6(webpack@5.88.2)
+ postcss: 8.4.29
+ postcss-loader: 7.3.3(postcss@8.4.29)(typescript@5.2.2)(webpack@5.88.2)
prompts: 2.4.2
react: 18.2.0
- react-dev-utils: 12.0.1(typescript@5.1.6)(webpack@5.82.1)
+ react-dev-utils: 12.0.1(typescript@5.2.2)(webpack@5.88.2)
react-dom: 18.2.0(react@18.2.0)
react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
- react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.82.1)
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.88.2)
react-router: 5.3.4(react@18.2.0)
react-router-config: 5.1.1(react-router@5.3.4)(react@18.2.0)
react-router-dom: 5.3.4(react@18.2.0)
rtl-detect: 1.0.4
- semver: 7.5.1
+ semver: 7.5.4
serve-handler: 6.1.5
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.8(webpack@5.82.1)
- tslib: 2.6.1
+ terser-webpack-plugin: 5.3.9(webpack@5.88.2)
+ tslib: 2.6.2
update-notifier: 6.0.2
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.82.1)
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.88.2)
wait-on: 7.0.1
- webpack: 5.82.1
- webpack-bundle-analyzer: 4.8.0
- webpack-dev-server: 4.15.0(webpack@5.82.1)
- webpack-merge: 5.8.0
- webpackbar: 5.0.2(webpack@5.82.1)
+ webpack: 5.88.2
+ webpack-bundle-analyzer: 4.9.1
+ webpack-dev-server: 4.15.1(webpack@5.88.2)
+ webpack-merge: 5.9.0
+ webpackbar: 5.0.2(webpack@5.88.2)
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
@@ -1721,10 +1696,10 @@ packages:
resolution: {integrity: sha512-W+rCRAAv/AIePyWk62tYUxZBRJojBWwIW0/olhhjoEyI4cyLrfUXE1be8gilu0SoDw6S1WukDCoEf+31+9+ZJg==}
engines: {node: '>=16.14'}
dependencies:
- cssnano-preset-advanced: 5.3.10(postcss@8.4.27)
- postcss: 8.4.27
- postcss-sort-media-queries: 4.4.1(postcss@8.4.27)
- tslib: 2.6.1
+ cssnano-preset-advanced: 5.3.10(postcss@8.4.29)
+ postcss: 8.4.29
+ postcss-sort-media-queries: 4.4.1(postcss@8.4.29)
+ tslib: 2.6.2
dev: false
/@docusaurus/logger@3.0.0-alpha.0:
@@ -1732,7 +1707,7 @@ packages:
engines: {node: '>=16.14'}
dependencies:
chalk: 4.1.2
- tslib: 2.6.1
+ tslib: 2.6.2
dev: false
/@docusaurus/mdx-loader@3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0):
@@ -1742,15 +1717,15 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/parser': 7.21.8
- '@babel/traverse': 7.21.5
+ '@babel/parser': 7.22.16
+ '@babel/traverse': 7.22.17
'@docusaurus/logger': 3.0.0-alpha.0
'@docusaurus/utils': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@docusaurus/utils-validation': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@mdx-js/mdx': 2.3.0
escape-html: 1.0.3
estree-util-value-to-estree: 2.1.0
- file-loader: 6.2.0(webpack@5.82.1)
+ file-loader: 6.2.0(webpack@5.88.2)
fs-extra: 11.1.1
hastscript: 7.2.0
image-size: 1.0.2
@@ -1764,11 +1739,11 @@ packages:
remark-emoji: 2.2.0
remark-gfm: 3.0.1
stringify-object: 3.3.0
- tslib: 2.6.1
+ tslib: 2.6.2
unified: 10.1.2
unist-util-visit: 2.0.3
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.82.1)
- webpack: 5.82.1
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.88.2)
+ webpack: 5.88.2
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -1787,7 +1762,7 @@ packages:
'@docusaurus/react-loadable': 5.5.2(react@18.2.0)
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@types/history': 4.7.11
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
'@types/react-router-config': 5.0.7
'@types/react-router-dom': 5.3.3
react: 18.2.0
@@ -1800,14 +1775,14 @@ packages:
- uglify-js
- webpack-cli
- /@docusaurus/plugin-content-blog@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/plugin-content-blog@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-ZKYq0Q888AeIPrTUhw6igq/e2Ee5WLENaOSy2uzVtPLieXu0BAw4gQqV2qyhZr0vwvMYhJ4Ke7KTMFSAgBXdyg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/logger': 3.0.0-alpha.0
'@docusaurus/mdx-loader': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
@@ -1821,10 +1796,10 @@ packages:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
reading-time: 1.5.0
- tslib: 2.6.1
+ tslib: 2.6.2
unist-util-visit: 2.0.3
utility-types: 3.10.0
- webpack: 5.82.1
+ webpack: 5.88.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1843,14 +1818,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-docs@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/plugin-content-docs@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-dlxgXsbvjl4jARJi32dn5BAU7LgQRJX18pC/jsrq3IeHQNS9sXSBFmHItK66JtqwXTdhpipkui3iIari2NNpFQ==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/logger': 3.0.0-alpha.0
'@docusaurus/mdx-loader': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/module-type-aliases': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
@@ -1858,16 +1833,16 @@ packages:
'@docusaurus/utils': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@docusaurus/utils-validation': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@types/react-router-config': 5.0.7
- combine-promises: 1.1.0
+ combine-promises: 1.2.0
fs-extra: 11.1.1
import-fresh: 3.3.0
js-yaml: 4.1.0
lodash: 4.17.21
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.1
+ tslib: 2.6.2
utility-types: 3.10.0
- webpack: 5.82.1
+ webpack: 5.88.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1886,14 +1861,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-pages@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/plugin-content-pages@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-yoTfh+xBZaOM3tBJFBpwYsDqnK4zAJjJtAJ80MnnnXIZ9gw640T9F+OjIqwFwp3rphpdONGg1QmeEnmAzy64QA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/mdx-loader': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/utils': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
@@ -1901,8 +1876,8 @@ packages:
fs-extra: 11.1.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.1
- webpack: 5.82.1
+ tslib: 2.6.2
+ webpack: 5.88.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1921,21 +1896,21 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-debug@3.0.0-alpha.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/plugin-debug@3.0.0-alpha.0(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-2dNVjl//5G5djj1+YZ3aqaAmxNGGQydzUr3tZnaGfej7Z2NrhYrGo1LFKI+EgB5TpX/Pu9zIhGi/D0kS8j7BlA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/utils': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
fs-extra: 11.1.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-json-view: 1.21.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
- tslib: 2.6.1
+ react-json-view: 1.21.3(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1956,19 +1931,19 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-analytics@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/plugin-google-analytics@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-ybaJQBHGzMNWOEPMEQ9jhln0pxBrLgWIbj7YlzjKjfHCKZ1FYEKlvQBrps8MPfH+d3LhwS7f9dd7Z1sJs3GUlA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/utils-validation': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.1
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1987,20 +1962,20 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-gtag@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/plugin-google-gtag@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-IJkZuBf4bIjKWUWe6qg82tSTjTI06rqIWPbw2wCW6H/m+rgI0jbinpR3pmrFl1agVi3dWtn731CVXV4lSvv7cg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/utils-validation': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@types/gtag.js': 0.0.12
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.1
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -2019,19 +1994,19 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-tag-manager@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/plugin-google-tag-manager@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-y/9jcokUjreRHghWrhMe6hy2G768JaEdmqie6X5OmXM2Lr+L3H4W4tJiRacqkW+/K5BsrVudOzxAqtXTwfBGvA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/utils-validation': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.1
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -2050,14 +2025,14 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-sitemap@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/plugin-sitemap@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-UftoalMEWAeKPf80tdt0Olfg82V0SyeDEVpf9epRanT9fkr1DaF5lTWhJIgjFdou5XboW7feUeGPOZ78DWQr0w==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/logger': 3.0.0-alpha.0
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/utils': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
@@ -2067,7 +2042,7 @@ packages:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
sitemap: 7.1.1
- tslib: 2.6.1
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -2086,25 +2061,25 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/preset-classic@3.0.0-alpha.0(@algolia/client-search@4.19.1)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/preset-classic@3.0.0-alpha.0(@algolia/client-search@4.19.1)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.8.2)(typescript@5.2.2):
resolution: {integrity: sha512-NH2Ufv0jSGiPwBD/+JhS3pbedsyUpAU33IzRouVFniQDwBr/n//yJNXTQBW7ZTUeCSebxr4cEABArAVg+RTmQA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-content-blog': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-content-docs': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-content-pages': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-debug': 3.0.0-alpha.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-google-analytics': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-google-gtag': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-google-tag-manager': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-sitemap': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/theme-classic': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/theme-common': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/theme-search-algolia': 3.0.0-alpha.0(@algolia/client-search@4.19.1)(@docusaurus/types@3.0.0-alpha.0)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-content-blog': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-content-docs': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-content-pages': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-debug': 3.0.0-alpha.0(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-google-analytics': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-google-gtag': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-google-tag-manager': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-sitemap': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/theme-classic': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/theme-common': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/theme-search-algolia': 3.0.0-alpha.0(@algolia/client-search@4.19.1)(@docusaurus/types@3.0.0-alpha.0)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.8.2)(typescript@5.2.2)
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -2121,6 +2096,7 @@ packages:
- esbuild
- eslint
- lightningcss
+ - search-insights
- supports-color
- typescript
- uglify-js
@@ -2134,24 +2110,24 @@ packages:
peerDependencies:
react: '*'
dependencies:
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
prop-types: 15.8.1
react: 18.2.0
- /@docusaurus/theme-classic@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/theme-classic@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-EKH1UAi/5I4gy3cpcfAnGBDfX3N5lfdg9NlXIMI5m1337n4QlbfF5f5NPnXwq7F5oWXniyeNAPQnhba/ELTNHA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/mdx-loader': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/module-type-aliases': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/plugin-content-blog': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-content-docs': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-content-pages': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/theme-common': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/plugin-content-blog': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-content-docs': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-content-pages': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/theme-common': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/theme-translations': 3.0.0-alpha.0
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/utils': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
@@ -2159,18 +2135,18 @@ packages:
'@docusaurus/utils-validation': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@mdx-js/react': 2.3.0(react@18.2.0)
clsx: 1.2.1
- copy-text-to-clipboard: 3.1.0
+ copy-text-to-clipboard: 3.2.0
infima: 0.2.0-alpha.43
lodash: 4.17.21
nprogress: 0.2.0
- postcss: 8.4.27
+ postcss: 8.4.29
prism-react-renderer: 1.3.5(react@18.2.0)
prismjs: 1.29.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-router-dom: 5.3.4(react@18.2.0)
rtlcss: 4.1.0
- tslib: 2.6.1
+ tslib: 2.6.2
utility-types: 3.10.0
transitivePeerDependencies:
- '@parcel/css'
@@ -2190,7 +2166,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-common@3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/theme-common@3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-dEMSB0G+ZigAb9KqQ+yztz2BiXbAX3/vFlE5xpNbH8nSahSfIwF9QG5f+5DON99+0VnpF3fMmLLq6lQR5/LVMQ==}
engines: {node: '>=16.14'}
peerDependencies:
@@ -2199,20 +2175,20 @@ packages:
dependencies:
'@docusaurus/mdx-loader': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/module-type-aliases': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/plugin-content-blog': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-content-docs': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/plugin-content-pages': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/plugin-content-blog': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-content-docs': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/plugin-content-pages': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/utils': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@docusaurus/utils-common': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@types/history': 4.7.11
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
'@types/react-router-config': 5.0.7
clsx: 1.2.1
parse-numeric-range: 1.3.0
prism-react-renderer: 1.3.5(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.1
+ tslib: 2.6.2
use-sync-external-store: 1.2.0(react@18.2.0)
utility-types: 3.10.0
transitivePeerDependencies:
@@ -2234,22 +2210,22 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-mermaid@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/theme-mermaid@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-Y6rq0639aqgDRSifZCpzxrq26wnF2SzFvXr7x5AlvbznoZFXIi/O7mlPZb+LRFxw3xt2/ws3eZiDlOPmDhWbZA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/module-type-aliases': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/theme-common': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/theme-common': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/utils-validation': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
mermaid: 9.4.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.1
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -2268,30 +2244,30 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-search-algolia@3.0.0-alpha.0(@algolia/client-search@4.19.1)(@docusaurus/types@3.0.0-alpha.0)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@docusaurus/theme-search-algolia@3.0.0-alpha.0(@algolia/client-search@4.19.1)(@docusaurus/types@3.0.0-alpha.0)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.8.2)(typescript@5.2.2):
resolution: {integrity: sha512-tOtcer8YUA1c1JUsE5UuXYMn4/PvwMXo1/2NFhws3S2+K6mh+1axongRJ8frKf0xMWWTnswtFsLBhwhG8aTwMA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docsearch/react': 3.3.4(@algolia/client-search@4.19.1)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docsearch/react': 3.5.2(@algolia/client-search@4.19.1)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.8.2)
+ '@docusaurus/core': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/logger': 3.0.0-alpha.0
- '@docusaurus/plugin-content-docs': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
- '@docusaurus/theme-common': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@docusaurus/plugin-content-docs': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@docusaurus/theme-common': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@docusaurus/theme-translations': 3.0.0-alpha.0
'@docusaurus/utils': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
'@docusaurus/utils-validation': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
- algoliasearch: 4.17.0
- algoliasearch-helper: 3.13.0(algoliasearch@4.17.0)
+ algoliasearch: 4.19.1
+ algoliasearch-helper: 3.14.0(algoliasearch@4.19.1)
clsx: 1.2.1
eta: 2.2.0
fs-extra: 11.1.1
lodash: 4.17.21
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.1
+ tslib: 2.6.2
utility-types: 3.10.0
transitivePeerDependencies:
- '@algolia/client-search'
@@ -2306,6 +2282,7 @@ packages:
- esbuild
- eslint
- lightningcss
+ - search-insights
- supports-color
- typescript
- uglify-js
@@ -2319,7 +2296,7 @@ packages:
engines: {node: '>=16.14'}
dependencies:
fs-extra: 11.1.1
- tslib: 2.6.1
+ tslib: 2.6.2
dev: false
/@docusaurus/types@3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0):
@@ -2329,15 +2306,15 @@ packages:
react-dom: ^18.0.0
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
commander: 5.1.0
- joi: 17.9.2
+ joi: 17.10.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
utility-types: 3.10.0
- webpack: 5.82.1
- webpack-merge: 5.8.0
+ webpack: 5.88.2
+ webpack-merge: 5.9.0
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -2354,7 +2331,7 @@ packages:
optional: true
dependencies:
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
- tslib: 2.6.1
+ tslib: 2.6.2
dev: false
/@docusaurus/utils-validation@3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0):
@@ -2363,9 +2340,9 @@ packages:
dependencies:
'@docusaurus/logger': 3.0.0-alpha.0
'@docusaurus/utils': 3.0.0-alpha.0(@docusaurus/types@3.0.0-alpha.0)
- joi: 17.9.2
+ joi: 17.10.1
js-yaml: 4.1.0
- tslib: 2.6.1
+ tslib: 2.6.2
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -2388,7 +2365,7 @@ packages:
'@docusaurus/types': 3.0.0-alpha.0(react-dom@18.2.0)(react@18.2.0)
'@svgr/webpack': 6.5.1
escape-string-regexp: 4.0.0
- file-loader: 6.2.0(webpack@5.82.1)
+ file-loader: 6.2.0(webpack@5.88.2)
fs-extra: 11.1.1
github-slugger: 1.5.0
globby: 11.1.0
@@ -2398,9 +2375,9 @@ packages:
micromatch: 4.0.5
resolve-pathname: 3.0.0
shelljs: 0.8.5
- tslib: 2.6.1
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.82.1)
- webpack: 5.82.1
+ tslib: 2.6.2
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.88.2)
+ webpack: 5.88.2
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -2409,20 +2386,6 @@ packages:
- webpack-cli
dev: false
- /@emotion/is-prop-valid@0.8.8:
- resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
- requiresBuild: true
- dependencies:
- '@emotion/memoize': 0.7.4
- dev: false
- optional: true
-
- /@emotion/memoize@0.7.4:
- resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
- requiresBuild: true
- dev: false
- optional: true
-
/@hapi/hoek@9.3.0:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
@@ -2431,18 +2394,6 @@ packages:
dependencies:
'@hapi/hoek': 9.3.0
- /@headlessui/react@1.7.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-2MphIAZdSUacZBT6EXk8AJkj+EuvaaJbtCyHTJrPsz8inhzCl7qeNPI1uk1AUvCgWylVtdN8cVVmnhUDPxPy3g==}
- engines: {node: '>=10'}
- peerDependencies:
- react: ^16 || ^17 || ^18
- react-dom: ^16 || ^17 || ^18
- dependencies:
- client-only: 0.0.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
-
/@heroicons/react@2.0.18(react@18.2.0):
resolution: {integrity: sha512-7TyMjRrZZMBPa+/5Y8lN0iyvUU/01PeMGX2+RE7cQWpEUIcb4QotzUObFkJDejj/HUH4qjP/eQ0gzzKs2f+6Yw==}
peerDependencies:
@@ -2451,21 +2402,21 @@ packages:
react: 18.2.0
dev: false
- /@jest/schemas@29.4.3:
- resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==}
+ /@jest/schemas@29.6.3:
+ resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@sinclair/typebox': 0.25.24
+ '@sinclair/typebox': 0.27.8
dev: false
- /@jest/types@29.5.0:
- resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==}
+ /@jest/types@29.6.3:
+ resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/schemas': 29.4.3
+ '@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
'@types/yargs': 17.0.24
chalk: 4.1.2
dev: false
@@ -2476,33 +2427,30 @@ packages:
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.18
+ '@jridgewell/trace-mapping': 0.3.19
- /@jridgewell/resolve-uri@3.1.0:
- resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
+ /@jridgewell/resolve-uri@3.1.1:
+ resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
engines: {node: '>=6.0.0'}
/@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map@0.3.3:
- resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==}
+ /@jridgewell/source-map@0.3.5:
+ resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.18
-
- /@jridgewell/sourcemap-codec@1.4.14:
- resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
+ '@jridgewell/trace-mapping': 0.3.19
/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- /@jridgewell/trace-mapping@0.3.18:
- resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
+ /@jridgewell/trace-mapping@0.3.19:
+ resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==}
dependencies:
- '@jridgewell/resolve-uri': 3.1.0
- '@jridgewell/sourcemap-codec': 1.4.14
+ '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/sourcemap-codec': 1.4.15
/@leichtgewicht/ip-codec@2.0.4:
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
@@ -2512,7 +2460,7 @@ packages:
resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==}
dependencies:
'@types/estree-jsx': 1.0.0
- '@types/mdx': 2.0.5
+ '@types/mdx': 2.0.7
estree-util-build-jsx: 2.2.2
estree-util-is-identifier-name: 2.1.0
estree-util-to-js: 1.2.0
@@ -2537,81 +2485,36 @@ packages:
peerDependencies:
react: '>=16'
dependencies:
- '@types/mdx': 2.0.5
- '@types/react': 18.2.18
+ '@types/mdx': 2.0.7
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@meshtastic/meshtasticjs@2.2.0-0:
- resolution: {integrity: sha512-8CIoTVza6I5w39FNI2vz9DXUHYDvMByrPogj7Mxfe6ia9VtRWcz6rw/3SFs8AhokdOBZhI4eIyqaN5sFhpexGA==}
+ /@meshtastic/meshtasticjs@2.2.4-0:
+ resolution: {integrity: sha512-IAvEgpTRFmAwqj5H1mBxJKkfR6yNAVXxFAaioBn+AEM/5B+woJm8YJEwb9v6c38tfBfHpVyUsCtFrCfrOYSfcg==}
dependencies:
- '@buf/meshtastic_protobufs.bufbuild_es': 1.3.0-20230807174505-db3cb0c7cf53.1(@bufbuild/protobuf@1.3.0)
- '@bufbuild/protobuf': 1.3.0
+ '@buf/meshtastic_protobufs.bufbuild_es': 1.3.1-20230904233148-2a7fc47982a9.1(@bufbuild/protobuf@1.3.1)
+ '@bufbuild/protobuf': 1.3.1
crc: 4.3.2
sub-events: 1.9.0
- tslib: 2.6.1
- tslog: 4.9.0
+ tslib: 2.6.2
+ tslog: 4.9.2
transitivePeerDependencies:
- buffer
dev: false
- /@motionone/animation@10.15.1:
- resolution: {integrity: sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ==}
- dependencies:
- '@motionone/easing': 10.15.1
- '@motionone/types': 10.15.1
- '@motionone/utils': 10.15.1
- tslib: 2.5.0
- dev: false
-
- /@motionone/dom@10.12.0:
- resolution: {integrity: sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==}
- dependencies:
- '@motionone/animation': 10.15.1
- '@motionone/generators': 10.15.1
- '@motionone/types': 10.15.1
- '@motionone/utils': 10.15.1
- hey-listen: 1.0.8
- tslib: 2.5.0
- dev: false
-
- /@motionone/easing@10.15.1:
- resolution: {integrity: sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw==}
- dependencies:
- '@motionone/utils': 10.15.1
- tslib: 2.5.0
- dev: false
-
- /@motionone/generators@10.15.1:
- resolution: {integrity: sha512-67HLsvHJbw6cIbLA/o+gsm7h+6D4Sn7AUrB/GPxvujse1cGZ38F5H7DzoH7PhX+sjvtDnt2IhFYF2Zp1QTMKWQ==}
- dependencies:
- '@motionone/types': 10.15.1
- '@motionone/utils': 10.15.1
- tslib: 2.5.0
- dev: false
-
- /@motionone/types@10.15.1:
- resolution: {integrity: sha512-iIUd/EgUsRZGrvW0jqdst8st7zKTzS9EsKkP+6c6n4MPZoQHwiHuVtTQLD6Kp0bsBLhNzKIBlHXponn/SDT4hA==}
- dev: false
-
- /@motionone/utils@10.15.1:
- resolution: {integrity: sha512-p0YncgU+iklvYr/Dq4NobTRdAPv9PveRDUXabPEeOjBLSO/1FNB2phNTZxOxpi1/GZwYpAoECEa0Wam+nsmhSw==}
- dependencies:
- '@motionone/types': 10.15.1
- hey-listen: 1.0.8
- tslib: 2.5.0
- dev: false
-
/@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
+ dev: false
/@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
+ dev: false
/@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
@@ -2619,6 +2522,7 @@ packages:
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
+ dev: false
/@pnpm/config.env-replace@1.1.0:
resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
@@ -2641,8 +2545,8 @@ packages:
config-chain: 1.1.13
dev: false
- /@polka/url@1.0.0-next.21:
- resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
+ /@polka/url@1.0.0-next.23:
+ resolution: {integrity: sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==}
dev: false
/@rometools/cli-darwin-arm64@12.1.3:
@@ -2704,8 +2608,8 @@ packages:
/@sideway/pinpoint@2.0.0:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- /@sinclair/typebox@0.25.24:
- resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==}
+ /@sinclair/typebox@0.27.8:
+ resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
dev: false
/@sindresorhus/is@5.6.0:
@@ -2722,101 +2626,101 @@ packages:
webpack-sources: 3.2.3
dev: false
- /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.21.8):
+ /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.22.17):
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
+ '@babel/core': 7.22.17
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.21.8):
+ /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.22.17):
resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
+ '@babel/core': 7.22.17
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.21.8):
+ /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.22.17):
resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
+ '@babel/core': 7.22.17
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.21.8):
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.22.17):
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
+ '@babel/core': 7.22.17
dev: false
- /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.21.8):
+ /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.22.17):
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
+ '@babel/core': 7.22.17
dev: false
- /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.21.8):
+ /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.22.17):
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
+ '@babel/core': 7.22.17
dev: false
- /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.21.8):
+ /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.22.17):
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
+ '@babel/core': 7.22.17
dev: false
- /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.21.8):
+ /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.22.17):
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
+ '@babel/core': 7.22.17
dev: false
- /@svgr/babel-preset@6.5.1(@babel/core@7.21.8):
+ /@svgr/babel-preset@6.5.1(@babel/core@7.22.17):
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.8
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.21.8)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.21.8)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.21.8)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.21.8)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.21.8)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.21.8)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.21.8)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.21.8)
+ '@babel/core': 7.22.17
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.22.17)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.22.17)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.22.17)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.22.17)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.22.17)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.22.17)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.22.17)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.22.17)
dev: false
/@svgr/core@6.5.1:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.21.8
- '@svgr/babel-preset': 6.5.1(@babel/core@7.21.8)
+ '@babel/core': 7.22.17
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.22.17)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -2828,7 +2732,7 @@ packages:
resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.21.5
+ '@babel/types': 7.22.17
entities: 4.5.0
dev: false
@@ -2838,8 +2742,8 @@ packages:
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
- '@babel/core': 7.21.8
- '@svgr/babel-preset': 6.5.1(@babel/core@7.21.8)
+ '@babel/core': 7.22.17
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.22.17)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -2863,11 +2767,11 @@ packages:
resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.21.8
- '@babel/plugin-transform-react-constant-elements': 7.21.3(@babel/core@7.21.8)
- '@babel/preset-env': 7.21.5(@babel/core@7.21.8)
- '@babel/preset-react': 7.18.6(@babel/core@7.21.8)
- '@babel/preset-typescript': 7.21.5(@babel/core@7.21.8)
+ '@babel/core': 7.22.17
+ '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.17)
+ '@babel/preset-env': 7.22.15(@babel/core@7.22.17)
+ '@babel/preset-react': 7.22.15(@babel/core@7.22.17)
+ '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17)
'@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)
@@ -2882,18 +2786,6 @@ packages:
defer-to-connect: 2.0.1
dev: false
- /@tailwindcss/typography@0.5.9(tailwindcss@3.3.3):
- resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==}
- peerDependencies:
- tailwindcss: '>=3.0.0 || insiders'
- dependencies:
- lodash.castarray: 4.4.0
- lodash.isplainobject: 4.0.6
- lodash.merge: 4.6.2
- postcss-selector-parser: 6.0.10
- tailwindcss: 3.3.3
- dev: true
-
/@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
@@ -2912,27 +2804,27 @@ packages:
/@types/body-parser@1.19.2:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
dependencies:
- '@types/connect': 3.4.35
- '@types/node': 20.4.8
+ '@types/connect': 3.4.36
+ '@types/node': 20.6.0
dev: false
/@types/bonjour@3.5.10:
resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
dependencies:
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
dev: false
- /@types/connect-history-api-fallback@1.5.0:
- resolution: {integrity: sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==}
+ /@types/connect-history-api-fallback@1.5.1:
+ resolution: {integrity: sha512-iaQslNbARe8fctL5Lk+DsmgWOM83lM+7FzP0eQUJs1jd3kBE8NWqBTIT2S8SqQOJjxvt2eyIjpOuYeRXq2AdMw==}
dependencies:
- '@types/express-serve-static-core': 4.17.35
- '@types/node': 20.4.8
+ '@types/express-serve-static-core': 4.17.36
+ '@types/node': 20.6.0
dev: false
- /@types/connect@3.4.35:
- resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
+ /@types/connect@3.4.36:
+ resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==}
dependencies:
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
dev: false
/@types/debug@4.1.8:
@@ -2944,14 +2836,14 @@ packages:
/@types/eslint-scope@3.7.4:
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
dependencies:
- '@types/eslint': 8.37.0
+ '@types/eslint': 8.44.2
'@types/estree': 1.0.1
- /@types/eslint@8.37.0:
- resolution: {integrity: sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==}
+ /@types/eslint@8.44.2:
+ resolution: {integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==}
dependencies:
'@types/estree': 1.0.1
- '@types/json-schema': 7.0.11
+ '@types/json-schema': 7.0.12
/@types/estree-jsx@1.0.0:
resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==}
@@ -2962,11 +2854,11 @@ packages:
/@types/estree@1.0.1:
resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
- /@types/express-serve-static-core@4.17.35:
- resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==}
+ /@types/express-serve-static-core@4.17.36:
+ resolution: {integrity: sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==}
dependencies:
- '@types/node': 20.4.8
- '@types/qs': 6.9.7
+ '@types/node': 20.6.0
+ '@types/qs': 6.9.8
'@types/range-parser': 1.2.4
'@types/send': 0.17.1
dev: false
@@ -2975,19 +2867,19 @@ packages:
resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
dependencies:
'@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.35
- '@types/qs': 6.9.7
- '@types/serve-static': 1.15.1
+ '@types/express-serve-static-core': 4.17.36
+ '@types/qs': 6.9.8
+ '@types/serve-static': 1.15.2
dev: false
/@types/gtag.js@0.0.12:
resolution: {integrity: sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==}
dev: false
- /@types/hast@2.3.4:
- resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
+ /@types/hast@2.3.5:
+ resolution: {integrity: sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
dev: false
/@types/history@4.7.11:
@@ -3001,10 +2893,14 @@ packages:
resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==}
dev: false
+ /@types/http-errors@2.0.1:
+ resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==}
+ dev: false
+
/@types/http-proxy@1.17.11:
resolution: {integrity: sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==}
dependencies:
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
dev: false
/@types/istanbul-lib-coverage@2.0.4:
@@ -3023,17 +2919,17 @@ packages:
'@types/istanbul-lib-report': 3.0.0
dev: false
- /@types/json-schema@7.0.11:
- resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
+ /@types/json-schema@7.0.12:
+ resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
- /@types/mdast@3.0.11:
- resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==}
+ /@types/mdast@3.0.12:
+ resolution: {integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
dev: false
- /@types/mdx@2.0.5:
- resolution: {integrity: sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==}
+ /@types/mdx@2.0.7:
+ resolution: {integrity: sha512-BG4tyr+4amr3WsSEmHn/fXPqaCba/AYZ7dsaQTiavihQunHSIxk+uAtqsjvicNpyHN6cm+B9RVrUOtW9VzIKHw==}
dev: false
/@types/mime@1.3.2:
@@ -3052,8 +2948,8 @@ packages:
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
dev: false
- /@types/node@20.4.8:
- resolution: {integrity: sha512-0mHckf6D2DiIAzh8fM8f3HQCvMKDpK94YQ0DSVkfWTG9BZleYIWudw9cJxX8oCk9bM+vAkDyujDV6dmKHbvQpg==}
+ /@types/node@20.6.0:
+ resolution: {integrity: sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==}
/@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
@@ -3066,8 +2962,8 @@ packages:
/@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- /@types/qs@6.9.7:
- resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
+ /@types/qs@6.9.8:
+ resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==}
dev: false
/@types/range-parser@1.2.4:
@@ -3077,31 +2973,31 @@ packages:
/@types/react-dom@18.2.7:
resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
dependencies:
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
dev: true
/@types/react-router-config@5.0.7:
resolution: {integrity: sha512-pFFVXUIydHlcJP6wJm7sDii5mD/bCmmAY0wQzq+M+uX7bqS95AQqHZWP1iNMKrWVQSuHIzj5qi9BvrtLX2/T4w==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
'@types/react-router': 5.1.20
/@types/react-router-dom@5.3.3:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
'@types/react-router': 5.1.20
/@types/react-router@5.1.20:
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
- /@types/react@18.2.18:
- resolution: {integrity: sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ==}
+ /@types/react@18.2.21:
+ resolution: {integrity: sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.3
@@ -3114,7 +3010,7 @@ packages:
/@types/sax@1.2.4:
resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==}
dependencies:
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
dev: false
/@types/scheduler@0.16.3:
@@ -3124,7 +3020,7 @@ packages:
resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
dependencies:
'@types/mime': 1.3.2
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
dev: false
/@types/serve-index@1.9.1:
@@ -3133,27 +3029,28 @@ packages:
'@types/express': 4.17.17
dev: false
- /@types/serve-static@1.15.1:
- resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
+ /@types/serve-static@1.15.2:
+ resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==}
dependencies:
+ '@types/http-errors': 2.0.1
'@types/mime': 3.0.1
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
dev: false
/@types/sockjs@0.3.33:
resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
dependencies:
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
dev: false
- /@types/unist@2.0.6:
- resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
+ /@types/unist@2.0.8:
+ resolution: {integrity: sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw==}
dev: false
- /@types/ws@8.5.4:
- resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==}
+ /@types/ws@8.5.5:
+ resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==}
dependencies:
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
dev: false
/@types/yargs-parser@21.0.0:
@@ -3271,19 +3168,19 @@ packages:
negotiator: 0.6.3
dev: false
- /acorn-import-assertions@1.9.0(acorn@8.8.2):
+ /acorn-import-assertions@1.9.0(acorn@8.10.0):
resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
peerDependencies:
acorn: ^8
dependencies:
- acorn: 8.8.2
+ acorn: 8.10.0
- /acorn-jsx@5.3.2(acorn@8.8.2):
+ /acorn-jsx@5.3.2(acorn@8.10.0):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.8.2
+ acorn: 8.10.0
dev: false
/acorn-walk@8.2.0:
@@ -3291,8 +3188,8 @@ packages:
engines: {node: '>=0.4.0'}
dev: false
- /acorn@8.8.2:
- resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
+ /acorn@8.10.0:
+ resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -3353,32 +3250,32 @@ packages:
uri-js: 4.4.1
dev: false
- /algoliasearch-helper@3.13.0(algoliasearch@4.17.0):
- resolution: {integrity: sha512-kV3c1jMQCvkARtGsSDvAwuht4PAMSsQILqPiH4WFiARoa3jXJ/r1TQoBWAjWyWF48rsNYCv7kzxgB4LTxrvvuw==}
+ /algoliasearch-helper@3.14.0(algoliasearch@4.19.1):
+ resolution: {integrity: sha512-gXDXzsSS0YANn5dHr71CUXOo84cN4azhHKUbg71vAWnH+1JBiR4jf7to3t3JHXknXkbV0F7f055vUSBKrltHLQ==}
peerDependencies:
algoliasearch: '>= 3.1 < 6'
dependencies:
'@algolia/events': 4.0.1
- algoliasearch: 4.17.0
+ algoliasearch: 4.19.1
dev: false
- /algoliasearch@4.17.0:
- resolution: {integrity: sha512-JMRh2Mw6sEnVMiz6+APsi7lx9a2jiDFF+WUtANaUVCv6uSU9UOLdo5h9K3pdP6frRRybaM2fX8b1u0nqICS9aA==}
+ /algoliasearch@4.19.1:
+ resolution: {integrity: sha512-IJF5b93b2MgAzcE/tuzW0yOPnuUyRgGAtaPv5UUywXM8kzqfdwZTO4sPJBzoGz1eOy6H9uEchsJsBFTELZSu+g==}
dependencies:
- '@algolia/cache-browser-local-storage': 4.17.0
- '@algolia/cache-common': 4.17.0
- '@algolia/cache-in-memory': 4.17.0
- '@algolia/client-account': 4.17.0
- '@algolia/client-analytics': 4.17.0
- '@algolia/client-common': 4.17.0
- '@algolia/client-personalization': 4.17.0
- '@algolia/client-search': 4.17.0
- '@algolia/logger-common': 4.17.0
- '@algolia/logger-console': 4.17.0
- '@algolia/requester-browser-xhr': 4.17.0
- '@algolia/requester-common': 4.17.0
- '@algolia/requester-node-http': 4.17.0
- '@algolia/transporter': 4.17.0
+ '@algolia/cache-browser-local-storage': 4.19.1
+ '@algolia/cache-common': 4.19.1
+ '@algolia/cache-in-memory': 4.19.1
+ '@algolia/client-account': 4.19.1
+ '@algolia/client-analytics': 4.19.1
+ '@algolia/client-common': 4.19.1
+ '@algolia/client-personalization': 4.19.1
+ '@algolia/client-search': 4.19.1
+ '@algolia/logger-common': 4.19.1
+ '@algolia/logger-console': 4.19.1
+ '@algolia/requester-browser-xhr': 4.19.1
+ '@algolia/requester-common': 4.19.1
+ '@algolia/requester-node-http': 4.19.1
+ '@algolia/transporter': 4.19.1
dev: false
/ansi-align@3.0.1:
@@ -3424,6 +3321,7 @@ packages:
/any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
+ dev: false
/anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
@@ -3431,9 +3329,11 @@ packages:
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
+ dev: false
/arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
+ dev: false
/argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
@@ -3476,19 +3376,19 @@ packages:
engines: {node: '>= 4.0.0'}
dev: false
- /autoprefixer@10.4.14(postcss@8.4.27):
- resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
+ /autoprefixer@10.4.15(postcss@8.4.29):
+ resolution: {integrity: sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.21.5
- caniuse-lite: 1.0.30001472
- fraction.js: 4.2.0
+ browserslist: 4.21.10
+ caniuse-lite: 1.0.30001532
+ fraction.js: 4.3.6
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
@@ -3501,17 +3401,17 @@ packages:
- debug
dev: false
- /babel-loader@9.1.3(@babel/core@7.21.8)(webpack@5.82.1):
+ /babel-loader@9.1.3(@babel/core@7.22.17)(webpack@5.88.2):
resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
webpack: '>=5'
dependencies:
- '@babel/core': 7.21.8
+ '@babel/core': 7.22.17
find-cache-dir: 4.0.0
- schema-utils: 4.0.1
- webpack: 5.82.1
+ schema-utils: 4.2.0
+ webpack: 5.88.2
dev: false
/babel-plugin-dynamic-import-node@2.3.3:
@@ -3520,38 +3420,38 @@ packages:
object.assign: 4.1.4
dev: false
- /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.8):
- resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
+ /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.17):
+ resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.21.7
- '@babel/core': 7.21.8
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.8)
- semver: 6.3.0
+ '@babel/compat-data': 7.22.9
+ '@babel/core': 7.22.17
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.17)
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.8):
- resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
+ /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.17):
+ resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.8)
- core-js-compat: 3.30.2
+ '@babel/core': 7.22.17
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.17)
+ core-js-compat: 3.32.2
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.8):
- resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
+ /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.17):
+ resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.21.8
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.8)
+ '@babel/core': 7.22.17
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.17)
transitivePeerDependencies:
- supports-color
dev: false
@@ -3562,6 +3462,7 @@ packages:
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ dev: false
/base16@1.0.0:
resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==}
@@ -3582,6 +3483,7 @@ packages:
/binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
+ dev: false
/body-parser@1.20.1:
resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
@@ -3649,22 +3551,24 @@ packages:
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
+ dev: false
/braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
+ dev: false
- /browserslist@4.21.5:
- resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
+ /browserslist@4.21.10:
+ resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001472
- electron-to-chromium: 1.4.341
- node-releases: 2.0.10
- update-browserslist-db: 1.0.10(browserslist@4.21.5)
+ caniuse-lite: 1.0.30001532
+ electron-to-chromium: 1.4.513
+ node-releases: 2.0.13
+ update-browserslist-db: 1.0.11(browserslist@4.21.10)
/buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -3713,12 +3617,13 @@ packages:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
- tslib: 2.5.0
+ tslib: 2.6.2
dev: false
/camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
+ dev: false
/camelcase@6.3.0:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
@@ -3733,18 +3638,14 @@ packages:
/caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.21.5
- caniuse-lite: 1.0.30001487
+ browserslist: 4.21.10
+ caniuse-lite: 1.0.30001532
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
- /caniuse-lite@1.0.30001472:
- resolution: {integrity: sha512-xWC/0+hHHQgj3/vrKYY0AAzeIUgr7L9wlELIcAvZdDUHlhL/kNxMdnQLOSOQfP8R51ZzPhmHdyMkI0MMpmxCfg==}
-
- /caniuse-lite@1.0.30001487:
- resolution: {integrity: sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==}
- dev: false
+ /caniuse-lite@1.0.30001532:
+ resolution: {integrity: sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw==}
/ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -3824,7 +3725,8 @@ packages:
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
+ dev: false
/chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
@@ -3835,10 +3737,6 @@ packages:
engines: {node: '>=8'}
dev: false
- /classnames@2.3.2:
- resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
- dev: false
-
/clean-css@5.3.2:
resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==}
engines: {node: '>= 10.0'}
@@ -3911,8 +3809,8 @@ packages:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
dev: false
- /combine-promises@1.1.0:
- resolution: {integrity: sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==}
+ /combine-promises@1.2.0:
+ resolution: {integrity: sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==}
engines: {node: '>=10'}
dev: false
@@ -3938,6 +3836,7 @@ packages:
/commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
+ dev: false
/commander@5.1.0:
resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
@@ -3981,6 +3880,7 @@ packages:
/concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+ dev: false
/config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
@@ -4039,12 +3939,12 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /copy-text-to-clipboard@3.1.0:
- resolution: {integrity: sha512-PFM6BnjLnOON/lB3ta/Jg7Ywsv+l9kQGD4TWDCSlRBGmqnnTM5MrDkhAFgw+8HZt0wW6Q2BBE4cmy9sq+s9Qng==}
+ /copy-text-to-clipboard@3.2.0:
+ resolution: {integrity: sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==}
engines: {node: '>=12'}
dev: false
- /copy-webpack-plugin@11.0.0(webpack@5.82.1):
+ /copy-webpack-plugin@11.0.0(webpack@5.88.2):
resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -4052,26 +3952,26 @@ packages:
dependencies:
fast-glob: 3.3.1
glob-parent: 6.0.2
- globby: 13.1.4
+ globby: 13.2.2
normalize-path: 3.0.0
- schema-utils: 4.0.1
+ schema-utils: 4.2.0
serialize-javascript: 6.0.1
- webpack: 5.82.1
+ webpack: 5.88.2
dev: false
- /core-js-compat@3.30.2:
- resolution: {integrity: sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA==}
+ /core-js-compat@3.32.2:
+ resolution: {integrity: sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ==}
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.10
dev: false
- /core-js-pure@3.30.2:
- resolution: {integrity: sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg==}
+ /core-js-pure@3.32.2:
+ resolution: {integrity: sha512-Y2rxThOuNywTjnX/PgA5vWM6CZ9QB9sz9oGeCixV8MqXZO70z/5SHzf9EeBrEBK0PN36DnEBBu9O/aGWzKuMZQ==}
requiresBuild: true
dev: false
- /core-js@3.30.2:
- resolution: {integrity: sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==}
+ /core-js@3.32.2:
+ resolution: {integrity: sha512-pxXSw1mYZPDGvTQqEc5vgIb83jGQKFGYWY76z4a7weZXUolw3G+OvpZqSRcfYOoOVUQJYEPsWeQK8pKEnUtWxQ==}
requiresBuild: true
dev: false
@@ -4113,14 +4013,20 @@ packages:
yaml: 1.10.2
dev: false
- /cosmiconfig@8.1.3:
- resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==}
+ /cosmiconfig@8.3.5(typescript@5.2.2):
+ resolution: {integrity: sha512-A5Xry3xfS96wy2qbiLkQLAg4JUrR2wvfybxj6yqLmrUfMAvhS3MZxIP2oQn0grgYIvJqzpeTEWu4vK0t+12NNw==}
engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
+ typescript: 5.2.2
dev: false
/crc@4.3.2:
@@ -4133,10 +4039,10 @@ packages:
optional: true
dev: false
- /cross-fetch@3.1.6:
- resolution: {integrity: sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==}
+ /cross-fetch@3.1.8:
+ resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==}
dependencies:
- node-fetch: 2.6.11
+ node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
dev: false
@@ -4157,33 +4063,33 @@ packages:
type-fest: 1.4.0
dev: false
- /css-declaration-sorter@6.4.0(postcss@8.4.27):
- resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==}
+ /css-declaration-sorter@6.4.1(postcss@8.4.29):
+ resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /css-loader@6.7.3(webpack@5.82.1):
- resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==}
+ /css-loader@6.8.1(webpack@5.88.2):
+ resolution: {integrity: sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.27)
- postcss: 8.4.27
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.27)
- postcss-modules-local-by-default: 4.0.0(postcss@8.4.27)
- postcss-modules-scope: 3.0.0(postcss@8.4.27)
- postcss-modules-values: 4.0.0(postcss@8.4.27)
+ icss-utils: 5.1.0(postcss@8.4.29)
+ postcss: 8.4.29
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.29)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.29)
+ postcss-modules-scope: 3.0.0(postcss@8.4.29)
+ postcss-modules-values: 4.0.0(postcss@8.4.29)
postcss-value-parser: 4.2.0
- semver: 7.5.1
- webpack: 5.82.1
+ semver: 7.5.4
+ webpack: 5.88.2
dev: false
- /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(webpack@5.82.1):
+ /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(webpack@5.88.2):
resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -4209,13 +4115,13 @@ packages:
optional: true
dependencies:
clean-css: 5.3.2
- cssnano: 5.1.15(postcss@8.4.27)
- jest-worker: 29.5.0
- postcss: 8.4.27
- schema-utils: 4.0.1
+ cssnano: 5.1.15(postcss@8.4.29)
+ jest-worker: 29.6.4
+ postcss: 8.4.29
+ schema-utils: 4.2.0
serialize-javascript: 6.0.1
source-map: 0.6.1
- webpack: 5.82.1
+ webpack: 5.88.2
dev: false
/css-select@4.3.0:
@@ -4255,78 +4161,79 @@ packages:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
+ dev: false
- /cssnano-preset-advanced@5.3.10(postcss@8.4.27):
+ /cssnano-preset-advanced@5.3.10(postcss@8.4.29):
resolution: {integrity: sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- autoprefixer: 10.4.14(postcss@8.4.27)
- cssnano-preset-default: 5.2.14(postcss@8.4.27)
- postcss: 8.4.27
- postcss-discard-unused: 5.1.0(postcss@8.4.27)
- postcss-merge-idents: 5.1.1(postcss@8.4.27)
- postcss-reduce-idents: 5.2.0(postcss@8.4.27)
- postcss-zindex: 5.1.0(postcss@8.4.27)
+ autoprefixer: 10.4.15(postcss@8.4.29)
+ cssnano-preset-default: 5.2.14(postcss@8.4.29)
+ postcss: 8.4.29
+ postcss-discard-unused: 5.1.0(postcss@8.4.29)
+ postcss-merge-idents: 5.1.1(postcss@8.4.29)
+ postcss-reduce-idents: 5.2.0(postcss@8.4.29)
+ postcss-zindex: 5.1.0(postcss@8.4.29)
dev: false
- /cssnano-preset-default@5.2.14(postcss@8.4.27):
+ /cssnano-preset-default@5.2.14(postcss@8.4.29):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.4.0(postcss@8.4.27)
- cssnano-utils: 3.1.0(postcss@8.4.27)
- postcss: 8.4.27
- postcss-calc: 8.2.4(postcss@8.4.27)
- postcss-colormin: 5.3.1(postcss@8.4.27)
- postcss-convert-values: 5.1.3(postcss@8.4.27)
- postcss-discard-comments: 5.1.2(postcss@8.4.27)
- postcss-discard-duplicates: 5.1.0(postcss@8.4.27)
- postcss-discard-empty: 5.1.1(postcss@8.4.27)
- postcss-discard-overridden: 5.1.0(postcss@8.4.27)
- postcss-merge-longhand: 5.1.7(postcss@8.4.27)
- postcss-merge-rules: 5.1.4(postcss@8.4.27)
- postcss-minify-font-values: 5.1.0(postcss@8.4.27)
- postcss-minify-gradients: 5.1.1(postcss@8.4.27)
- postcss-minify-params: 5.1.4(postcss@8.4.27)
- postcss-minify-selectors: 5.2.1(postcss@8.4.27)
- postcss-normalize-charset: 5.1.0(postcss@8.4.27)
- postcss-normalize-display-values: 5.1.0(postcss@8.4.27)
- postcss-normalize-positions: 5.1.1(postcss@8.4.27)
- postcss-normalize-repeat-style: 5.1.1(postcss@8.4.27)
- postcss-normalize-string: 5.1.0(postcss@8.4.27)
- postcss-normalize-timing-functions: 5.1.0(postcss@8.4.27)
- postcss-normalize-unicode: 5.1.1(postcss@8.4.27)
- postcss-normalize-url: 5.1.0(postcss@8.4.27)
- postcss-normalize-whitespace: 5.1.1(postcss@8.4.27)
- postcss-ordered-values: 5.1.3(postcss@8.4.27)
- postcss-reduce-initial: 5.1.2(postcss@8.4.27)
- postcss-reduce-transforms: 5.1.0(postcss@8.4.27)
- postcss-svgo: 5.1.0(postcss@8.4.27)
- postcss-unique-selectors: 5.1.1(postcss@8.4.27)
+ css-declaration-sorter: 6.4.1(postcss@8.4.29)
+ cssnano-utils: 3.1.0(postcss@8.4.29)
+ postcss: 8.4.29
+ postcss-calc: 8.2.4(postcss@8.4.29)
+ postcss-colormin: 5.3.1(postcss@8.4.29)
+ postcss-convert-values: 5.1.3(postcss@8.4.29)
+ postcss-discard-comments: 5.1.2(postcss@8.4.29)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.29)
+ postcss-discard-empty: 5.1.1(postcss@8.4.29)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.29)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.29)
+ postcss-merge-rules: 5.1.4(postcss@8.4.29)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.29)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.29)
+ postcss-minify-params: 5.1.4(postcss@8.4.29)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.29)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.29)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.29)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.29)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.29)
+ postcss-normalize-string: 5.1.0(postcss@8.4.29)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.29)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.29)
+ postcss-normalize-url: 5.1.0(postcss@8.4.29)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.29)
+ postcss-ordered-values: 5.1.3(postcss@8.4.29)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.29)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.29)
+ postcss-svgo: 5.1.0(postcss@8.4.29)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.29)
dev: false
- /cssnano-utils@3.1.0(postcss@8.4.27):
+ /cssnano-utils@3.1.0(postcss@8.4.29):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /cssnano@5.1.15(postcss@8.4.27):
+ /cssnano@5.1.15(postcss@8.4.29):
resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.14(postcss@8.4.27)
+ cssnano-preset-default: 5.2.14(postcss@8.4.29)
lilconfig: 2.1.0
- postcss: 8.4.27
+ postcss: 8.4.29
yaml: 1.10.2
dev: false
@@ -4340,34 +4247,34 @@ packages:
/csstype@3.1.2:
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
- /cytoscape-cose-bilkent@4.1.0(cytoscape@3.24.0):
+ /cytoscape-cose-bilkent@4.1.0(cytoscape@3.26.0):
resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==}
peerDependencies:
cytoscape: ^3.2.0
dependencies:
cose-base: 1.0.3
- cytoscape: 3.24.0
+ cytoscape: 3.26.0
dev: false
- /cytoscape-fcose@2.2.0(cytoscape@3.24.0):
+ /cytoscape-fcose@2.2.0(cytoscape@3.26.0):
resolution: {integrity: sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==}
peerDependencies:
cytoscape: ^3.2.0
dependencies:
cose-base: 2.2.0
- cytoscape: 3.24.0
+ cytoscape: 3.26.0
dev: false
- /cytoscape@3.24.0:
- resolution: {integrity: sha512-W9fJMrAfr/zKFzDCpRR/wn6uoEQ7gfbJmxPK5DadXj69XyAhZYi1QXLOE+UXJfXVXxqGM1o1eeiIrtxrtB43zA==}
+ /cytoscape@3.26.0:
+ resolution: {integrity: sha512-IV+crL+KBcrCnVVUCZW+zRRRFUZQcrtdOPXki+o4CFUWLdAEYvuZLcBSJC9EBK++suamERKzeY7roq2hdovV3w==}
engines: {node: '>=0.10'}
dependencies:
heap: 0.2.7
lodash: 4.17.21
dev: false
- /d3-array@3.2.3:
- resolution: {integrity: sha512-JRHwbQQ84XuAESWhvIPaUV4/1UYTBOLiOPGWqgFDHZS1D5QN9c57FbH3QpEnQMYiOXNzKUQyGTZf+EVO7RT5TQ==}
+ /d3-array@3.2.4:
+ resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
engines: {node: '>=12'}
dependencies:
internmap: 2.0.3
@@ -4405,7 +4312,7 @@ packages:
resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==}
engines: {node: '>=12'}
dependencies:
- d3-array: 3.2.3
+ d3-array: 3.2.4
dev: false
/d3-delaunay@6.0.4:
@@ -4468,7 +4375,7 @@ packages:
resolution: {integrity: sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==}
engines: {node: '>=12'}
dependencies:
- d3-array: 3.2.3
+ d3-array: 3.2.4
dev: false
/d3-hierarchy@3.1.2:
@@ -4515,7 +4422,7 @@ packages:
resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
engines: {node: '>=12'}
dependencies:
- d3-array: 3.2.3
+ d3-array: 3.2.4
d3-format: 3.1.0
d3-interpolate: 3.0.1
d3-time: 3.1.0
@@ -4545,7 +4452,7 @@ packages:
resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
engines: {node: '>=12'}
dependencies:
- d3-array: 3.2.3
+ d3-array: 3.2.4
dev: false
/d3-timer@3.0.1:
@@ -4578,11 +4485,11 @@ packages:
d3-transition: 3.0.1(d3-selection@3.0.0)
dev: false
- /d3@7.8.4:
- resolution: {integrity: sha512-q2WHStdhiBtD8DMmhDPyJmXUxr6VWRngKyiJ5EfXMxPw+tqT6BhNjhJZ4w3BHsNm3QoVfZLY8Orq/qPFczwKRA==}
+ /d3@7.8.5:
+ resolution: {integrity: sha512-JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA==}
engines: {node: '>=12'}
dependencies:
- d3-array: 3.2.3
+ d3-array: 3.2.4
d3-axis: 3.0.0
d3-brush: 3.0.0
d3-chord: 3.0.1
@@ -4617,12 +4524,12 @@ packages:
/dagre-d3-es@7.0.9:
resolution: {integrity: sha512-rYR4QfVmy+sR44IBDvVtcAmOReGBvRCWDpO2QjYwqgh9yijw6eSHBqaPG/LIOEy7aBsniLvtMW6pg19qJhq60w==}
dependencies:
- d3: 7.8.4
+ d3: 7.8.5
lodash-es: 4.17.21
dev: false
- /dayjs@1.11.7:
- resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==}
+ /dayjs@1.11.9:
+ resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==}
dev: false
/debug@2.6.9:
@@ -4713,7 +4620,7 @@ packages:
/delaunator@5.0.0:
resolution: {integrity: sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==}
dependencies:
- robust-predicates: 3.0.1
+ robust-predicates: 3.0.2
dev: false
/delayed-stream@1.0.0:
@@ -4768,6 +4675,7 @@ packages:
/didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
+ dev: false
/diff@5.1.0:
resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
@@ -4783,13 +4691,14 @@ packages:
/dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
+ dev: false
/dns-equal@1.0.0:
resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
dev: false
- /dns-packet@5.6.0:
- resolution: {integrity: sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==}
+ /dns-packet@5.6.1:
+ resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
engines: {node: '>=6'}
dependencies:
'@leichtgewicht/ip-codec': 2.0.4
@@ -4859,7 +4768,7 @@ packages:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
- tslib: 2.5.0
+ tslib: 2.6.2
dev: false
/dot-prop@6.0.1:
@@ -4886,8 +4795,8 @@ packages:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: false
- /electron-to-chromium@1.4.341:
- resolution: {integrity: sha512-R4A8VfUBQY9WmAhuqY5tjHRf5fH2AAf6vqitBOE0y6u2PgHgqHSrhZmu78dIX3fVZtjqlwJNX1i2zwC3VpHtQQ==}
+ /electron-to-chromium@1.4.513:
+ resolution: {integrity: sha512-cOB0xcInjm+E5qIssHeXJ29BaUyWpMyFKT5RB3bsLENDheCja0wMkHJyiPl0NBE/VzDI7JDuNEQWhe6RitEUcw==}
/elkjs@0.8.2:
resolution: {integrity: sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==}
@@ -4915,8 +4824,8 @@ packages:
engines: {node: '>= 0.8'}
dev: false
- /enhanced-resolve@5.14.0:
- resolution: {integrity: sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==}
+ /enhanced-resolve@5.15.0:
+ resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.11
@@ -4937,8 +4846,8 @@ packages:
is-arrayish: 0.2.1
dev: false
- /es-module-lexer@1.2.1:
- resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==}
+ /es-module-lexer@1.3.0:
+ resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==}
/escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
@@ -5033,7 +4942,7 @@ packages:
resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
dependencies:
'@types/estree-jsx': 1.0.0
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
dev: false
/estree-walker@3.0.3:
@@ -5061,7 +4970,7 @@ packages:
resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
engines: {node: '>= 0.8'}
dependencies:
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
require-like: 0.1.2
dev: false
@@ -5150,6 +5059,7 @@ packages:
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.5
+ dev: false
/fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
@@ -5164,6 +5074,7 @@ packages:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
+ dev: false
/faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
@@ -5175,7 +5086,7 @@ packages:
/fbemitter@3.0.0:
resolution: {integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==}
dependencies:
- fbjs: 3.0.4
+ fbjs: 3.0.5
transitivePeerDependencies:
- encoding
dev: false
@@ -5184,16 +5095,16 @@ packages:
resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
dev: false
- /fbjs@3.0.4:
- resolution: {integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==}
+ /fbjs@3.0.5:
+ resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==}
dependencies:
- cross-fetch: 3.1.6
+ cross-fetch: 3.1.8
fbjs-css-vars: 1.0.2
loose-envify: 1.4.0
object-assign: 4.1.1
promise: 7.3.1
setimmediate: 1.0.5
- ua-parser-js: 0.7.35
+ ua-parser-js: 1.0.35
transitivePeerDependencies:
- encoding
dev: false
@@ -5205,15 +5116,15 @@ packages:
xml-js: 1.6.11
dev: false
- /file-loader@6.2.0(webpack@5.82.1):
+ /file-loader@6.2.0(webpack@5.88.2):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
loader-utils: 2.0.4
- schema-utils: 3.1.2
- webpack: 5.82.1
+ schema-utils: 3.3.0
+ webpack: 5.88.2
dev: false
/filesize@8.0.7:
@@ -5226,6 +5137,7 @@ packages:
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
+ dev: false
/finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
@@ -5279,7 +5191,7 @@ packages:
react: ^15.0.2 || ^16.0.0 || ^17.0.0
dependencies:
fbemitter: 3.0.0
- fbjs: 3.0.4
+ fbjs: 3.0.5
react: 18.2.0
transitivePeerDependencies:
- encoding
@@ -5295,7 +5207,7 @@ packages:
optional: true
dev: false
- /fork-ts-checker-webpack-plugin@6.5.3(typescript@5.1.6)(webpack@5.82.1):
+ /fork-ts-checker-webpack-plugin@6.5.3(typescript@5.2.2)(webpack@5.88.2):
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -5309,21 +5221,21 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.21.4
- '@types/json-schema': 7.0.11
+ '@babel/code-frame': 7.22.13
+ '@types/json-schema': 7.0.12
chalk: 4.1.2
chokidar: 3.5.3
cosmiconfig: 6.0.0
deepmerge: 4.3.1
fs-extra: 9.1.0
glob: 7.2.3
- memfs: 3.5.1
+ memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.5.1
+ semver: 7.5.4
tapable: 1.1.3
- typescript: 5.1.6
- webpack: 5.82.1
+ typescript: 5.2.2
+ webpack: 5.88.2
dev: false
/form-data-encoder@2.1.4:
@@ -5345,32 +5257,8 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /fraction.js@4.2.0:
- resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
- dev: false
-
- /framer-motion@6.5.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==}
- peerDependencies:
- react: '>=16.8 || ^17.0.0 || ^18.0.0'
- react-dom: '>=16.8 || ^17.0.0 || ^18.0.0'
- dependencies:
- '@motionone/dom': 10.12.0
- framesync: 6.0.1
- hey-listen: 1.0.8
- popmotion: 11.0.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- style-value-types: 5.0.0
- tslib: 2.5.0
- optionalDependencies:
- '@emotion/is-prop-valid': 0.8.8
- dev: false
-
- /framesync@6.0.1:
- resolution: {integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==}
- dependencies:
- tslib: 2.5.0
+ /fraction.js@4.3.6:
+ resolution: {integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==}
dev: false
/fresh@0.5.2:
@@ -5397,22 +5285,25 @@ packages:
universalify: 2.0.0
dev: false
- /fs-monkey@1.0.3:
- resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
+ /fs-monkey@1.0.4:
+ resolution: {integrity: sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==}
dev: false
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+ dev: false
- /fsevents@2.3.2:
- resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ /fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
+ dev: false
optional: true
/function-bind@1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+ dev: false
/gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
@@ -5446,12 +5337,14 @@ packages:
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
+ dev: false
/glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
dependencies:
is-glob: 4.0.3
+ dev: false
/glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
@@ -5465,6 +5358,7 @@ packages:
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
+ dev: false
/glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
@@ -5517,8 +5411,8 @@ packages:
slash: 3.0.0
dev: false
- /globby@13.1.4:
- resolution: {integrity: sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==}
+ /globby@13.2.2:
+ resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
dir-glob: 3.0.1
@@ -5608,14 +5502,15 @@ packages:
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
+ dev: false
/hast-util-from-parse5@7.1.2:
resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==}
dependencies:
- '@types/hast': 2.3.4
- '@types/unist': 2.0.6
+ '@types/hast': 2.3.5
+ '@types/unist': 2.0.8
hastscript: 7.2.0
- property-information: 6.2.0
+ property-information: 6.3.0
vfile: 5.3.7
vfile-location: 4.1.0
web-namespaces: 2.0.1
@@ -5624,13 +5519,13 @@ packages:
/hast-util-parse-selector@3.1.1:
resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 2.3.5
dev: false
/hast-util-raw@7.2.3:
resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 2.3.5
'@types/parse5': 6.0.3
hast-util-from-parse5: 7.1.2
hast-util-to-parse5: 7.1.0
@@ -5648,15 +5543,15 @@ packages:
dependencies:
'@types/estree': 1.0.1
'@types/estree-jsx': 1.0.0
- '@types/hast': 2.3.4
- '@types/unist': 2.0.6
+ '@types/hast': 2.3.5
+ '@types/unist': 2.0.8
comma-separated-tokens: 2.0.3
estree-util-attach-comments: 2.1.1
estree-util-is-identifier-name: 2.1.0
hast-util-whitespace: 2.0.1
mdast-util-mdx-expression: 1.3.2
mdast-util-mdxjs-esm: 1.3.1
- property-information: 6.2.0
+ property-information: 6.3.0
space-separated-tokens: 2.0.2
style-to-object: 0.4.2
unist-util-position: 4.0.4
@@ -5668,9 +5563,9 @@ packages:
/hast-util-to-parse5@7.1.0:
resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 2.3.5
comma-separated-tokens: 2.0.3
- property-information: 6.2.0
+ property-information: 6.3.0
space-separated-tokens: 2.0.2
web-namespaces: 2.0.1
zwitch: 2.0.4
@@ -5683,10 +5578,10 @@ packages:
/hastscript@7.2.0:
resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 2.3.5
comma-separated-tokens: 2.0.3
hast-util-parse-selector: 3.1.1
- property-information: 6.2.0
+ property-information: 6.3.0
space-separated-tokens: 2.0.2
dev: false
@@ -5699,14 +5594,10 @@ packages:
resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==}
dev: false
- /hey-listen@1.0.8:
- resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
- dev: false
-
/history@4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.22.15
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.1
@@ -5729,8 +5620,8 @@ packages:
wbuf: 1.7.3
dev: false
- /html-entities@2.3.3:
- resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
+ /html-entities@2.4.0:
+ resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==}
dev: false
/html-minifier-terser@6.1.0:
@@ -5744,7 +5635,7 @@ packages:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.17.4
+ terser: 5.19.4
dev: false
/html-minifier-terser@7.2.0:
@@ -5758,7 +5649,7 @@ packages:
entities: 4.5.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.17.4
+ terser: 5.19.4
dev: false
/html-tags@3.3.1:
@@ -5770,8 +5661,8 @@ packages:
resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
dev: false
- /html-webpack-plugin@5.5.1(webpack@5.82.1):
- resolution: {integrity: sha512-cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA==}
+ /html-webpack-plugin@5.5.3(webpack@5.88.2):
+ resolution: {integrity: sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==}
engines: {node: '>=10.13.0'}
peerDependencies:
webpack: ^5.20.0
@@ -5781,7 +5672,7 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.82.1
+ webpack: 5.88.2
dev: false
/htmlparser2@6.1.0:
@@ -5892,13 +5783,13 @@ packages:
safer-buffer: 2.1.2
dev: false
- /icss-utils@5.1.0(postcss@8.4.27):
+ /icss-utils@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
/ignore@5.2.4:
@@ -5951,6 +5842,7 @@ packages:
dependencies:
once: 1.4.0
wrappy: 1.0.2
+ dev: false
/inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
@@ -5958,6 +5850,7 @@ packages:
/inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+ dev: false
/ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
@@ -5992,8 +5885,8 @@ packages:
engines: {node: '>= 0.10'}
dev: false
- /ipaddr.js@2.0.1:
- resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
+ /ipaddr.js@2.1.0:
+ resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==}
engines: {node: '>= 10'}
dev: false
@@ -6017,6 +5910,7 @@ packages:
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
+ dev: false
/is-buffer@2.0.5:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
@@ -6034,6 +5928,7 @@ packages:
resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
dependencies:
has: 1.0.3
+ dev: false
/is-decimal@2.0.1:
resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
@@ -6053,6 +5948,7 @@ packages:
/is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
+ dev: false
/is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
@@ -6064,6 +5960,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
+ dev: false
/is-hexadecimal@2.0.1:
resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
@@ -6085,6 +5982,7 @@ packages:
/is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
+ dev: false
/is-obj@1.0.1:
resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
@@ -6122,6 +6020,11 @@ packages:
dependencies:
isobject: 3.0.1
+ /is-plain-object@5.0.0:
+ resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
/is-reference@3.0.1:
resolution: {integrity: sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==}
dependencies:
@@ -6175,12 +6078,12 @@ packages:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- /jest-util@29.5.0:
- resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==}
+ /jest-util@29.6.3:
+ resolution: {integrity: sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.5.0
- '@types/node': 20.4.8
+ '@jest/types': 29.6.3
+ '@types/node': 20.6.0
chalk: 4.1.2
ci-info: 3.8.0
graceful-fs: 4.2.11
@@ -6191,26 +6094,27 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.4.8
+ '@types/node': 20.6.0
merge-stream: 2.0.0
supports-color: 8.1.1
- /jest-worker@29.5.0:
- resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==}
+ /jest-worker@29.6.4:
+ resolution: {integrity: sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.4.8
- jest-util: 29.5.0
+ '@types/node': 20.6.0
+ jest-util: 29.6.3
merge-stream: 2.0.0
supports-color: 8.1.1
dev: false
- /jiti@1.19.1:
- resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==}
+ /jiti@1.20.0:
+ resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==}
hasBin: true
+ dev: false
- /joi@17.9.2:
- resolution: {integrity: sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==}
+ /joi@17.10.1:
+ resolution: {integrity: sha512-vIiDxQKmRidUVp8KngT8MZSOcmRVm2zV7jbMjNYWuHcJWI0bUck3nRTGQjhpPlQenIQIBC5Vp9AhcnHbWQqafw==}
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
@@ -6299,11 +6203,6 @@ packages:
engines: {node: '>=6'}
dev: false
- /klona@2.0.6:
- resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
- engines: {node: '>= 8'}
- dev: false
-
/latest-version@7.0.0:
resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==}
engines: {node: '>=14.16'}
@@ -6334,9 +6233,11 @@ packages:
/lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
+ dev: false
/lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+ dev: false
/loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
@@ -6382,10 +6283,6 @@ packages:
resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
dev: false
- /lodash.castarray@4.4.0:
- resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
- dev: true
-
/lodash.curry@4.1.1:
resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==}
dev: false
@@ -6394,26 +6291,38 @@ packages:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
dev: false
+ /lodash.escape@4.0.1:
+ resolution: {integrity: sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==}
+ dev: false
+
+ /lodash.flatten@4.4.0:
+ resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
+ dev: false
+
/lodash.flow@3.5.0:
resolution: {integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==}
dev: false
- /lodash.isplainobject@4.0.6:
- resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
- dev: true
+ /lodash.invokemap@4.6.0:
+ resolution: {integrity: sha512-CfkycNtMqgUlfjfdh2BhKO/ZXrP8ePOX5lEU/g0R3ItJcnuxWDwokMGKx1hWcfOikmyOVx6X9IwWnDGlgKl61w==}
+ dev: false
/lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: false
- /lodash.merge@4.6.2:
- resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- dev: true
+ /lodash.pullall@4.2.0:
+ resolution: {integrity: sha512-VhqxBKH0ZxPpLhiu68YD1KnHmbhQJQctcipvmFnqIBDYzcIHzf3Zpu0tpeOKtR4x76p9yohc506eGdOjTmyIBg==}
+ dev: false
/lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: false
+ /lodash.uniqby@4.7.0:
+ resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==}
+ dev: false
+
/lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
dev: false
@@ -6431,7 +6340,7 @@ packages:
/lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
- tslib: 2.5.0
+ tslib: 2.6.2
dev: false
/lowercase-keys@3.0.0:
@@ -6464,16 +6373,16 @@ packages:
/mdast-util-definitions@5.1.2:
resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/mdast': 3.0.12
+ '@types/unist': 2.0.8
unist-util-visit: 4.1.2
dev: false
/mdast-util-directive@2.2.4:
resolution: {integrity: sha512-sK3ojFP+jpj1n7Zo5ZKvoxP1MvLyzVG63+gm40Z/qI00avzdPCYxt7RBMgofwAva9gBjbDBWVRB/i+UD+fUCzQ==}
dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/mdast': 3.0.12
+ '@types/unist': 2.0.8
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
parse-entities: 4.0.1
@@ -6486,7 +6395,7 @@ packages:
/mdast-util-find-and-replace@2.2.2:
resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
escape-string-regexp: 5.0.0
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
@@ -6495,8 +6404,8 @@ packages:
/mdast-util-from-markdown@1.3.1:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/mdast': 3.0.12
+ '@types/unist': 2.0.8
decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.2.0
micromark: 3.2.0
@@ -6514,7 +6423,7 @@ packages:
/mdast-util-gfm-autolink-literal@1.0.3:
resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
ccount: 2.0.1
mdast-util-find-and-replace: 2.2.2
micromark-util-character: 1.2.0
@@ -6523,7 +6432,7 @@ packages:
/mdast-util-gfm-footnote@1.0.2:
resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-to-markdown: 1.5.0
micromark-util-normalize-identifier: 1.1.0
dev: false
@@ -6531,14 +6440,14 @@ packages:
/mdast-util-gfm-strikethrough@1.0.3:
resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-to-markdown: 1.5.0
dev: false
/mdast-util-gfm-table@1.0.7:
resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
markdown-table: 3.0.3
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
@@ -6549,7 +6458,7 @@ packages:
/mdast-util-gfm-task-list-item@1.0.2:
resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-to-markdown: 1.5.0
dev: false
@@ -6571,8 +6480,8 @@ packages:
resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
dependencies:
'@types/estree-jsx': 1.0.0
- '@types/hast': 2.3.4
- '@types/mdast': 3.0.11
+ '@types/hast': 2.3.5
+ '@types/mdast': 3.0.12
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
@@ -6583,9 +6492,9 @@ packages:
resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==}
dependencies:
'@types/estree-jsx': 1.0.0
- '@types/hast': 2.3.4
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/hast': 2.3.5
+ '@types/mdast': 3.0.12
+ '@types/unist': 2.0.8
ccount: 2.0.1
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
@@ -6614,8 +6523,8 @@ packages:
resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
dependencies:
'@types/estree-jsx': 1.0.0
- '@types/hast': 2.3.4
- '@types/mdast': 3.0.11
+ '@types/hast': 2.3.5
+ '@types/mdast': 3.0.12
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
@@ -6625,15 +6534,15 @@ packages:
/mdast-util-phrasing@3.0.1:
resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
unist-util-is: 5.2.1
dev: false
/mdast-util-to-hast@12.3.0:
resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
dependencies:
- '@types/hast': 2.3.4
- '@types/mdast': 3.0.11
+ '@types/hast': 2.3.5
+ '@types/mdast': 3.0.12
mdast-util-definitions: 5.1.2
micromark-util-sanitize-uri: 1.2.0
trim-lines: 3.0.1
@@ -6645,8 +6554,8 @@ packages:
/mdast-util-to-markdown@1.5.0:
resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/mdast': 3.0.12
+ '@types/unist': 2.0.8
longest-streak: 3.1.0
mdast-util-phrasing: 3.0.1
mdast-util-to-string: 3.2.0
@@ -6658,7 +6567,7 @@ packages:
/mdast-util-to-string@3.2.0:
resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
dev: false
/mdn-data@2.0.14:
@@ -6670,11 +6579,11 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /memfs@3.5.1:
- resolution: {integrity: sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA==}
+ /memfs@3.5.3:
+ resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
dependencies:
- fs-monkey: 1.0.3
+ fs-monkey: 1.0.4
dev: false
/merge-descriptors@1.0.1:
@@ -6687,23 +6596,24 @@ packages:
/merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
+ dev: false
/mermaid@9.4.3:
resolution: {integrity: sha512-TLkQEtqhRSuEHSE34lh5bCa94KATCyluAXmFnNI2PRZwOpXFeqiJWwZl+d2CcemE1RS6QbbueSSq9QIg8Uxcyw==}
dependencies:
- '@braintree/sanitize-url': 6.0.2
- cytoscape: 3.24.0
- cytoscape-cose-bilkent: 4.1.0(cytoscape@3.24.0)
- cytoscape-fcose: 2.2.0(cytoscape@3.24.0)
- d3: 7.8.4
+ '@braintree/sanitize-url': 6.0.4
+ cytoscape: 3.26.0
+ cytoscape-cose-bilkent: 4.1.0(cytoscape@3.26.0)
+ cytoscape-fcose: 2.2.0(cytoscape@3.26.0)
+ d3: 7.8.5
dagre-d3-es: 7.0.9
- dayjs: 1.11.7
+ dayjs: 1.11.9
dompurify: 2.4.3
elkjs: 0.8.2
khroma: 2.0.0
lodash-es: 4.17.21
non-layered-tidy-tree-layout: 2.0.2
- stylis: 4.2.0
+ stylis: 4.3.0
ts-dedent: 2.2.0
uuid: 9.0.0
web-worker: 1.2.0
@@ -6870,8 +6780,8 @@ packages:
/micromark-extension-mdxjs@1.0.1:
resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==}
dependencies:
- acorn: 8.8.2
- acorn-jsx: 5.3.2(acorn@8.8.2)
+ acorn: 8.10.0
+ acorn-jsx: 5.3.2(acorn@8.10.0)
micromark-extension-mdx-expression: 1.0.8
micromark-extension-mdx-jsx: 1.0.5
micromark-extension-mdx-md: 1.0.1
@@ -6987,7 +6897,7 @@ packages:
dependencies:
'@types/acorn': 4.0.6
'@types/estree': 1.0.1
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
estree-util-visit: 1.2.1
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
@@ -7066,6 +6976,7 @@ packages:
dependencies:
braces: 3.0.2
picomatch: 2.3.1
+ dev: false
/mime-db@1.33.0:
resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==}
@@ -7110,14 +7021,14 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: false
- /mini-css-extract-plugin@2.7.5(webpack@5.82.1):
- resolution: {integrity: sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==}
+ /mini-css-extract-plugin@2.7.6(webpack@5.88.2):
+ resolution: {integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- schema-utils: 4.0.1
- webpack: 5.82.1
+ schema-utils: 4.2.0
+ webpack: 5.88.2
dev: false
/minimalistic-assert@1.0.1:
@@ -7128,6 +7039,7 @@ packages:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
+ dev: false
/minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
@@ -7159,7 +7071,7 @@ packages:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
dependencies:
- dns-packet: 5.6.0
+ dns-packet: 5.6.1
thunky: 1.1.0
dev: false
@@ -7169,11 +7081,13 @@ packages:
any-promise: 1.3.0
object-assign: 4.1.1
thenify-all: 1.6.0
+ dev: false
/nanoid@3.3.6:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ dev: false
/negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
@@ -7187,7 +7101,7 @@ packages:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
- tslib: 2.5.0
+ tslib: 2.6.2
dev: false
/node-emoji@1.11.0:
@@ -7196,8 +7110,8 @@ packages:
lodash: 4.17.21
dev: false
- /node-fetch@2.6.11:
- resolution: {integrity: sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==}
+ /node-fetch@2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
@@ -7213,8 +7127,8 @@ packages:
engines: {node: '>= 6.13.0'}
dev: false
- /node-releases@2.0.10:
- resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
+ /node-releases@2.0.13:
+ resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
/non-layered-tidy-tree-layout@2.0.2:
resolution: {integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==}
@@ -7223,6 +7137,7 @@ packages:
/normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
+ dev: false
/normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
@@ -7263,6 +7178,7 @@ packages:
/object-hash@3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
+ dev: false
/object-inspect@1.12.3:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
@@ -7303,6 +7219,7 @@ packages:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
+ dev: false
/onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
@@ -7399,14 +7316,14 @@ packages:
got: 12.6.1
registry-auth-token: 5.0.2
registry-url: 6.0.1
- semver: 7.5.1
+ semver: 7.5.4
dev: false
/param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
- tslib: 2.5.0
+ tslib: 2.6.2
dev: false
/parent-module@1.0.1:
@@ -7419,7 +7336,7 @@ packages:
/parse-entities@4.0.1:
resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
character-entities: 2.0.2
character-entities-legacy: 3.0.0
character-reference-invalid: 2.0.1
@@ -7433,7 +7350,7 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.21.4
+ '@babel/code-frame': 7.22.13
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -7469,7 +7386,7 @@ packages:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
- tslib: 2.5.0
+ tslib: 2.6.2
dev: false
/path-exists@3.0.0:
@@ -7490,6 +7407,7 @@ packages:
/path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
+ dev: false
/path-is-inside@1.0.2:
resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
@@ -7502,6 +7420,7 @@ packages:
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+ dev: false
/path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -7536,14 +7455,17 @@ packages:
/picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ dev: false
/pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
+ dev: false
/pirates@4.0.6:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
+ dev: false
/pkg-dir@7.0.0:
resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
@@ -7559,116 +7481,109 @@ packages:
find-up: 3.0.0
dev: false
- /popmotion@11.0.3:
- resolution: {integrity: sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==}
- dependencies:
- framesync: 6.0.1
- hey-listen: 1.0.8
- style-value-types: 5.0.0
- tslib: 2.5.0
- dev: false
-
- /postcss-calc@8.2.4(postcss@8.4.27):
+ /postcss-calc@8.2.4(postcss@8.4.29):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: false
- /postcss-colormin@5.3.1(postcss@8.4.27):
+ /postcss-colormin@5.3.1(postcss@8.4.29):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.10
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-convert-values@5.1.3(postcss@8.4.27):
+ /postcss-convert-values@5.1.3(postcss@8.4.29):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
- postcss: 8.4.27
+ browserslist: 4.21.10
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-discard-comments@5.1.2(postcss@8.4.27):
+ /postcss-discard-comments@5.1.2(postcss@8.4.29):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /postcss-discard-duplicates@5.1.0(postcss@8.4.27):
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /postcss-discard-empty@5.1.1(postcss@8.4.27):
+ /postcss-discard-empty@5.1.1(postcss@8.4.29):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /postcss-discard-overridden@5.1.0(postcss@8.4.27):
+ /postcss-discard-overridden@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /postcss-discard-unused@5.1.0(postcss@8.4.27):
+ /postcss-discard-unused@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
dev: false
- /postcss-import@15.1.0(postcss@8.4.27):
+ /postcss-import@15.1.0(postcss@8.4.29):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.4
+ dev: false
- /postcss-js@4.0.1(postcss@8.4.27):
+ /postcss-js@4.0.1(postcss@8.4.29):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.27
+ postcss: 8.4.29
+ dev: false
- /postcss-load-config@4.0.1(postcss@8.4.27):
+ /postcss-load-config@4.0.1(postcss@8.4.29):
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
peerDependencies:
@@ -7681,351 +7596,349 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.27
- yaml: 2.3.1
+ postcss: 8.4.29
+ yaml: 2.3.2
+ dev: false
- /postcss-loader@7.3.0(postcss@8.4.27)(webpack@5.82.1):
- resolution: {integrity: sha512-qLAFjvR2BFNz1H930P7mj1iuWJFjGey/nVhimfOAAQ1ZyPpcClAxP8+A55Sl8mBvM+K2a9Pjgdj10KpANWrNfw==}
+ /postcss-loader@7.3.3(postcss@8.4.29)(typescript@5.2.2)(webpack@5.88.2):
+ resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
dependencies:
- cosmiconfig: 8.1.3
- jiti: 1.19.1
- klona: 2.0.6
- postcss: 8.4.27
- semver: 7.5.1
- webpack: 5.82.1
+ cosmiconfig: 8.3.5(typescript@5.2.2)
+ jiti: 1.20.0
+ postcss: 8.4.29
+ semver: 7.5.4
+ webpack: 5.88.2
+ transitivePeerDependencies:
+ - typescript
dev: false
- /postcss-merge-idents@5.1.1(postcss@8.4.27):
+ /postcss-merge-idents@5.1.1(postcss@8.4.29):
resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.27)
- postcss: 8.4.27
+ cssnano-utils: 3.1.0(postcss@8.4.29)
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-merge-longhand@5.1.7(postcss@8.4.27):
+ /postcss-merge-longhand@5.1.7(postcss@8.4.29):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.27)
+ stylehacks: 5.1.1(postcss@8.4.29)
dev: false
- /postcss-merge-rules@5.1.4(postcss@8.4.27):
+ /postcss-merge-rules@5.1.4(postcss@8.4.29):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.10
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.27)
- postcss: 8.4.27
+ cssnano-utils: 3.1.0(postcss@8.4.29)
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
dev: false
- /postcss-minify-font-values@5.1.0(postcss@8.4.27):
+ /postcss-minify-font-values@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-gradients@5.1.1(postcss@8.4.27):
+ /postcss-minify-gradients@5.1.1(postcss@8.4.29):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0(postcss@8.4.27)
- postcss: 8.4.27
+ cssnano-utils: 3.1.0(postcss@8.4.29)
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-params@5.1.4(postcss@8.4.27):
+ /postcss-minify-params@5.1.4(postcss@8.4.29):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
- cssnano-utils: 3.1.0(postcss@8.4.27)
- postcss: 8.4.27
+ browserslist: 4.21.10
+ cssnano-utils: 3.1.0(postcss@8.4.29)
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-selectors@5.2.1(postcss@8.4.27):
+ /postcss-minify-selectors@5.2.1(postcss@8.4.29):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
dev: false
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.27):
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.29):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /postcss-modules-local-by-default@4.0.0(postcss@8.4.27):
- resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
+ /postcss-modules-local-by-default@4.0.3(postcss@8.4.29):
+ resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.27)
- postcss: 8.4.27
+ icss-utils: 5.1.0(postcss@8.4.29)
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: false
- /postcss-modules-scope@3.0.0(postcss@8.4.27):
+ /postcss-modules-scope@3.0.0(postcss@8.4.29):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
dev: false
- /postcss-modules-values@4.0.0(postcss@8.4.27):
+ /postcss-modules-values@4.0.0(postcss@8.4.29):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.27)
- postcss: 8.4.27
+ icss-utils: 5.1.0(postcss@8.4.29)
+ postcss: 8.4.29
dev: false
- /postcss-nested@6.0.1(postcss@8.4.27):
+ /postcss-nested@6.0.1(postcss@8.4.29):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
+ dev: false
- /postcss-normalize-charset@5.1.0(postcss@8.4.27):
+ /postcss-normalize-charset@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /postcss-normalize-display-values@5.1.0(postcss@8.4.27):
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-positions@5.1.1(postcss@8.4.27):
+ /postcss-normalize-positions@5.1.1(postcss@8.4.29):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-repeat-style@5.1.1(postcss@8.4.27):
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.29):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-string@5.1.0(postcss@8.4.27):
+ /postcss-normalize-string@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-timing-functions@5.1.0(postcss@8.4.27):
+ /postcss-normalize-timing-functions@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-unicode@5.1.1(postcss@8.4.27):
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.29):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
- postcss: 8.4.27
+ browserslist: 4.21.10
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-url@5.1.0(postcss@8.4.27):
+ /postcss-normalize-url@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-whitespace@5.1.1(postcss@8.4.27):
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.29):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-ordered-values@5.1.3(postcss@8.4.27):
+ /postcss-ordered-values@5.1.3(postcss@8.4.29):
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.27)
- postcss: 8.4.27
+ cssnano-utils: 3.1.0(postcss@8.4.29)
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-idents@5.2.0(postcss@8.4.27):
+ /postcss-reduce-idents@5.2.0(postcss@8.4.29):
resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-initial@5.1.2(postcss@8.4.27):
+ /postcss-reduce-initial@5.1.2(postcss@8.4.29):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.10
caniuse-api: 3.0.0
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /postcss-reduce-transforms@5.1.0(postcss@8.4.27):
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
dev: false
- /postcss-selector-parser@6.0.10:
- resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
- engines: {node: '>=4'}
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
- dev: true
-
/postcss-selector-parser@6.0.13:
resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
+ dev: false
- /postcss-sort-media-queries@4.4.1(postcss@8.4.27):
+ /postcss-sort-media-queries@4.4.1(postcss@8.4.29):
resolution: {integrity: sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.4.16
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
sort-css-media-queries: 2.1.0
dev: false
- /postcss-svgo@5.1.0(postcss@8.4.27):
+ /postcss-svgo@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
svgo: 2.8.0
dev: false
- /postcss-unique-selectors@5.1.1(postcss@8.4.27):
+ /postcss-unique-selectors@5.1.1(postcss@8.4.29):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
dev: false
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+ dev: false
- /postcss-zindex@5.1.0(postcss@8.4.27):
+ /postcss-zindex@5.1.0(postcss@8.4.29):
resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /postcss@8.4.27:
- resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==}
+ /postcss@8.4.29:
+ resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.6
picocolors: 1.0.0
source-map-js: 1.0.2
+ dev: false
/pretty-error@4.0.0:
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
@@ -8077,8 +7990,8 @@ packages:
object-assign: 4.1.1
react-is: 16.13.1
- /property-information@6.2.0:
- resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==}
+ /property-information@6.3.0:
+ resolution: {integrity: sha512-gVNZ74nqhRMiIUYWGQdosYetaKc83x8oT41a0LlV3AAFCAZwCpg4vmGkq8t34+cUhp3cnM4XDiU/7xlgK7HGrg==}
dev: false
/proto-list@1.2.4:
@@ -8121,6 +8034,7 @@ packages:
/queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+ dev: false
/queue@6.0.2:
resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
@@ -8177,7 +8091,7 @@ packages:
pure-color: 1.3.0
dev: false
- /react-dev-utils@12.0.1(typescript@5.1.6)(webpack@5.82.1):
+ /react-dev-utils@12.0.1(typescript@5.2.2)(webpack@5.88.2):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -8187,16 +8101,16 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/code-frame': 7.21.4
+ '@babel/code-frame': 7.22.13
address: 1.2.2
- browserslist: 4.21.5
+ browserslist: 4.21.10
chalk: 4.1.2
cross-spawn: 7.0.3
detect-port-alt: 1.1.6
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(typescript@5.1.6)(webpack@5.82.1)
+ fork-ts-checker-webpack-plugin: 6.5.3(typescript@5.2.2)(webpack@5.88.2)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -8211,8 +8125,8 @@ packages:
shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
- typescript: 5.1.6
- webpack: 5.82.1
+ typescript: 5.2.2
+ webpack: 5.88.2
transitivePeerDependencies:
- eslint
- supports-color
@@ -8228,19 +8142,12 @@ packages:
react: 18.2.0
scheduler: 0.23.0
- /react-easy-swipe@0.0.21:
- resolution: {integrity: sha512-OeR2jAxdoqUMHIn/nS9fgreI5hSpgGoL5ezdal4+oO7YSSgJR8ga+PkYGJrSrJ9MKlPcQjMQXnketrD7WNmNsg==}
- engines: {node: '>= 6'}
- dependencies:
- prop-types: 15.8.1
- dev: false
-
/react-error-overlay@6.0.11:
resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
dev: false
- /react-fast-compare@3.2.1:
- resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==}
+ /react-fast-compare@3.2.2:
+ resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
/react-helmet-async@1.3.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
@@ -8248,16 +8155,16 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.22.15
invariant: 2.2.4
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-fast-compare: 3.2.1
+ react-fast-compare: 3.2.2
shallowequal: 1.1.0
- /react-icons@4.10.1(react@18.2.0):
- resolution: {integrity: sha512-/ngzDP/77tlCfqthiiGNZeYFACw85fUjZtLbedmJ5DTlNDIwETxhwBzdOJ21zj4iJdvc0J3y7yOsX3PpxAJzrw==}
+ /react-icons@4.11.0(react@18.2.0):
+ resolution: {integrity: sha512-V+4khzYcE5EBk/BvcuYRq6V/osf11ODUM2J8hg2FDSswRrGvqiYUYPRy4OdrWaQOBj4NcpJfmHZLNaD+VH0TyA==}
peerDependencies:
react: '*'
dependencies:
@@ -8267,7 +8174,7 @@ packages:
/react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- /react-json-view@1.21.3(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
+ /react-json-view@1.21.3(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==}
peerDependencies:
react: ^17.0.0 || ^16.3.0 || ^15.5.4
@@ -8278,7 +8185,7 @@ packages:
react-base16-styling: 0.6.0
react-dom: 18.2.0(react@18.2.0)
react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.4.1(@types/react@18.2.18)(react@18.2.0)
+ react-textarea-autosize: 8.5.3(@types/react@18.2.21)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- encoding
@@ -8288,24 +8195,16 @@ packages:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
dev: false
- /react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.82.1):
+ /react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.88.2):
resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==}
engines: {node: '>=10.13.0'}
peerDependencies:
react-loadable: '*'
webpack: '>=4.41.1 || 5.x'
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.22.15
react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
- webpack: 5.82.1
- dev: false
-
- /react-responsive-carousel@3.2.23:
- resolution: {integrity: sha512-pqJLsBaKHWJhw/ItODgbVoziR2z4lpcJg+YwmRlSk4rKH32VE633mAtZZ9kDXjy4wFO+pgUZmDKPsPe1fPmHCg==}
- dependencies:
- classnames: 2.3.2
- prop-types: 15.8.1
- react-easy-swipe: 0.0.21
+ webpack: 5.88.2
dev: false
/react-router-config@5.1.1(react-router@5.3.4)(react@18.2.0):
@@ -8314,7 +8213,7 @@ packages:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.22.15
react: 18.2.0
react-router: 5.3.4(react@18.2.0)
dev: false
@@ -8324,7 +8223,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.22.15
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -8339,7 +8238,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.22.15
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -8351,16 +8250,16 @@ packages:
tiny-warning: 1.0.3
dev: false
- /react-textarea-autosize@8.4.1(@types/react@18.2.18)(react@18.2.0):
- resolution: {integrity: sha512-aD2C+qK6QypknC+lCMzteOdIjoMbNlgSFmJjCV+DrfTPwp59i/it9mMNf2HDzvRjQgKAyBDPyLJhcrzElf2U4Q==}
+ /react-textarea-autosize@8.5.3(@types/react@18.2.21)(react@18.2.0):
+ resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
engines: {node: '>=10'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.22.15
react: 18.2.0
use-composed-ref: 1.3.0(react@18.2.0)
- use-latest: 1.2.1(@types/react@18.2.18)(react@18.2.0)
+ use-latest: 1.2.1(@types/react@18.2.21)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
dev: false
@@ -8375,6 +8274,7 @@ packages:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
dependencies:
pify: 2.3.0
+ dev: false
/readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
@@ -8402,6 +8302,7 @@ packages:
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
+ dev: false
/reading-time@1.5.0:
resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==}
@@ -8432,13 +8333,13 @@ packages:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
dev: false
- /regenerator-runtime@0.13.11:
- resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
+ /regenerator-runtime@0.14.0:
+ resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
- /regenerator-transform@0.15.1:
- resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
+ /regenerator-transform@0.15.2:
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.21.5
+ '@babel/runtime': 7.22.15
dev: false
/regexpu-core@5.3.2:
@@ -8477,7 +8378,7 @@ packages:
/rehype-raw@6.1.1:
resolution: {integrity: sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 2.3.5
hast-util-raw: 7.2.3
unified: 10.1.2
dev: false
@@ -8498,7 +8399,7 @@ packages:
/remark-directive@2.0.1:
resolution: {integrity: sha512-oosbsUAkU/qmUE78anLaJePnPis4ihsE7Agp0T/oqTzvTea8pOiaYEtfInU/+xMOVTS9PN5AhGOiaIVe4GD8gw==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-directive: 2.2.4
micromark-extension-directive: 2.2.1
unified: 10.1.2
@@ -8517,7 +8418,7 @@ packages:
/remark-gfm@3.0.1:
resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-gfm: 2.0.2
micromark-extension-gfm: 2.0.3
unified: 10.1.2
@@ -8537,7 +8438,7 @@ packages:
/remark-parse@10.0.2:
resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-from-markdown: 1.3.1
unified: 10.1.2
transitivePeerDependencies:
@@ -8547,8 +8448,8 @@ packages:
/remark-rehype@10.1.0:
resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
dependencies:
- '@types/hast': 2.3.4
- '@types/mdast': 3.0.11
+ '@types/hast': 2.3.5
+ '@types/mdast': 3.0.12
mdast-util-to-hast: 12.3.0
unified: 10.1.2
dev: false
@@ -8596,6 +8497,7 @@ packages:
is-core-module: 2.13.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
+ dev: false
/responselike@3.0.0:
resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
@@ -8612,6 +8514,7 @@ packages:
/reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ dev: false
/rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
@@ -8620,8 +8523,8 @@ packages:
glob: 7.2.3
dev: false
- /robust-predicates@3.0.1:
- resolution: {integrity: sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==}
+ /robust-predicates@3.0.2:
+ resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
dev: false
/rome@12.1.3:
@@ -8649,7 +8552,7 @@ packages:
dependencies:
escalade: 3.1.1
picocolors: 1.0.0
- postcss: 8.4.27
+ postcss: 8.4.29
strip-json-comments: 3.1.1
dev: false
@@ -8657,6 +8560,7 @@ packages:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
+ dev: false
/rw@1.3.3:
resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
@@ -8665,7 +8569,7 @@ packages:
/rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
dependencies:
- tslib: 2.5.0
+ tslib: 2.6.2
dev: false
/sade@1.8.1:
@@ -8699,29 +8603,33 @@ packages:
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
engines: {node: '>= 8.9.0'}
dependencies:
- '@types/json-schema': 7.0.11
+ '@types/json-schema': 7.0.12
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
dev: false
- /schema-utils@3.1.2:
- resolution: {integrity: sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==}
+ /schema-utils@3.3.0:
+ resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/json-schema': 7.0.11
+ '@types/json-schema': 7.0.12
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils@4.0.1:
- resolution: {integrity: sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==}
+ /schema-utils@4.2.0:
+ resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
engines: {node: '>= 12.13.0'}
dependencies:
- '@types/json-schema': 7.0.11
+ '@types/json-schema': 7.0.12
ajv: 8.12.0
ajv-formats: 2.1.1(ajv@8.12.0)
ajv-keywords: 5.1.0(ajv@8.12.0)
dev: false
+ /search-insights@2.8.2:
+ resolution: {integrity: sha512-PxA9M5Q2bpBelVvJ3oDZR8nuY00Z6qwOxL53wNpgzV28M/D6u9WUbImDckjLSILBF8F1hn/mgyuUaOPtjow4Qw==}
+ dev: false
+
/section-matter@1.0.0:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
engines: {node: '>=4'}
@@ -8745,16 +8653,16 @@ packages:
resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==}
engines: {node: '>=12'}
dependencies:
- semver: 7.5.1
+ semver: 7.5.4
dev: false
- /semver@6.3.0:
- resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
+ /semver@6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
dev: false
- /semver@7.5.1:
- resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==}
+ /semver@7.5.4:
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -8886,13 +8794,13 @@ packages:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
dev: false
- /sirv@1.0.19:
- resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
+ /sirv@2.0.3:
+ resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==}
engines: {node: '>= 10'}
dependencies:
- '@polka/url': 1.0.0-next.21
+ '@polka/url': 1.0.0-next.23
mrmime: 1.0.1
- totalist: 1.1.0
+ totalist: 3.0.1
dev: false
/sisteransi@1.0.5:
@@ -8936,6 +8844,7 @@ packages:
/source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
+ dev: false
/source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
@@ -9001,8 +8910,8 @@ packages:
engines: {node: '>= 0.8'}
dev: false
- /std-env@3.3.3:
- resolution: {integrity: sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg==}
+ /std-env@3.4.3:
+ resolution: {integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q==}
dev: false
/string-width@4.2.3:
@@ -9020,7 +8929,7 @@ packages:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.0.1
+ strip-ansi: 7.1.0
dev: false
/string_decoder@1.1.1:
@@ -9058,8 +8967,8 @@ packages:
ansi-regex: 5.0.1
dev: false
- /strip-ansi@7.0.1:
- resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
+ /strip-ansi@7.1.0:
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
@@ -9091,26 +9000,19 @@ packages:
inline-style-parser: 0.1.1
dev: false
- /style-value-types@5.0.0:
- resolution: {integrity: sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==}
- dependencies:
- hey-listen: 1.0.8
- tslib: 2.5.0
- dev: false
-
- /stylehacks@5.1.1(postcss@8.4.27):
+ /stylehacks@5.1.1(postcss@8.4.29):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.5
- postcss: 8.4.27
+ browserslist: 4.21.10
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
dev: false
- /stylis@4.2.0:
- resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
+ /stylis@4.3.0:
+ resolution: {integrity: sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==}
dev: false
/sub-events@1.9.0:
@@ -9130,6 +9032,7 @@ packages:
mz: 2.7.0
pirates: 4.0.6
ts-interface-checker: 0.1.13
+ dev: false
/supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
@@ -9154,6 +9057,7 @@ packages:
/supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
+ dev: false
/svg-parser@2.0.4:
resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
@@ -9173,11 +9077,12 @@ packages:
stable: 0.1.8
dev: false
- /swr@2.2.0(react@18.2.0):
- resolution: {integrity: sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ==}
+ /swr@2.2.2(react@18.2.0):
+ resolution: {integrity: sha512-CbR41AoMD4TQBQw9ic3GTXspgfM9Y8Mdhb5Ob4uIKXhWqnRLItwA5fpGvB7SmSw3+zEjb0PdhiEumtUvYoQ+bQ==}
peerDependencies:
react: ^16.11.0 || ^17.0.0 || ^18.0.0
dependencies:
+ client-only: 0.0.1
react: 18.2.0
use-sync-external-store: 1.2.0(react@18.2.0)
dev: false
@@ -9195,22 +9100,23 @@ packages:
fast-glob: 3.3.1
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.19.1
+ jiti: 1.20.0
lilconfig: 2.1.0
micromatch: 4.0.5
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.27
- postcss-import: 15.1.0(postcss@8.4.27)
- postcss-js: 4.0.1(postcss@8.4.27)
- postcss-load-config: 4.0.1(postcss@8.4.27)
- postcss-nested: 6.0.1(postcss@8.4.27)
+ postcss: 8.4.29
+ postcss-import: 15.1.0(postcss@8.4.29)
+ postcss-js: 4.0.1(postcss@8.4.29)
+ postcss-load-config: 4.0.1(postcss@8.4.29)
+ postcss-nested: 6.0.1(postcss@8.4.29)
postcss-selector-parser: 6.0.13
resolve: 1.22.4
sucrase: 3.34.0
transitivePeerDependencies:
- ts-node
+ dev: false
/tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
@@ -9221,8 +9127,8 @@ packages:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- /terser-webpack-plugin@5.3.8(webpack@5.82.1):
- resolution: {integrity: sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==}
+ /terser-webpack-plugin@5.3.9(webpack@5.88.2):
+ resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -9237,20 +9143,20 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.18
+ '@jridgewell/trace-mapping': 0.3.19
jest-worker: 27.5.1
- schema-utils: 3.1.2
+ schema-utils: 3.3.0
serialize-javascript: 6.0.1
- terser: 5.17.4
- webpack: 5.82.1
+ terser: 5.19.4
+ webpack: 5.88.2
- /terser@5.17.4:
- resolution: {integrity: sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==}
+ /terser@5.19.4:
+ resolution: {integrity: sha512-6p1DjHeuluwxDXcuT9VR8p64klWJKo1ILiy19s6C9+0Bh2+NWTX6nD9EPppiER4ICkHDVB1RkVpin/YW2nQn/g==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- '@jridgewell/source-map': 0.3.3
- acorn: 8.8.2
+ '@jridgewell/source-map': 0.3.5
+ acorn: 8.10.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -9263,11 +9169,13 @@ packages:
engines: {node: '>=0.8'}
dependencies:
thenify: 3.3.1
+ dev: false
/thenify@3.3.1:
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
dependencies:
any-promise: 1.3.0
+ dev: false
/thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
@@ -9291,14 +9199,15 @@ packages:
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
+ dev: false
/toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
dev: false
- /totalist@1.1.0:
- resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==}
+ /totalist@3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
dev: false
@@ -9321,17 +9230,14 @@ packages:
/ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
-
- /tslib@2.5.0:
- resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
dev: false
- /tslib@2.6.1:
- resolution: {integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==}
+ /tslib@2.6.2:
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
dev: false
- /tslog@4.9.0:
- resolution: {integrity: sha512-YEb55YxukbKO0bSAAsd9eSnw6RA0e3jt3cniZ00wj9offySAbp20lBrjOh1OTn11L51r58V4kFy8h7dMPnbpmg==}
+ /tslog@4.9.2:
+ resolution: {integrity: sha512-wBM+LRJoNl34Bdu8mYEFxpvmOUedpNUwMNQB/NcuPIZKwdDde6xLHUev3bBjXQU7gdurX++X/YE7gLH8eXYsiQ==}
engines: {node: '>=16'}
dev: false
@@ -9359,13 +9265,13 @@ packages:
is-typedarray: 1.0.0
dev: false
- /typescript@5.1.6:
- resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
+ /typescript@5.2.2:
+ resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
engines: {node: '>=14.17'}
hasBin: true
- /ua-parser-js@0.7.35:
- resolution: {integrity: sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==}
+ /ua-parser-js@1.0.35:
+ resolution: {integrity: sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==}
dev: false
/unicode-canonical-property-names-ecmascript@2.0.0:
@@ -9394,7 +9300,7 @@ packages:
/unified@10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
@@ -9421,52 +9327,52 @@ packages:
/unist-util-is@5.2.1:
resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
dev: false
/unist-util-position-from-estree@1.1.2:
resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
dev: false
/unist-util-position@4.0.4:
resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
dev: false
/unist-util-remove-position@4.0.2:
resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
unist-util-visit: 4.1.2
dev: false
/unist-util-stringify-position@3.0.3:
resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
dev: false
/unist-util-visit-parents@3.1.1:
resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
unist-util-is: 4.1.0
dev: false
/unist-util-visit-parents@5.1.3:
resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
unist-util-is: 5.2.1
dev: false
/unist-util-visit@2.0.3:
resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
unist-util-is: 4.1.0
unist-util-visit-parents: 3.1.1
dev: false
@@ -9474,7 +9380,7 @@ packages:
/unist-util-visit@4.1.2:
resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
dev: false
@@ -9489,13 +9395,13 @@ packages:
engines: {node: '>= 0.8'}
dev: false
- /update-browserslist-db@1.0.10(browserslist@4.21.5):
- resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
+ /update-browserslist-db@1.0.11(browserslist@4.21.10):
+ resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.10
escalade: 3.1.1
picocolors: 1.0.0
@@ -9514,7 +9420,7 @@ packages:
is-yarn-global: 0.4.1
latest-version: 7.0.0
pupa: 3.1.0
- semver: 7.5.1
+ semver: 7.5.4
semver-diff: 4.0.0
xdg-basedir: 5.1.0
dev: false
@@ -9524,7 +9430,7 @@ packages:
dependencies:
punycode: 2.3.0
- /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.82.1):
+ /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.88.2):
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -9534,26 +9440,11 @@ packages:
file-loader:
optional: true
dependencies:
- file-loader: 6.2.0(webpack@5.82.1)
+ file-loader: 6.2.0(webpack@5.88.2)
loader-utils: 2.0.4
mime-types: 2.1.35
- schema-utils: 3.1.2
- webpack: 5.82.1
- dev: false
-
- /url-search-params-polyfill@8.2.4:
- resolution: {integrity: sha512-6jWpuCn5DD+bUuqQK7yIzhE2lxkrDhxCVAj+STTl0DuBGIr3F1ptaIo14KHlngU1w5XmvhwsmH4wzSyyrZK7Tg==}
- dev: false
-
- /use-breakpoint@3.1.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-zJ2a9sqdiOnsYwjZryOuq+SIDRP2vWsl7iWDUJ7Xid9t29zF1oLZjkEE+uRooPB/98YT+784rCFIvmKhV6VqLg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- peerDependencies:
- react: '>=16.8'
- react-dom: '>=16.8'
- dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ schema-utils: 3.3.0
+ webpack: 5.88.2
dev: false
/use-composed-ref@1.3.0(react@18.2.0):
@@ -9564,7 +9455,7 @@ packages:
react: 18.2.0
dev: false
- /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.18)(react@18.2.0):
+ /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.21)(react@18.2.0):
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
@@ -9573,11 +9464,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /use-latest@1.2.1(@types/react@18.2.18)(react@18.2.0):
+ /use-latest@1.2.1(@types/react@18.2.21)(react@18.2.0):
resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
peerDependencies:
'@types/react': '*'
@@ -9586,9 +9477,9 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.18
+ '@types/react': 18.2.21
react: 18.2.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.18)(react@18.2.0)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.21)(react@18.2.0)
dev: false
/use-sync-external-store@1.2.0(react@18.2.0):
@@ -9601,6 +9492,7 @@ packages:
/util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ dev: false
/utila@0.4.0:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
@@ -9648,21 +9540,21 @@ packages:
/vfile-location@4.1.0:
resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
vfile: 5.3.7
dev: false
/vfile-message@3.1.4:
resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
unist-util-stringify-position: 3.0.3
dev: false
/vfile@5.3.7:
resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.8
is-buffer: 2.0.5
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
@@ -9674,7 +9566,7 @@ packages:
hasBin: true
dependencies:
axios: 0.27.2
- joi: 17.9.2
+ joi: 17.10.1
lodash: 4.17.21
minimist: 1.2.8
rxjs: 7.8.1
@@ -9707,42 +9599,49 @@ packages:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
dev: false
- /webpack-bundle-analyzer@4.8.0:
- resolution: {integrity: sha512-ZzoSBePshOKhr+hd8u6oCkZVwpVaXgpw23ScGLFpR6SjYI7+7iIWYarjN6OEYOfRt8o7ZyZZQk0DuMizJ+LEIg==}
+ /webpack-bundle-analyzer@4.9.1:
+ resolution: {integrity: sha512-jnd6EoYrf9yMxCyYDPj8eutJvtjQNp8PHmni/e/ulydHBWhT5J3menXt3HEkScsu9YqMAcG4CfFjs3rj5pVU1w==}
engines: {node: '>= 10.13.0'}
hasBin: true
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.8.2
+ acorn: 8.10.0
acorn-walk: 8.2.0
- chalk: 4.1.2
commander: 7.2.0
+ escape-string-regexp: 4.0.0
gzip-size: 6.0.0
- lodash: 4.17.21
+ is-plain-object: 5.0.0
+ lodash.debounce: 4.0.8
+ lodash.escape: 4.0.1
+ lodash.flatten: 4.4.0
+ lodash.invokemap: 4.6.0
+ lodash.pullall: 4.2.0
+ lodash.uniqby: 4.7.0
opener: 1.5.2
- sirv: 1.0.19
+ picocolors: 1.0.0
+ sirv: 2.0.3
ws: 7.5.9
transitivePeerDependencies:
- bufferutil
- utf-8-validate
dev: false
- /webpack-dev-middleware@5.3.3(webpack@5.82.1):
+ /webpack-dev-middleware@5.3.3(webpack@5.88.2):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
colorette: 2.0.20
- memfs: 3.5.1
+ memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
- schema-utils: 4.0.1
- webpack: 5.82.1
+ schema-utils: 4.2.0
+ webpack: 5.88.2
dev: false
- /webpack-dev-server@4.15.0(webpack@5.82.1):
- resolution: {integrity: sha512-HmNB5QeSl1KpulTBQ8UT4FPrByYyaLxpJoQ0+s7EvUrMc16m0ZS1sgb1XGqzmgCPk0c9y+aaXxn11tbLzuM7NQ==}
+ /webpack-dev-server@4.15.1(webpack@5.88.2):
+ resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==}
engines: {node: '>= 12.13.0'}
hasBin: true
peerDependencies:
@@ -9755,12 +9654,12 @@ packages:
optional: true
dependencies:
'@types/bonjour': 3.5.10
- '@types/connect-history-api-fallback': 1.5.0
+ '@types/connect-history-api-fallback': 1.5.1
'@types/express': 4.17.17
'@types/serve-index': 1.9.1
- '@types/serve-static': 1.15.1
+ '@types/serve-static': 1.15.2
'@types/sockjs': 0.3.33
- '@types/ws': 8.5.4
+ '@types/ws': 8.5.5
ansi-html-community: 0.0.8
bonjour-service: 1.1.1
chokidar: 3.5.3
@@ -9770,21 +9669,21 @@ packages:
default-gateway: 6.0.3
express: 4.18.2
graceful-fs: 4.2.11
- html-entities: 2.3.3
+ html-entities: 2.4.0
http-proxy-middleware: 2.0.6(@types/express@4.17.17)
- ipaddr.js: 2.0.1
+ ipaddr.js: 2.1.0
launch-editor: 2.6.0
open: 8.4.2
p-retry: 4.6.2
rimraf: 3.0.2
- schema-utils: 4.0.1
+ schema-utils: 4.2.0
selfsigned: 2.1.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.82.1
- webpack-dev-middleware: 5.3.3(webpack@5.82.1)
- ws: 8.13.0
+ webpack: 5.88.2
+ webpack-dev-middleware: 5.3.3(webpack@5.88.2)
+ ws: 8.14.1
transitivePeerDependencies:
- bufferutil
- debug
@@ -9792,8 +9691,8 @@ packages:
- utf-8-validate
dev: false
- /webpack-merge@5.8.0:
- resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
+ /webpack-merge@5.9.0:
+ resolution: {integrity: sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==}
engines: {node: '>=10.0.0'}
dependencies:
clone-deep: 4.0.1
@@ -9803,8 +9702,8 @@ packages:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- /webpack@5.82.1:
- resolution: {integrity: sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==}
+ /webpack@5.88.2:
+ resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -9818,12 +9717,12 @@ packages:
'@webassemblyjs/ast': 1.11.6
'@webassemblyjs/wasm-edit': 1.11.6
'@webassemblyjs/wasm-parser': 1.11.6
- acorn: 8.8.2
- acorn-import-assertions: 1.9.0(acorn@8.8.2)
- browserslist: 4.21.5
+ acorn: 8.10.0
+ acorn-import-assertions: 1.9.0(acorn@8.10.0)
+ browserslist: 4.21.10
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.14.0
- es-module-lexer: 1.2.1
+ enhanced-resolve: 5.15.0
+ es-module-lexer: 1.3.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -9832,9 +9731,9 @@ packages:
loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 3.1.2
+ schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.8(webpack@5.82.1)
+ terser-webpack-plugin: 5.3.9(webpack@5.88.2)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -9842,7 +9741,7 @@ packages:
- esbuild
- uglify-js
- /webpackbar@5.0.2(webpack@5.82.1):
+ /webpackbar@5.0.2(webpack@5.88.2):
resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -9851,8 +9750,8 @@ packages:
chalk: 4.1.2
consola: 2.15.3
pretty-time: 1.1.0
- std-env: 3.3.3
- webpack: 5.82.1
+ std-env: 3.4.3
+ webpack: 5.88.2
dev: false
/websocket-driver@0.7.4:
@@ -9907,11 +9806,12 @@ packages:
dependencies:
ansi-styles: 6.2.1
string-width: 5.1.2
- strip-ansi: 7.0.1
+ strip-ansi: 7.1.0
dev: false
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ dev: false
/write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
@@ -9935,8 +9835,8 @@ packages:
optional: true
dev: false
- /ws@8.13.0:
- resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
+ /ws@8.14.1:
+ resolution: {integrity: sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -9973,9 +9873,10 @@ packages:
engines: {node: '>= 6'}
dev: false
- /yaml@2.3.1:
- resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
+ /yaml@2.3.2:
+ resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==}
engines: {node: '>= 14'}
+ dev: false
/yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
diff --git a/src/components/BatteryCalculator.tsx b/src/components/BatteryCalculator.tsx
deleted file mode 100644
index d83399c4..00000000
--- a/src/components/BatteryCalculator.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import React from "react";
-
-export const BatteryCalculator = (): JSX.Element => {
- return (
-
-
-
Battery Calculator
-
-
-
-
- See All
-
-
-
- );
-};
diff --git a/src/components/Button.tsx b/src/components/Button.tsx
deleted file mode 100644
index 798f9fe2..00000000
--- a/src/components/Button.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from "react";
-
-import { HTMLMotionProps, motion } from "framer-motion";
-
-export const Button = ({ children, ...props }: HTMLMotionProps<"div">) => {
- return (
-
- {children}
-
- );
-};
diff --git a/src/components/ColorMode.tsx b/src/components/ColorMode.tsx
index c7d651ad..ae020458 100644
--- a/src/components/ColorMode.tsx
+++ b/src/components/ColorMode.tsx
@@ -1,13 +1,13 @@
import React from "react";
export interface ColorModeProps {
- children: React.ReactNode;
+ children: React.ReactNode;
}
export const Dark = ({ children }: ColorModeProps): JSX.Element => {
- return {children}
;
+ return {children}
;
};
export const Light = ({ children }: ColorModeProps): JSX.Element => {
- return {children}
;
+ return {children}
;
};
diff --git a/src/components/HardwareComponents.tsx b/src/components/HardwareComponents.tsx
deleted file mode 100644
index e920a53e..00000000
--- a/src/components/HardwareComponents.tsx
+++ /dev/null
@@ -1,274 +0,0 @@
-// import React from 'react';
-// import data from '/docs/hardware/supported/devices.json'
-
-// function checkVersionOverrides(selectedDevice, version, value) {
-
-// var versionOverride = selectedDevice.versionOverrides[version]
-// var device = selectedDevice
-// var objectSegment = value.split('.')
-
-// while (objectSegment.length > 1) {
-// console.log(objectSegment)
-// let test = objectSegment.shift()
-// console.log('test', test, 'og objectSegment', objectSegment)
-// versionOverride = versionOverride[test]
-// device = device[test]
-// }
-// if (versionOverride) {
-// return versionOverride
-// } else return device
-
-// // if (selectedDevice.versionOverrides[version][value]) {
-// // return selectedDevice.versionOverrides[version][value]
-// // } else {
-// // console.log("no", selectedDevice, value, selectedDevice[value])
-// // return selectedDevice[value]
-// // }
-// }
-
-// export const MeshtasticFeatures = ({device, version}): JSX.Element => {
-
-// const selectedDevice = data[device]
-
-// return (
-//
-//
-//
-// Meshtastic Feature
-//
-//
-// Device Support
-//
-//
-//
-//
-//
-// Support Status
-//
-//
-// {checkVersionOverrides(selectedDevice, version, 'supportStatus')}
-//
-//
-//
-//
-// Bluetooth
-//
-//
-// {checkVersionOverrides(selectedDevice, version, "features.bluetoothCapable")}
-//
-//
-//
-//
-// Module - Canned Message
-//
-//
-//
-//
-//
-//
-// Module - External Notification
-//
-//
-// VALUE
-//
-//
-//
-//
-// Module - Range Test
-//
-//
-// VALUE
-//
-//
-//
-//
-// Module - Rotary Encoder
-//
-//
-// VALUE
-//
-//
-//
-//
-// Module - Store and Forward
-//
-//
-// VALUE
-//
-//
-//
-//
-// Module - Telemetry (aka Environmental Measurement)
-//
-//
-// VALUE
-//
-//
-//
-//
-// Router - Always Powered
-//
-//
-// VALUE
-//
-//
-//
-//
-// Router - Solar Powered
-//
-//
-// VALUE
-//
-//
-//
-//
-// WiFi
-//
-//
-// VALUE
-//
-//
-//
-//
-// );
-// };
-
-// export const HardwareSpecifications = ({device, version}): JSX.Element => {
-
-// const selectedDevice = data[device]
-
-// return (
-//
-//
-//
-// Specification
-//
-//
-// Value
-//
-//
-//
-//
-//
-// Bluetooth
-//
-//
-// VALUE
-//
-//
-//
-//
-// Bluetooth Antenna
-//
-//
-// VALUE
-//
-//
-//
-//
-// Chipset
-//
-//
-// VALUE
-//
-//
-//
-//
-// Driver
-//
-//
-// VALUE
-//
-//
-//
-//
-// GPS
-//
-//
-// VALUE
-//
-//
-//
-//
-// Flash
-//
-//
-// VALUE
-//
-//
-//
-//
-// Frequency - 433MHz
-//
-//
-// VALUE
-//
-//
-//
-//
-// Frequency - 868MHz
-//
-//
-// VALUE
-//
-//
-//
-//
-// Frequency - 915MHz
-//
-//
-// VALUE
-//
-//
-//
-//
-// Frequency - 923MHz
-//
-//
-// VALUE
-//
-//
-//
-//
-// LoRa Transceiver
-//
-//
-// VALUE
-//
-//
-//
-//
-// PSRAM
-//
-//
-// VALUE
-//
-//
-//
-//
-// RAM
-//
-//
-// VALUE
-//
-//
-//
-//
-// WiFi
-//
-//
-// VALUE
-//
-//
-//
-//
-// WiFi Antenna
-//
-//
-// VALUE
-//
-//
-//
-//
-// );
-// };
diff --git a/src/components/Modal.tsx b/src/components/Modal.tsx
deleted file mode 100644
index 11e7ee2c..00000000
--- a/src/components/Modal.tsx
+++ /dev/null
@@ -1,49 +0,0 @@
-import React from "react";
-
-import { AnimatePresence, motion } from "framer-motion";
-
-import { Dialog } from "@headlessui/react";
-
-export interface ModalProps {
- open: boolean;
- onClose: () => void;
- children: React.ReactNode;
-}
-
-export const Modal = ({ open, onClose, children }: ModalProps): JSX.Element => {
- return (
-
-
-
-
-
- );
-};
diff --git a/src/components/PageLayout.tsx b/src/components/PageLayout.tsx
index f1f3ecb5..2554bd29 100644
--- a/src/components/PageLayout.tsx
+++ b/src/components/PageLayout.tsx
@@ -3,23 +3,23 @@ import React from "react";
import Layout from "@theme/Layout";
export interface PageLayoutProps {
- title: string;
- description: string;
- children: React.ReactNode;
+ title: string;
+ description: string;
+ children: React.ReactNode;
}
export const PageLayout = ({
- title,
- description,
- children,
+ title,
+ description,
+ children,
}: PageLayoutProps): JSX.Element => {
- return (
-
- {children}
-
- );
+ return (
+
+ {children}
+
+ );
};
export interface ColorModeProps {
- children: React.ReactNode;
+ children: React.ReactNode;
}
diff --git a/src/components/hardware/Badge.tsx b/src/components/hardware/Badge.tsx
deleted file mode 100644
index a12a7c3e..00000000
--- a/src/components/hardware/Badge.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from "react";
-
-export interface BadgeProps {
- name: string;
- color: string;
- icon: React.ReactNode;
-}
-
-export const Badge = ({ name, color, icon }: BadgeProps): JSX.Element => {
- return (
-
- );
-};
diff --git a/src/components/hardware/CardTab.tsx b/src/components/hardware/CardTab.tsx
deleted file mode 100644
index 6b20e2e2..00000000
--- a/src/components/hardware/CardTab.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import React from "react";
-
-import { Tab } from "@headlessui/react";
-
-export interface CardTabProps {
- title: string;
-}
-
-export const CardTab = ({ title }: CardTabProps): JSX.Element => {
- return (
-
- `w-1/3 truncate rounded-md px-3 py-2 text-sm font-medium hover:bg-tertiary ${
- selected ? "bg-secondary shadow-md" : ""
- }`
- }
- >
- {title}
-
- );
-};
diff --git a/src/components/hardware/HardwareCard.tsx b/src/components/hardware/HardwareCard.tsx
deleted file mode 100644
index c5261b24..00000000
--- a/src/components/hardware/HardwareCard.tsx
+++ /dev/null
@@ -1,61 +0,0 @@
-import React from "react";
-
-import { IDevice, Stability } from "../../data/device";
-
-export interface HardwareCardProps {
- device: IDevice;
- setDevice: () => void;
-}
-
-export const HardwareCard = ({
- device,
- setDevice,
-}: HardwareCardProps): JSX.Element => {
- return (
- {
- setDevice();
- }}
- onKeyDown={() => {
- setDevice();
- }}
- >
-
-
-
-
-
- View details for {device.name}
-
-
-
-
-
- {device.name}
-
-
-
-
{Stability[device.misc.Stability]}
-
-
-
-
- );
-};
diff --git a/src/components/hardware/HardwareModal.tsx b/src/components/hardware/HardwareModal.tsx
deleted file mode 100644
index d00c169e..00000000
--- a/src/components/hardware/HardwareModal.tsx
+++ /dev/null
@@ -1,173 +0,0 @@
-import React, { useState } from "react";
-
-import { AnimatePresence, motion } from "framer-motion";
-import { FiBluetooth, FiChevronRight, FiWifi, FiX } from "react-icons/fi";
-import { useBreakpoint } from "use-breakpoint";
-
-import { Tab } from "@headlessui/react";
-import type { IDevice } from "../../data/device";
-
-import { Button } from "../../components/Button";
-import { BREAKPOINTS } from "../../utils/breakpoints";
-import { Modal } from "../Modal";
-import { Badge } from "./Badge";
-import { CardTab } from "./CardTab";
-import { InfoTab } from "./Tabs/InfoTab";
-import { PinoutTab } from "./Tabs/PinoutTab";
-import { PowerTab } from "./Tabs/PowerTab";
-import { VariantSelectButton } from "./VariantSelectButton";
-
-export interface HardwareModal {
- device: IDevice;
- open: boolean;
- close: () => void;
-}
-
-export const HardwareModal = ({
- device,
- open,
- close,
-}: HardwareModal): JSX.Element => {
- const [hideDetails, setHideDetails] = useState(false);
- const { breakpoint } = useBreakpoint(BREAKPOINTS, "md");
-
- return (
-
-
-
-
-
-
-
-
-
-
-
- {
- setHideDetails(!hideDetails);
- }}
- >
-
-
-
-
- {!hideDetails && (
- <>
-
-
-
-
-
- {device.features.BLE && (
- }
- />
- )}
- {device.features.WiFi && (
- }
- />
- )}
-
-
- >
- )}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-};
diff --git a/src/components/hardware/Tabs/InfoTab.tsx b/src/components/hardware/Tabs/InfoTab.tsx
deleted file mode 100644
index 7878667e..00000000
--- a/src/components/hardware/Tabs/InfoTab.tsx
+++ /dev/null
@@ -1,48 +0,0 @@
-import React from "react";
-
-import { Tab } from "@headlessui/react";
-
-import type { IDevice } from "../../../data/device";
-
-export interface InfoTabProps {
- device: IDevice;
-}
-
-export const InfoTab = ({ device }: InfoTabProps): JSX.Element => {
- return (
-
-
-
-
-
- BLE/WiFi Version
-
-
-
- {device.specifications.BLEVersion}
-
- /
-
- {device.specifications.WiFiVersion}
-
-
-
-
-
- BLE/WiFi Antenna
-
-
-
- {device.specifications.BLEAntenna}
-
- /
-
- {device.specifications.WiFiAntenna}
-
-
-
-
-
-
- );
-};
diff --git a/src/components/hardware/Tabs/PinoutTab.tsx b/src/components/hardware/Tabs/PinoutTab.tsx
deleted file mode 100644
index 32d4b35b..00000000
--- a/src/components/hardware/Tabs/PinoutTab.tsx
+++ /dev/null
@@ -1,36 +0,0 @@
-import React from "react";
-
-import { Tab } from "@headlessui/react";
-
-import type { IDevice } from "../../../data/device";
-
-export interface PinoutTabProps {
- device: IDevice;
-}
-
-export const PinoutTab = ({ device }: PinoutTabProps): JSX.Element => {
- return (
-
-
- {[
- device.pinout.slice(0, device.misc.pinoutSplit),
- device.pinout.slice(device.misc.pinoutSplit, device.pinout.length),
- ].map((group, index) => (
-
- {group.map((pin, pinIndex) => (
-
- ))}
-
- ))}
-
-
- );
-};
diff --git a/src/components/hardware/Tabs/PowerTab.tsx b/src/components/hardware/Tabs/PowerTab.tsx
deleted file mode 100644
index aa33fe94..00000000
--- a/src/components/hardware/Tabs/PowerTab.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import React from "react";
-
-import { Tab } from "@headlessui/react";
-
-import type { IDevice } from "../../../data/device";
-
-export interface PowerTabProps {
- device: IDevice;
-}
-
-export const PowerTab = (): JSX.Element => {
- return Content 1 ;
-};
diff --git a/src/components/hardware/VariantSelectButton.tsx b/src/components/hardware/VariantSelectButton.tsx
deleted file mode 100644
index ebb4eed8..00000000
--- a/src/components/hardware/VariantSelectButton.tsx
+++ /dev/null
@@ -1,88 +0,0 @@
-import React, { Fragment, useState } from "react";
-
-import { motion } from "framer-motion";
-import { FiCheck } from "react-icons/fi";
-import { HiSelector } from "react-icons/hi";
-
-import { Listbox, Transition } from "@headlessui/react";
-import type { Variant } from "../../data/device";
-
-export interface VariantSelectButtonProps {
- options: Variant[];
-}
-
-export const VariantSelectButton = ({
- options,
-}: VariantSelectButtonProps): JSX.Element => {
- const [selected, setSelected] = useState(options[options.length - 1]);
-
- return (
-
- {({ open }) => (
- <>
-
-
-
- {selected.name}
-
-
-
-
-
-
-
-
- {options.map((variant, index) => (
-
- `relative cursor-default select-none py-2 pl-3 pr-9 ${
- active ? "bg-secondary" : ""
- }`
- }
- value={variant}
- >
- {({ selected, active }) => (
- <>
-
- {variant.name}
-
-
- {selected ? (
-
-
-
- ) : null}
- >
- )}
-
- ))}
-
-
-
- >
- )}
-
- );
-};
diff --git a/src/components/homepage/SocialCard.tsx b/src/components/homepage/SocialCard.tsx
index 310b68d2..df145aa3 100644
--- a/src/components/homepage/SocialCard.tsx
+++ b/src/components/homepage/SocialCard.tsx
@@ -3,29 +3,29 @@ import React from "react";
import { FiExternalLink } from "react-icons/fi";
export interface SocialCardProps {
- children: React.ReactNode;
- color: string;
- link: string;
+ children: React.ReactNode;
+ color: string;
+ link: string;
}
export const SocialCard = ({
- children,
- color,
- link,
+ children,
+ color,
+ link,
}: SocialCardProps): JSX.Element => {
- return (
-
- );
+ return (
+
+ );
};
diff --git a/src/components/tools/FrequencyCalculator.tsx b/src/components/tools/FrequencyCalculator.tsx
index 82923759..db618ed4 100644
--- a/src/components/tools/FrequencyCalculator.tsx
+++ b/src/components/tools/FrequencyCalculator.tsx
@@ -1,345 +1,345 @@
-import React, { useEffect } from "react";
import { Protobuf, Types } from "@meshtastic/meshtasticjs";
+import React, { useEffect } from "react";
interface Region {
- freq_start: number;
- freq_end: number;
- duty_cycle: number;
- spacing: number;
- power_limit: number;
+ freq_start: number;
+ freq_end: number;
+ duty_cycle: number;
+ spacing: number;
+ power_limit: number;
}
interface Modem {
- bw: number;
- cr: number;
- sf: number;
+ bw: number;
+ cr: number;
+ sf: number;
}
const RegionData = new Map([
- [
- Protobuf.Config_LoRaConfig_RegionCode.US,
- {
- freq_start: 902.0,
- freq_end: 928.0,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 30,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.EU_433,
- {
- freq_start: 433.0,
- freq_end: 434.0,
- duty_cycle: 10,
- spacing: 0,
- power_limit: 12,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.EU_868,
- {
- freq_start: 869.4,
- freq_end: 869.65,
- duty_cycle: 10,
- spacing: 0,
- power_limit: 27,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.CN,
- {
- freq_start: 470.0,
- freq_end: 510.0,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 19,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.JP,
- {
- freq_start: 920.8,
- freq_end: 927.8,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 16,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.ANZ,
- {
- freq_start: 915.0,
- freq_end: 928.0,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 30,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.RU,
- {
- freq_start: 868.7,
- freq_end: 869.2,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 20,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.KR,
- {
- freq_start: 920.0,
- freq_end: 923.0,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 0,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.TW,
- {
- freq_start: 920.0,
- freq_end: 925.0,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 0,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.IN,
- {
- freq_start: 865.0,
- freq_end: 867.0,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 30,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.NZ_865,
- {
- freq_start: 864.0,
- freq_end: 868.0,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 36,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.TH,
- {
- freq_start: 920.0,
- freq_end: 925.0,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 16,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.UA_433,
- {
- freq_start: 433.0,
- freq_end: 434.7,
- duty_cycle: 10,
- spacing: 0,
- power_limit: 10,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.UA_868,
- {
- freq_start: 868.0,
- freq_end: 868.6,
- duty_cycle: 1,
- spacing: 0,
- power_limit: 14,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.LORA_24,
- {
- freq_start: 2400.0,
- freq_end: 2483.5,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 10,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_RegionCode.UNSET,
- {
- freq_start: 902.0,
- freq_end: 928.0,
- duty_cycle: 100,
- spacing: 0,
- power_limit: 30,
- },
- ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.US,
+ {
+ freq_start: 902.0,
+ freq_end: 928.0,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 30,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.EU_433,
+ {
+ freq_start: 433.0,
+ freq_end: 434.0,
+ duty_cycle: 10,
+ spacing: 0,
+ power_limit: 12,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.EU_868,
+ {
+ freq_start: 869.4,
+ freq_end: 869.65,
+ duty_cycle: 10,
+ spacing: 0,
+ power_limit: 27,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.CN,
+ {
+ freq_start: 470.0,
+ freq_end: 510.0,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 19,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.JP,
+ {
+ freq_start: 920.8,
+ freq_end: 927.8,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 16,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.ANZ,
+ {
+ freq_start: 915.0,
+ freq_end: 928.0,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 30,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.RU,
+ {
+ freq_start: 868.7,
+ freq_end: 869.2,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 20,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.KR,
+ {
+ freq_start: 920.0,
+ freq_end: 923.0,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 0,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.TW,
+ {
+ freq_start: 920.0,
+ freq_end: 925.0,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 0,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.IN,
+ {
+ freq_start: 865.0,
+ freq_end: 867.0,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 30,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.NZ_865,
+ {
+ freq_start: 864.0,
+ freq_end: 868.0,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 36,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.TH,
+ {
+ freq_start: 920.0,
+ freq_end: 925.0,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 16,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.UA_433,
+ {
+ freq_start: 433.0,
+ freq_end: 434.7,
+ duty_cycle: 10,
+ spacing: 0,
+ power_limit: 10,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.UA_868,
+ {
+ freq_start: 868.0,
+ freq_end: 868.6,
+ duty_cycle: 1,
+ spacing: 0,
+ power_limit: 14,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.LORA_24,
+ {
+ freq_start: 2400.0,
+ freq_end: 2483.5,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 10,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_RegionCode.UNSET,
+ {
+ freq_start: 902.0,
+ freq_end: 928.0,
+ duty_cycle: 100,
+ spacing: 0,
+ power_limit: 30,
+ },
+ ],
]);
const modemPresets = new Map([
- [
- Protobuf.Config_LoRaConfig_ModemPreset.SHORT_FAST,
- {
- bw: 250,
- cr: 8,
- sf: 7,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_ModemPreset.SHORT_SLOW,
- {
- bw: 250,
- cr: 8,
- sf: 8,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_ModemPreset.MEDIUM_FAST,
- {
- bw: 250,
- cr: 8,
- sf: 9,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_ModemPreset.MEDIUM_SLOW,
- {
- bw: 250,
- cr: 8,
- sf: 10,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_ModemPreset.LONG_FAST,
- {
- bw: 250,
- cr: 8,
- sf: 11,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_ModemPreset.LONG_MODERATE,
- {
- bw: 125,
- cr: 8,
- sf: 11,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_ModemPreset.LONG_SLOW,
- {
- bw: 125,
- cr: 8,
- sf: 12,
- },
- ],
- [
- Protobuf.Config_LoRaConfig_ModemPreset.VERY_LONG_SLOW,
- {
- bw: 62.5,
- cr: 8,
- sf: 12,
- },
- ],
+ [
+ Protobuf.Config_LoRaConfig_ModemPreset.SHORT_FAST,
+ {
+ bw: 250,
+ cr: 8,
+ sf: 7,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_ModemPreset.SHORT_SLOW,
+ {
+ bw: 250,
+ cr: 8,
+ sf: 8,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_ModemPreset.MEDIUM_FAST,
+ {
+ bw: 250,
+ cr: 8,
+ sf: 9,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_ModemPreset.MEDIUM_SLOW,
+ {
+ bw: 250,
+ cr: 8,
+ sf: 10,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_ModemPreset.LONG_FAST,
+ {
+ bw: 250,
+ cr: 8,
+ sf: 11,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_ModemPreset.LONG_MODERATE,
+ {
+ bw: 125,
+ cr: 8,
+ sf: 11,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_ModemPreset.LONG_SLOW,
+ {
+ bw: 125,
+ cr: 8,
+ sf: 12,
+ },
+ ],
+ [
+ Protobuf.Config_LoRaConfig_ModemPreset.VERY_LONG_SLOW,
+ {
+ bw: 62.5,
+ cr: 8,
+ sf: 12,
+ },
+ ],
]);
export const FrequencyCalculator = (): JSX.Element => {
- const [modemPreset, setModemPreset] =
- React.useState(
- Protobuf.Config_LoRaConfig_ModemPreset.LONG_FAST,
- );
- const [region, setRegion] =
- React.useState(
- Protobuf.Config_LoRaConfig_RegionCode.US,
- );
- const [channel, setChannel] = React.useState(
- Types.ChannelNumber.PRIMARY,
- );
- const [numChannels, setNumChannels] = React.useState(0);
- const [channelFrequency, setChannelFrequency] = React.useState(0);
+ const [modemPreset, setModemPreset] =
+ React.useState(
+ Protobuf.Config_LoRaConfig_ModemPreset.LONG_FAST,
+ );
+ const [region, setRegion] =
+ React.useState(
+ Protobuf.Config_LoRaConfig_RegionCode.US,
+ );
+ const [channel, setChannel] = React.useState(
+ Types.ChannelNumber.PRIMARY,
+ );
+ const [numChannels, setNumChannels] = React.useState(0);
+ const [channelFrequency, setChannelFrequency] = React.useState(0);
- useEffect(() => {
- const selectedRegion = RegionData.get(region);
- const selectedModemPreset = modemPresets.get(modemPreset);
- const calculatedNumChannels = Math.floor(
- (selectedRegion.freq_end - selectedRegion.freq_start) /
- (selectedRegion.spacing + selectedModemPreset.bw / 1000),
- );
+ useEffect(() => {
+ const selectedRegion = RegionData.get(region);
+ const selectedModemPreset = modemPresets.get(modemPreset);
+ const calculatedNumChannels = Math.floor(
+ (selectedRegion.freq_end - selectedRegion.freq_start) /
+ (selectedRegion.spacing + selectedModemPreset.bw / 1000),
+ );
- setNumChannels(calculatedNumChannels);
+ setNumChannels(calculatedNumChannels);
- let updatedChannel = channel;
- if (updatedChannel >= calculatedNumChannels) {
- updatedChannel = 0;
- }
+ let updatedChannel = channel;
+ if (updatedChannel >= calculatedNumChannels) {
+ updatedChannel = 0;
+ }
- setChannel(updatedChannel);
+ setChannel(updatedChannel);
- setChannelFrequency(
- selectedRegion.freq_start +
- selectedModemPreset.bw / 2000 +
- updatedChannel * (selectedModemPreset.bw / 1000),
- );
- }, [modemPreset, region, channel]);
+ setChannelFrequency(
+ selectedRegion.freq_start +
+ selectedModemPreset.bw / 2000 +
+ updatedChannel * (selectedModemPreset.bw / 1000),
+ );
+ }, [modemPreset, region, channel]);
- return (
-
-
- Modem Preset:
-
- setModemPreset(
- parseInt(
- e.target.value,
- ) as Protobuf.Config_LoRaConfig_ModemPreset,
- )
- }
- >
- {Array.from(modemPresets.keys()).map((key) => (
-
- {Protobuf.Config_LoRaConfig_ModemPreset[key]}
-
- ))}
-
-
-
- Region:
- setRegion(parseInt(e.target.value))}
- >
- {Array.from(RegionData.keys()).map((key) => (
-
- {Protobuf.Config_LoRaConfig_RegionCode[key]}
-
- ))}
-
-
-
- Channel:
- setChannel(parseInt(e.target.value))}
- >
- {Array.from(Array(numChannels).keys()).map((key) => (
-
- {key + 1}
-
- ))}
-
-
+ return (
+
+
+ Modem Preset:
+
+ setModemPreset(
+ parseInt(
+ e.target.value,
+ ) as Protobuf.Config_LoRaConfig_ModemPreset,
+ )
+ }
+ >
+ {Array.from(modemPresets.keys()).map((key) => (
+
+ {Protobuf.Config_LoRaConfig_ModemPreset[key]}
+
+ ))}
+
+
+
+ Region:
+ setRegion(parseInt(e.target.value))}
+ >
+ {Array.from(RegionData.keys()).map((key) => (
+
+ {Protobuf.Config_LoRaConfig_RegionCode[key]}
+
+ ))}
+
+
+
+ Channel:
+ setChannel(parseInt(e.target.value))}
+ >
+ {Array.from(Array(numChannels).keys()).map((key) => (
+
+ {key + 1}
+
+ ))}
+
+
-
- Number of channels:
-
-
-
- Channel Frequency:
-
-
-
- );
+
+ Number of channels:
+
+
+
+ Channel Frequency:
+
+
+
+ );
};
diff --git a/src/data/device.ts b/src/data/device.ts
deleted file mode 100644
index 590abcd2..00000000
--- a/src/data/device.ts
+++ /dev/null
@@ -1,94 +0,0 @@
-export type DeepPartial = T extends object
- ? {
- [P in keyof T]?: DeepPartial;
- }
- : T;
-
-export enum UseCase {
- Solar = 0,
- Router = 1,
- Portable = 2,
-}
-
-enum PinUsage {
- LoRa = 0,
- GNSS = 1,
-}
-
-export interface Pin {
- offset: {
- x: number;
- y: number;
- };
- name: string;
- label: string;
- usage?: PinUsage;
-}
-
-export type DeviceName = "tbeam" | "techo";
-
-export type BLEVersion = "4.2" | "5.0";
-
-export type AntennaType = "Integrated";
-
-export type Chipset = "ESP32" | "NRF52";
-
-export type Frequency = 433 | 868 | 915 | 923;
-
-export type SerialAdapter = "CP210X" | "CH9102";
-
-export type GNSSModule = "NEO-6M" | "NEO-8M";
-
-export type LORAModule = "SX1276" | "SX1262";
-
-export type Variant = DeepPartial> & { name: string };
-
-export enum Stability {
- Stable = 0,
- Semi = 1,
- Unstable = 2,
- Broken = 3,
-}
-
-export type Module =
- | "cannedMessage"
- | "externalNotification"
- | "rangeTest"
- | "rotaryEncoder"
- | "storeAndForward"
- | "telemetry";
-
-export interface IDevice {
- name: string;
- misc: {
- SuggestedUse: UseCase[];
- Stability: Stability;
- Gradient: string;
- pinoutSplit: number;
- };
- images: {
- Front: string;
- Back: string;
- };
- features: {
- BLE: boolean;
- WiFi: boolean;
- Modules: Module[];
- };
- specifications: {
- BLEVersion?: BLEVersion;
- BLEAntenna?: AntennaType;
- WiFiVersion?: string;
- WiFiAntenna?: AntennaType;
- Chipset: Chipset;
- Driver: SerialAdapter;
- GNSS?: GNSSModule;
- FlashSize: number;
- Frequencies: Frequency[];
- LoRa: LORAModule;
- PSRAM: number;
- RAM?: number;
- };
- pinout: Pin[];
- variants: Variant[];
-}
diff --git a/src/data/devices/heltec.ts b/src/data/devices/heltec.ts
deleted file mode 100644
index 6a241cee..00000000
--- a/src/data/devices/heltec.ts
+++ /dev/null
@@ -1,66 +0,0 @@
-import { IDevice, Stability, UseCase } from "../device";
-
-export const heltec: IDevice = {
- name: "Heltec",
- misc: {
- Stability: Stability.Unstable,
- SuggestedUse: [UseCase.Portable],
- Gradient: "bg-gradient-to-r from-pink-300 via-purple-300 to-indigo-400",
- },
- images: {
- Front: "/img/hardware/heltec-v2.png",
- Back: "",
- },
- features: {
- BLE: true,
- WiFi: true,
- Modules: [
- "cannedMessage",
- "externalNotification",
- "rangeTest",
- "rotaryEncoder",
- "storeAndForward",
- "telemetry",
- ],
- },
- specifications: {
- BLEVersion: "4.2",
- BLEAntenna: "Integrated",
- WiFiVersion: "2.4GHz 802.11 b/g/n WPA/WPA2/WPA2-Enterprise/SPS",
- WiFiAntenna: "Integrated",
- Chipset: "ESP32",
- Driver: "CH9102",
- GNSS: "NEO-6M",
- FlashSize: 4,
- Frequencies: [433, 868, 915, 923],
- LoRa: "SX1262",
- PSRAM: 8,
- RAM: undefined,
- },
- variants: [
- {
- name: "TBeam 0.7",
- misc: {
- Stability: Stability.Unstable,
- },
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.0",
- specifications: {
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.1",
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- },
- },
- ],
-};
diff --git a/src/data/devices/hydra.ts b/src/data/devices/hydra.ts
deleted file mode 100644
index 438eae90..00000000
--- a/src/data/devices/hydra.ts
+++ /dev/null
@@ -1,66 +0,0 @@
-import { IDevice, Stability, UseCase } from "../device";
-
-export const hydra: IDevice = {
- name: "Hydra",
- misc: {
- Stability: Stability.Stable,
- SuggestedUse: [UseCase.Portable],
- Gradient: "bg-gradient-to-r from-indigo-200 via-red-200 to-yellow-100",
- },
- images: {
- Front: "/img/hardware/Hydra-PCB.2.1.svg",
- Back: "",
- },
- features: {
- BLE: true,
- WiFi: true,
- Modules: [
- "cannedMessage",
- "externalNotification",
- "rangeTest",
- "rotaryEncoder",
- "storeAndForward",
- "telemetry",
- ],
- },
- specifications: {
- BLEVersion: "4.2",
- BLEAntenna: "Integrated",
- WiFiVersion: "2.4GHz 802.11 b/g/n WPA/WPA2/WPA2-Enterprise/SPS",
- WiFiAntenna: "Integrated",
- Chipset: "ESP32",
- Driver: "CH9102",
- GNSS: "NEO-6M",
- FlashSize: 4,
- Frequencies: [433, 868, 915, 923],
- LoRa: "SX1262",
- PSRAM: 8,
- RAM: undefined,
- },
- variants: [
- {
- name: "TBeam 0.7",
- misc: {
- Stability: Stability.Unstable,
- },
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.0",
- specifications: {
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.1",
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- },
- },
- ],
-};
diff --git a/src/data/devices/nano_g1.ts b/src/data/devices/nano_g1.ts
deleted file mode 100644
index 02edcfd9..00000000
--- a/src/data/devices/nano_g1.ts
+++ /dev/null
@@ -1,66 +0,0 @@
-import { IDevice, Stability, UseCase } from "../device";
-
-export const nano_g1: IDevice = {
- name: "Nano G1",
- misc: {
- Stability: Stability.Unstable,
- SuggestedUse: [UseCase.Portable],
- Gradient: "bg-gradient-to-r from-green-200 to-green-500",
- },
- images: {
- Front: "/img/hardware/nano_g1_front.svg",
- Back: "/img/hardware/nano_g1_back.svg",
- },
- features: {
- BLE: true,
- WiFi: true,
- Modules: [
- "cannedMessage",
- "externalNotification",
- "rangeTest",
- "rotaryEncoder",
- "storeAndForward",
- "telemetry",
- ],
- },
- specifications: {
- BLEVersion: "4.2",
- BLEAntenna: "Integrated",
- WiFiVersion: "2.4GHz 802.11 b/g/n WPA/WPA2/WPA2-Enterprise/SPS",
- WiFiAntenna: "Integrated",
- Chipset: "ESP32",
- Driver: "CH9102",
- GNSS: "NEO-6M",
- FlashSize: 4,
- Frequencies: [433, 868, 915, 923],
- LoRa: "SX1262",
- PSRAM: 8,
- RAM: undefined,
- },
- variants: [
- {
- name: "TBeam 0.7",
- misc: {
- Stability: Stability.Unstable,
- },
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.0",
- specifications: {
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.1",
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- },
- },
- ],
-};
diff --git a/src/data/devices/rak19001.ts b/src/data/devices/rak19001.ts
deleted file mode 100644
index 48100e5a..00000000
--- a/src/data/devices/rak19001.ts
+++ /dev/null
@@ -1,66 +0,0 @@
-import { IDevice, Stability, UseCase } from "../device";
-
-export const rak19001: IDevice = {
- name: "WisBlock 19001",
- misc: {
- Stability: Stability.Stable,
- SuggestedUse: [UseCase.Portable],
- Gradient: "bg-gradient-to-r from-indigo-300 to-purple-400",
- },
- images: {
- Front: "/img/hardware/rak/RAK19001.png",
- Back: "",
- },
- features: {
- BLE: true,
- WiFi: true,
- Modules: [
- "cannedMessage",
- "externalNotification",
- "rangeTest",
- "rotaryEncoder",
- "storeAndForward",
- "telemetry",
- ],
- },
- specifications: {
- BLEVersion: "4.2",
- BLEAntenna: "Integrated",
- WiFiVersion: "2.4GHz 802.11 b/g/n WPA/WPA2/WPA2-Enterprise/SPS",
- WiFiAntenna: "Integrated",
- Chipset: "ESP32",
- Driver: "CH9102",
- GNSS: "NEO-6M",
- FlashSize: 4,
- Frequencies: [433, 868, 915, 923],
- LoRa: "SX1262",
- PSRAM: 8,
- RAM: undefined,
- },
- variants: [
- {
- name: "TBeam 0.7",
- misc: {
- Stability: Stability.Unstable,
- },
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.0",
- specifications: {
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.1",
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- },
- },
- ],
-};
diff --git a/src/data/devices/rak19003.ts b/src/data/devices/rak19003.ts
deleted file mode 100644
index fc88835e..00000000
--- a/src/data/devices/rak19003.ts
+++ /dev/null
@@ -1,66 +0,0 @@
-import { IDevice, Stability, UseCase } from "../device";
-
-export const rak19003: IDevice = {
- name: "WisBlock 19003",
- misc: {
- Stability: Stability.Stable,
- SuggestedUse: [UseCase.Portable],
- Gradient: "bg-gradient-to-b from-orange-500 to-yellow-300",
- },
- images: {
- Front: "/img/hardware/rak/RAK19003.png",
- Back: "",
- },
- features: {
- BLE: true,
- WiFi: true,
- Modules: [
- "cannedMessage",
- "externalNotification",
- "rangeTest",
- "rotaryEncoder",
- "storeAndForward",
- "telemetry",
- ],
- },
- specifications: {
- BLEVersion: "4.2",
- BLEAntenna: "Integrated",
- WiFiVersion: "2.4GHz 802.11 b/g/n WPA/WPA2/WPA2-Enterprise/SPS",
- WiFiAntenna: "Integrated",
- Chipset: "ESP32",
- Driver: "CH9102",
- GNSS: "NEO-6M",
- FlashSize: 4,
- Frequencies: [433, 868, 915, 923],
- LoRa: "SX1262",
- PSRAM: 8,
- RAM: undefined,
- },
- variants: [
- {
- name: "TBeam 0.7",
- misc: {
- Stability: Stability.Unstable,
- },
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.0",
- specifications: {
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.1",
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- },
- },
- ],
-};
diff --git a/src/data/devices/tbeam.ts b/src/data/devices/tbeam.ts
deleted file mode 100644
index f74d19ed..00000000
--- a/src/data/devices/tbeam.ts
+++ /dev/null
@@ -1,277 +0,0 @@
-import { IDevice, Stability, UseCase } from "../device";
-
-export const tbeam: IDevice = {
- name: "T-Beam",
- misc: {
- Stability: Stability.Stable,
- SuggestedUse: [UseCase.Portable],
- Gradient: "bg-gradient-to-r from-pink-500 via-red-500 to-yellow-500",
- pinoutSplit: 13,
- },
- images: {
- Front: "/img/hardware/tbeam-v1.1.svg",
- Back: "",
- },
- features: {
- BLE: true,
- WiFi: true,
- Modules: [
- "cannedMessage",
- "externalNotification",
- "rangeTest",
- "rotaryEncoder",
- "storeAndForward",
- "telemetry",
- ],
- },
- specifications: {
- BLEVersion: "4.2",
- BLEAntenna: "Integrated",
- WiFiVersion: "2.4GHz 802.11 b/g/n WPA/WPA2/WPA2-Enterprise/SPS",
- WiFiAntenna: "Integrated",
- Chipset: "ESP32",
- Driver: "CH9102",
- GNSS: "NEO-6M",
- FlashSize: 4,
- Frequencies: [433, 868, 915, 923],
- LoRa: "SX1262",
- PSRAM: 8,
- RAM: undefined,
- },
- variants: [
- {
- name: "TBeam 0.7",
- misc: {
- Stability: Stability.Unstable,
- },
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.0",
- specifications: {
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.1",
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- },
- },
- ],
- pinout: [
- {
- label: "VP",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "VN",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "RST",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "15",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "35",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "32",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "33",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "25",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "14",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "13",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "2",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "GND",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "5V",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "TX",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "RX",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "23",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "4",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "0",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "GND",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "3V3",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "GND",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "22",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "21",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "3.3V",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "LoRa2",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- {
- label: "LoRa1",
- name: "IO1",
- offset: {
- x: 5,
- y: 5,
- },
- },
- ],
-};
diff --git a/src/data/devices/techo.ts b/src/data/devices/techo.ts
deleted file mode 100644
index 0666b345..00000000
--- a/src/data/devices/techo.ts
+++ /dev/null
@@ -1,66 +0,0 @@
-import { IDevice, Stability, UseCase } from "../device";
-
-export const techo: IDevice = {
- name: "T-Echo",
- misc: {
- Stability: Stability.Semi,
- SuggestedUse: [UseCase.Portable],
- Gradient: "bg-gradient-to-r from-gray-700 via-gray-900 to-black",
- },
- images: {
- Front: "/img/hardware/t-echo-lilygo.jpg",
- Back: "",
- },
- features: {
- BLE: true,
- WiFi: true,
- Modules: [
- "cannedMessage",
- "externalNotification",
- "rangeTest",
- "rotaryEncoder",
- "storeAndForward",
- "telemetry",
- ],
- },
- specifications: {
- BLEVersion: "4.2",
- BLEAntenna: "Integrated",
- WiFiVersion: "2.4GHz 802.11 b/g/n WPA/WPA2/WPA2-Enterprise/SPS",
- WiFiAntenna: "Integrated",
- Chipset: "ESP32",
- Driver: "CH9102",
- GNSS: "NEO-6M",
- FlashSize: 4,
- Frequencies: [433, 868, 915, 923],
- LoRa: "SX1262",
- PSRAM: 8,
- RAM: undefined,
- },
- variants: [
- {
- name: "TBeam 0.7",
- misc: {
- Stability: Stability.Unstable,
- },
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.0",
- specifications: {
- Frequencies: [868, 915],
- },
- },
- {
- name: "TBeam 1.1",
- specifications: {
- Driver: "CP210X",
- GNSS: "NEO-6M",
- },
- },
- ],
-};
diff --git a/src/data/region.ts b/src/data/region.ts
deleted file mode 100644
index f8ac51a7..00000000
--- a/src/data/region.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-export interface IRegion {
- name: string;
- freqStart: number;
- freqEnd: number;
- dutyCycle: number;
- spacing: number;
- powerLimit: number;
- audioPermitted: boolean;
- frequencySwitching: boolean;
- wideLora: boolean;
-}
diff --git a/src/data/regions/anz.ts b/src/data/regions/anz.ts
deleted file mode 100644
index 530388e4..00000000
--- a/src/data/regions/anz.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const ANZ: IRegion = {
- name: "ANZ",
- freqStart: 915.0,
- freqEnd: 928.0,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 30,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/cn.ts b/src/data/regions/cn.ts
deleted file mode 100644
index b2a26450..00000000
--- a/src/data/regions/cn.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const CN: IRegion = {
- name: "CN",
- freqStart: 470.0,
- freqEnd: 510.0,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 19,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/eu_433.ts b/src/data/regions/eu_433.ts
deleted file mode 100644
index 69aca39c..00000000
--- a/src/data/regions/eu_433.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const EU_433: IRegion = {
- name: "EU_433",
- freqStart: 433.0,
- freqEnd: 434.0,
- dutyCycle: 10,
- spacing: 0,
- powerLimit: 12,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/eu_868.ts b/src/data/regions/eu_868.ts
deleted file mode 100644
index 42b3e916..00000000
--- a/src/data/regions/eu_868.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const EU_868: IRegion = {
- name: "EU_868",
- freqStart: 869.4,
- freqEnd: 869.65,
- dutyCycle: 10,
- spacing: 0,
- powerLimit: 27,
- audioPermitted: false,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/in.ts b/src/data/regions/in.ts
deleted file mode 100644
index 822f8f04..00000000
--- a/src/data/regions/in.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const IN: IRegion = {
- name: "IN",
- freqStart: 865.0,
- freqEnd: 867.0,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 30,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/jp.ts b/src/data/regions/jp.ts
deleted file mode 100644
index 9fe848f4..00000000
--- a/src/data/regions/jp.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const JP: IRegion = {
- name: "JP",
- freqStart: 920.8,
- freqEnd: 927.8,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 16,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/kr.ts b/src/data/regions/kr.ts
deleted file mode 100644
index 3a294977..00000000
--- a/src/data/regions/kr.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const KR: IRegion = {
- name: "KR",
- freqStart: 920.0,
- freqEnd: 925.0,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 0,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/lora_24.ts b/src/data/regions/lora_24.ts
deleted file mode 100644
index 84a06179..00000000
--- a/src/data/regions/lora_24.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const LORA_24: IRegion = {
- name: "LORA_24",
- freqStart: 2400.0,
- freqEnd: 2483.5,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 10,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: true,
-};
diff --git a/src/data/regions/nz_865.ts b/src/data/regions/nz_865.ts
deleted file mode 100644
index e3ae353d..00000000
--- a/src/data/regions/nz_865.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const NZ_865: IRegion = {
- name: "NZ_865",
- freqStart: 864.0,
- freqEnd: 868.0,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 36,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/ru.ts b/src/data/regions/ru.ts
deleted file mode 100644
index 954df39d..00000000
--- a/src/data/regions/ru.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const RU: IRegion = {
- name: "RU",
- freqStart: 868.7,
- freqEnd: 869.2,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 20,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/th.ts b/src/data/regions/th.ts
deleted file mode 100644
index d6cb0511..00000000
--- a/src/data/regions/th.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const TH: IRegion = {
- name: "TH",
- freqStart: 920.0,
- freqEnd: 925.0,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 16,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/tw.ts b/src/data/regions/tw.ts
deleted file mode 100644
index e2c6497b..00000000
--- a/src/data/regions/tw.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const TW: IRegion = {
- name: "TW",
- freqStart: 920.0,
- freqEnd: 925.0,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 0,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/ua_433.ts b/src/data/regions/ua_433.ts
deleted file mode 100644
index fdff6ede..00000000
--- a/src/data/regions/ua_433.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const UA_433: IRegion = {
- name: "UA_433",
- freqStart: 433.0,
- freqEnd: 434.7,
- dutyCycle: 10,
- spacing: 0,
- powerLimit: 10,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/ua_868.ts b/src/data/regions/ua_868.ts
deleted file mode 100644
index 88b47287..00000000
--- a/src/data/regions/ua_868.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const UA_868: IRegion = {
- name: "UA_868",
- freqStart: 868.0,
- freqEnd: 868.6,
- dutyCycle: 1,
- spacing: 0,
- powerLimit: 14,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/unset.ts b/src/data/regions/unset.ts
deleted file mode 100644
index 119ea6e0..00000000
--- a/src/data/regions/unset.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const UNSET: IRegion = {
- name: "UNSET",
- freqStart: 902.0,
- freqEnd: 928.0,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 30,
- audioPermitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/data/regions/us.ts b/src/data/regions/us.ts
deleted file mode 100644
index 56d538f2..00000000
--- a/src/data/regions/us.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { IRegion } from "../region";
-
-export const US: IRegion = {
- name: "US",
- freqStart: 902.0,
- freqEnd: 928.0,
- dutyCycle: 100,
- spacing: 0,
- powerLimit: 30,
- audioPrmitted: true,
- frequencySwitching: false,
- wideLora: false,
-};
diff --git a/src/hooks/useFilteredNetworks.tsx b/src/hooks/useFilteredNetworks.tsx
deleted file mode 100644
index 1ddf7864..00000000
--- a/src/hooks/useFilteredNetworks.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import React from "react";
-
-import { Showcase } from "../utils/apiTypes";
-import { useSelectedTags } from "./useSelectedTags";
-
-const filterNetworks = (
- showcaseNetworks: Showcase[],
- selectedTags: string[],
-) => {
- if (selectedTags.length === 0) {
- return showcaseNetworks;
- }
- return showcaseNetworks.filter((showcaseNetwork) => {
- if (showcaseNetwork.tags.length === 0) {
- return false;
- }
- return selectedTags.every((queryTag) =>
- showcaseNetwork.tags.find((searchTag) => searchTag.label === queryTag),
- );
- });
-};
-
-export const useFilteredNetworks = (networks: Showcase[]) => {
- const selectedTags = useSelectedTags();
- return React.useMemo(
- () => filterNetworks(networks, selectedTags),
- [selectedTags],
- );
-};
diff --git a/src/hooks/useSelectedTags.tsx b/src/hooks/useSelectedTags.tsx
deleted file mode 100644
index 8b387ae1..00000000
--- a/src/hooks/useSelectedTags.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from "react";
-
-import { useLocation } from "@docusaurus/router";
-
-import { readSearchTags } from "../pages/showcase/_components/TagSelect";
-
-export const useSelectedTags = () => {
- const location = useLocation();
- const [selectedTags, setSelectedTags] = React.useState([]);
- React.useEffect(() => {
- const tags = readSearchTags(location.search);
- setSelectedTags(tags);
- }, [location]);
-
- return selectedTags;
-};
diff --git a/src/pages/2.0/index.tsx b/src/pages/2.0/index.tsx
deleted file mode 100644
index 438273f9..00000000
--- a/src/pages/2.0/index.tsx
+++ /dev/null
@@ -1,458 +0,0 @@
-import React from "react";
-
-import { FiTwitter } from "react-icons/fi";
-
-import { ChevronRightIcon } from "@heroicons/react/20/solid";
-import Layout from "@theme/Layout";
-import { Dark, Light } from "../../components/ColorMode";
-
-const TwoPointZero = (): JSX.Element => {
- const stats = [
- { label: "Active Nodes", value: "A Lot!" },
- { label: "Community Members", value: "4000+" },
- { label: "Firmware Commits", value: "4900+" },
- { label: "Community Donations", value: "$5700+" },
- ];
- const logos = [
- {
- name: "Vercel",
- url: "/2.0/vercel-logotype-dark.svg",
- },
- {
- name: "Cloudflare",
- url: "/2.0/CF_logo_horizontal_blktype.svg",
- },
- {
- name: "RAK Wireless",
- url: "/2.0/RAK-blue-main.svg",
- },
- {
- name: "Open Collective",
- url: "/2.0/opencollectivelogo.svg",
- },
- {
- name: "LILYGO",
- url: "/2.0/LILYGO.png",
- },
- {
- name: "Discord",
- url: "/2.0/discord.svg",
- },
- ];
- return (
-
-
-
- {/* Hero section */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Meshtastic 2.0 🎉🎉🎉
-
-
- After 9 months in the making, we present to you the next
- milestone for the Meshtastic project.
-
-
-
-
- As a part of the launch event, we are running a number of
- giveaways, so jump in and win some prizes.
-
-
-
-
-
-
-
-
-
-
- {/* Testimonial/stats section */}
-
-
-
-
-
- {/* Testimonial card*/}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Meshtastic is the neatest open source project I've
- ever seen!
-
-
-
-
-
-
-
-
-
-
-
- {/* Content area */}
-
-
- A brief overview of all the changes and improvements
-
-
-
Monumental stuff!
-
-
- Completely new LoRA band plan with faster messaging
-
-
Smarter and more reliable mesh routing
-
- Unlimited nodes* (80 Connected at a time, oldest node
- will be removed when a new node joins the mesh)
-
-
- New messaging additions: waypoints, reactions
- (tap-backs), and telemetry
-
-
- Improvements for Canned Messages module and CardKB
- messaging for stand alone communicator devices
-
-
Sensor, Screen, and Input device auto-detection
-
New devices supported (6 new targets!)
-
- Added over the air bluetooth updates for NRF devices
- (RAK-4631)
-
-
Ethernet support via RAK-13800
-
- Compass improvements for larger screens and
- customizations
-
-
-
Nerd stuff!
-
-
New filesystem for ESP32 (LittleFS)
-
- Upgraded Arduino framework for both NRF52 and ESP32
-
-
New bluetooth stack for ESP32 (NimBLE)
-
Unified GPS stack now using NMEA
-
Support for more I2C sensors
-
Support for ATECCA608B Cryptographic Coprocessor
-
More Serial module I/O modes
-
JSON messages over MQTT
-
- Device codebase refactored and optimized in many areas
-
-
- Completely restructured protobufs and configuration
-
-
-
-
-
- {/* Stats section */}
-
-
- {stats.map((stat) => (
-
-
- {stat.label}
-
-
- {stat.value}
-
-
- ))}
-
-
-
-
-
-
- {/* Logo cloud section */}
-
-
-
-
-
- All made possible by the amazing companies that support us.
-
-
- Running a project of this scale is no easy feat, without the
- generosity of many of our vendors and providers, none of
- this would be possible.
-
-
-
- {logos.map((logo) => (
-
-
-
- ))}
-
-
-
-
-
- {/* CTA section */}
-
-
-
-
-
-
-
-
- Congratulations to the winners!
-
-
-
-
-
-
-
-
-
- );
-};
-
-export default TwoPointZero;
diff --git a/src/pages/credits/_components/Avatar.tsx b/src/pages/credits/_components/Avatar.tsx
deleted file mode 100644
index 6ec6b32e..00000000
--- a/src/pages/credits/_components/Avatar.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from "react";
-
-export interface avatarProps {
- imgUrl: string;
- name?: string;
- userName?: string;
- description?: string;
-}
-
-export interface avatarLayoutProps {
- list: list[];
-}
-
-export const Avatar = ({
- imgUrl,
- name,
- description,
-}: avatarProps): JSX.Element => {
- return (
-
-
-
-
-
-
{name}
-
{description}
-
-
-
-
- );
-};
-
-export const AvatarLayout = ({ list }: avatarLayoutProps): JSX.Element => {
- return (
-
-
- {list.map(() => {
- return
;
- })}
-
-
- );
-};
diff --git a/src/pages/credits/index.tsx b/src/pages/credits/index.tsx
index 6dd0fc25..c9e1fecd 100644
--- a/src/pages/credits/index.tsx
+++ b/src/pages/credits/index.tsx
@@ -1,165 +1,112 @@
-import React from "react";
-import Layout from "@theme/Layout";
import Link from "@docusaurus/Link";
-
-import { AvatarLayout } from "./_components/Avatar";
+import Layout from "@theme/Layout";
+import React from "react";
const Credits = (): JSX.Element => {
- const partnerLogos = [
- {
- name: "Vercel",
- url: "/2.0/vercel-logotype-dark.svg",
- },
- {
- name: "Cloudflare",
- url: "/2.0/CF_logo_horizontal_blktype.svg",
- },
- {
- name: "RAK Wireless",
- url: "/2.0/RAK-blue-main.svg",
- },
- {
- name: "Open Collective",
- url: "/2.0/opencollectivelogo.svg",
- },
- {
- name: "LILYGO",
- url: "/2.0/LILYGO.png",
- },
- {
- name: "Discord",
- url: "/2.0/discord.svg",
- },
- ];
- return (
-
-
-
-
Credits
-
- Meshtastic is community driven. Thousands of hours have been donated
- by volunteers who want to develop this amazing project. Whether
- you've submitted a pull request or triaged a bug in our
- Discord/Forum. You've made Meshtastic possible. Thank you for your
- contributions.
-
-
- We would also like to recognize those who have donated financially
- to the project. As Meshtastic has grown, we've aquired some ongoing
- costs to keep the project running. Thank you for your generous
- donations.
-
-
-
-
Fiscal Sponsors
-
- We have partnered with both the{" "}
-
- Open Collective
- {" "}
- and the{" "}
-
- Open Source Collective
- {" "}
- to help us with a fiscal management framework and banking needs.
- They help support over three thousand open source projects including
- the PHP Foundation, F-Droid, Sonarr, LinuxServer and DarkReader. We
- are in good hands and good company.
-
-
- As with everything we do here, Open Collective provides a fully
- transparent framework for our budget and expenses. You can see what
- we’re bringing in, who is spending money and where that money is
- going{" "}
-
- here
-
- .
-
-
- In addition to our partnership with Open Collective and Open Source
- Collective, we have also been approved into the{" "}
-
- GitHub Sponsors
- {" "}
- program where we can set fundraising goals with GitHub.
-
-
- All donations made through GitHub will be deposited to our account
- with the Open Source Collective and managed by the Open Collective.
- This means we have a single place to monitor and maintain
- transparency of our finances.
-
-
If you are able, please contribute to this amazing project.
-
-
- Sponsor Meshtastic
-
-
-
- Open Collective Donations
- {/*Open Collective Donations*/}
-
-
-
- GitHub Sponsor Donations
- {/*GitHub Sponsor Donations*/}
-
-
-
-
-
Partnerships
-
- {partnerLogos.map((logo) => (
-
-
-
- ))}
-
-
-
-
Contributors
-
- Literally thousands of hours have gone into creating, maintaining,
- and improving Meshtastic. Without our contributors none of this
- would be possible. Thank you for donating the time for each and
- every commit, issue, and pull request.
-
- {/*GitHub Organization Contributors*/}
-
-
- {/*Admin Bios*/}
-
-
-
- );
+ return (
+
+
+
+
Credits
+
+ Meshtastic is community driven. Thousands of hours have been donated
+ by volunteers who want to develop this amazing project. Whether
+ you've submitted a pull request or triaged a bug in our
+ Discord/Forum. You've made Meshtastic possible. Thank you for your
+ contributions.
+
+
+ We would also like to recognize those who have donated financially
+ to the project. As Meshtastic has grown, we've aquired some ongoing
+ costs to keep the project running. Thank you for your generous
+ donations.
+
+
+
+
Fiscal Sponsors
+
+ We have partnered with both the{" "}
+
+ Open Collective
+ {" "}
+ and the{" "}
+
+ Open Source Collective
+ {" "}
+ to help us with a fiscal management framework and banking needs.
+ They help support over three thousand open source projects including
+ the PHP Foundation, F-Droid, Sonarr, LinuxServer and DarkReader. We
+ are in good hands and good company.
+
+
+ As with everything we do here, Open Collective provides a fully
+ transparent framework for our budget and expenses. You can see what
+ we’re bringing in, who is spending money and where that money is
+ going{" "}
+
+ here
+
+ .
+
+
+ In addition to our partnership with Open Collective and Open Source
+ Collective, we have also been approved into the{" "}
+
+ GitHub Sponsors
+ {" "}
+ program where we can set fundraising goals with GitHub.
+
+
+ All donations made through GitHub will be deposited to our account
+ with the Open Source Collective and managed by the Open Collective.
+ This means we have a single place to monitor and maintain
+ transparency of our finances.
+
+
If you are able, please contribute to this amazing project.
+
+
+ Sponsor Meshtastic
+
+
+
+
+
Contributors
+
+ Literally thousands of hours have gone into creating, maintaining,
+ and improving Meshtastic. Without our contributors none of this
+ would be possible. Thank you for donating the time for each and
+ every commit, issue, and pull request.
+
+
+
+
+ );
};
export default Credits;
diff --git a/src/pages/downloads/_components/DownloadCard.tsx b/src/pages/downloads/_components/DownloadCard.tsx
deleted file mode 100644
index 05e9095a..00000000
--- a/src/pages/downloads/_components/DownloadCard.tsx
+++ /dev/null
@@ -1,146 +0,0 @@
-import React from "react";
-
-export interface downloadCardProps {
- client: string;
- imgUrl: string;
- url: string;
- imgUrl2: string;
- url2: string;
- notes: string;
- buttonText: string;
-}
-
-export const DownloadCard = ({
- client,
- imgUrl,
- url,
- imgUrl2,
- url2,
- notes,
- buttonText,
-}: downloadCardProps): JSX.Element => {
- return (
-
-
-
{client}
-
-
-
{notes ? notes : null}
-
- );
-};
-
-export const PlaceholderCard = (): JSX.Element => {
- return (
-
- );
-};
diff --git a/src/pages/downloads/_components/FirmwareCard.tsx b/src/pages/downloads/_components/FirmwareCard.tsx
index 654e7e70..fb76cdfa 100644
--- a/src/pages/downloads/_components/FirmwareCard.tsx
+++ b/src/pages/downloads/_components/FirmwareCard.tsx
@@ -3,149 +3,77 @@ import React from "react";
import { DeviceFirmwareResource } from "../../../utils/apiTypes";
export interface releaseCardProps {
- variant: string;
- description: string;
- release?: DeviceFirmwareResource[];
+ variant: string;
+ description: string;
+ release?: DeviceFirmwareResource[];
}
export const FirmwareCard = ({
- variant,
- description,
- release,
+ variant,
+ description,
+ release,
}: releaseCardProps): JSX.Element => {
- return (
-
-
-
-
-
-
- Older Versions
- {release.slice(1, 6).map((release) => {
- return (
-
- );
- })}
-
-
- {release?.length ? (
- <>
-
- Download {variant}
-
- >
- ) : (
-
- Loading...
-
- )}
-
-
- );
+ return (
+
+
+
+
+
+
+ Older Versions
+ {release.slice(1, 6).map((release) => {
+ return (
+
+ );
+ })}
+
+
+ {release?.length ? (
+ <>
+
+ Download {variant}
+
+ >
+ ) : (
+
+ Loading...
+
+ )}
+
+
+ );
};
export const PlaceholderFirmwareCard = (): JSX.Element => {
- return (
-
- );
+ return (
+
+ );
};
diff --git a/src/pages/downloads/_components/HeaderText.tsx b/src/pages/downloads/_components/HeaderText.tsx
deleted file mode 100644
index 13cdfbb6..00000000
--- a/src/pages/downloads/_components/HeaderText.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from "react";
-
-export const HeaderText = ({ type, text, link }): JSX.Element => {
- const Header = type;
-
- return (
-
- {text}
- {link && (
-
- )}
-
- );
-};
diff --git a/src/pages/downloads/index.tsx b/src/pages/downloads/index.tsx
index a45e439b..ee015390 100644
--- a/src/pages/downloads/index.tsx
+++ b/src/pages/downloads/index.tsx
@@ -4,219 +4,219 @@ import { FaAndroid, FaApple } from "react-icons/fa";
import useSWR from "swr";
import {
- ArrowTopRightOnSquareIcon,
- BoltIcon,
- ComputerDesktopIcon,
- CpuChipIcon,
- GlobeAltIcon,
+ ArrowTopRightOnSquareIcon,
+ BoltIcon,
+ ComputerDesktopIcon,
+ CpuChipIcon,
+ GlobeAltIcon,
} from "@heroicons/react/24/solid";
import Layout from "@theme/Layout";
import { FirmwareReleases } from "../../utils/apiTypes";
import { fetcher } from "../../utils/swr";
import {
- FirmwareCard,
- PlaceholderFirmwareCard,
+ FirmwareCard,
+ PlaceholderFirmwareCard,
} from "./_components/FirmwareCard";
const Firmware = (): JSX.Element => {
- const { data, error } = useSWR(
- "https://api.meshtastic.org/github/firmware/list",
- fetcher,
- );
+ const { data, error } = useSWR(
+ "https://api.meshtastic.org/github/firmware/list",
+ fetcher,
+ );
- return (
-
-
-
Flasher
-
-
-
-
-
-
-
-
ESP32 Web Flasher
-
-
-
- Web based installer for easy flashing with Chrome and Edge
- Browser. Works with T-Beam, T-Lora, Nano-G1 and similar
- boards.
-
-
-
-
-
-
-
nRF52 Drag & Drop
-
-
-
- Devices such as T-Echo and RAK4631 are flashed via filesystem.
-
-
-
-
-
-
- {/* */}
-
Apps
-
-
-
-
-
-
-
-
Apple
-
-
-
- Available on MacOS & iOS. Requires MacOS Ventura or iOS 16+.
-
-
-
-
-
-
Android
-
-
-
Sideloading also available.
-
-
-
-
-
Web
-
-
-
- Requires Chromium based browsers.
-
-
-
-
-
- {/* */}
-
Firmware
-
-
-
-
-
- {data && !error ? (
- <>
-
-
-
-
-
Bleeding
-
-
-
- Latest successful CI build. For those who want to break
- things.
-
-
-
-
- >
- ) : (
- <>
-
-
-
- >
- )}
-
-
-
-
- );
+ return (
+
+
+
Flasher
+
+
+
+
+
+
+
+
ESP32 Web Flasher
+
+
+
+ Web based installer for easy flashing with Chrome and Edge
+ Browser. Works with T-Beam, T-Lora, Nano-G1 and similar
+ boards.
+
+
+
+
+
+
+
nRF52 Drag & Drop
+
+
+
+ Devices such as T-Echo and RAK4631 are flashed via filesystem.
+
+
+
+
+
+
+ {/* */}
+
Apps
+
+
+
+
+
+
+
+
Apple
+
+
+
+ Available on MacOS & iOS. Requires MacOS Ventura or iOS 16+.
+
+
+
+
+
+
Android
+
+
+
Sideloading also available.
+
+
+
+
+
Web
+
+
+
+ Requires Chromium based browsers.
+
+
+
+
+
+ {/* */}
+
Firmware
+
+
+
+
+
+ {data && !error ? (
+ <>
+
+
+
+
+
Bleeding
+
+
+
+ Latest successful CI build. For those who want to break
+ things.
+
+
+
+
+ >
+ ) : (
+ <>
+
+
+
+ >
+ )}
+
+
+
+
+ );
};
export default Firmware;
diff --git a/src/pages/hardware/index.tsx b/src/pages/hardware/index.tsx
deleted file mode 100644
index 89eb0670..00000000
--- a/src/pages/hardware/index.tsx
+++ /dev/null
@@ -1,92 +0,0 @@
-import React, { useState } from "react";
-
-import { FiPlus } from "react-icons/fi";
-
-import { HardwareModal } from "../../components/hardware/HardwareModal";
-import { IDevice } from "../../data/device";
-
-import { HardwareCard } from "../../components/hardware/HardwareCard";
-import { PageLayout } from "../../components/PageLayout";
-import { heltec } from "../../data/devices/heltec";
-import { hydra } from "../../data/devices/hydra";
-import { nano_g1 } from "../../data/devices/nano_g1";
-import { rak19001 } from "../../data/devices/rak19001";
-import { rak19003 } from "../../data/devices/rak19003";
-import { tbeam } from "../../data/devices/tbeam";
-import { techo } from "../../data/devices/techo";
-
-const Hardware = (): JSX.Element => {
- const hardware = [tbeam, hydra, rak19003, rak19001, nano_g1, heltec, techo];
- const [modalData, setModalData] = useState();
-
- return (
-
-
-
-
- Issues
-
-
-
-
- Devices
-
-
- Antennas
-
-
-
-
-
-
-
- {hardware.map((device) => (
- {
- setModalData(device);
- }}
- />
- ))}
-
-
-
-
-
- New Board
-
-
- Want to support a board?
-
-
-
-
- {modalData && (
- {
- setModalData(undefined);
- }}
- device={modalData}
- />
- )}
-
- );
-};
-
-export default Hardware;
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 44e26c01..5f7159d1 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -1,9 +1,5 @@
-import "react-responsive-carousel/lib/styles/carousel.min.css"; // requires a loader
-
import React from "react";
-import { Carousel } from "react-responsive-carousel";
-
import Head from "@docusaurus/Head";
import Link from "@docusaurus/Link";
import useBaseUrl from "@docusaurus/useBaseUrl";
@@ -12,311 +8,199 @@ import Layout from "@theme/Layout";
import { SocialCard, SocialCardProps } from "../components/homepage/SocialCard";
-const features = [
- {
- title: "Radio Mesh Text Messaging",
- imageUrl: "img/homepage/messages.svg",
- description: (
- <>
- Off-grid messaging using inexpensive hardware to create your personal
- mesh. Radios forward messages to the next to flood the network.
- Communicate kilometers/miles between nodes. Internet-connected relay
- nodes enable the conversation to move online too.
- >
- ),
- },
- {
- title: "Encryption",
- imageUrl: "img/homepage/encryption.svg",
- description: (
- <>
- Messages are AES256 encrypted. Only radios supplied with your channel
- settings (which includes the key) should be able to read your messages.
- Using multichannel settings you can send encrypted messages on one
- channel and still participate in a default Meshtastic mesh.
- >
- ),
- },
- {
- title: "Conserve Battery",
- imageUrl: "img/homepage/battery.svg",
- description: (
- <>
- Go for days on end and on a single battery or extend it infinitely with
- a solar cell. Power management ensures the device will last the duration
- of your use.
- >
- ),
- },
- {
- title: "Extensible",
- imageUrl: "img/homepage/extendable.svg",
- description: (
- <>
- Create a highly scalable mesh with hardware on a multitude of platforms
- to fit your unique requirements: Create an environment monitoring mesh
- and produce real-time heatmaps, or maybe decentralized, encrypted
- messaging network, your imagination is the limit.
- >
- ),
- },
- {
- title: "Platform Agnostic",
- imageUrl: "img/homepage/platforms.svg",
- description: (
- <>
- Meshtastic clients are built or being built for all major desktop and
- mobile platforms. Linux, Windows, Mac, Android, and iOS are all
- supported or well on their way to being supported.
- >
- ),
- },
- {
- title: "Open Source",
- imageUrl: "img/homepage/opensource.svg",
- description: (
- <>
- All Meshtastic software is open source. If you want an improvement,
- submit a pull request or file an issue on Github. Happy coding!
- >
- ),
- },
-];
-
const SocialCards: SocialCardProps[] = [
- {
- color: "bg-[#5865F2]",
- link: "https://discord.com/invite/ktMAKGBnBs",
- children: (
-
- ),
- },
- {
- color: "bg-[#4A99E9]",
- link: "https://twitter.com/TheMeshtastic",
- children: (
-
- ),
- },
- {
- color: "bg-[#3875EA]",
- link: "https://facebook.com/themeshtastic",
- children: (
-
- ),
- },
- {
- color: "bg-[#ffffff]",
- link: "https://www.instagram.com/themeshtastic/",
- children: (
-
- ),
- },
- {
- color: "bg-[#FF0000]",
- link: "https://www.youtube.com/meshtastic",
- children: (
-
- ),
- },
- {
- color: "bg-[#ffffff]",
- link: "https://meshtastic.discourse.group",
- children: (
-
- ),
- },
- {
- color: "bg-[#FF4500]",
- link: "https://reddit.com/r/meshtastic",
- children: (
-
- ),
- },
+ {
+ color: "bg-[#5865F2]",
+ link: "https://discord.com/invite/ktMAKGBnBs",
+ children: (
+
+ ),
+ },
+ {
+ color: "bg-[#4A99E9]",
+ link: "https://twitter.com/TheMeshtastic",
+ children: (
+
+ ),
+ },
+ {
+ color: "bg-[#3875EA]",
+ link: "https://facebook.com/themeshtastic",
+ children: (
+
+ ),
+ },
+ {
+ color: "bg-[#ffffff]",
+ link: "https://www.instagram.com/themeshtastic/",
+ children: (
+
+ ),
+ },
+ {
+ color: "bg-[#FF0000]",
+ link: "https://www.youtube.com/meshtastic",
+ children: (
+
+ ),
+ },
+ {
+ color: "bg-[#ffffff]",
+ link: "https://meshtastic.discourse.group",
+ children: (
+
+ ),
+ },
+ {
+ color: "bg-[#FF4500]",
+ link: "https://reddit.com/r/meshtastic",
+ children: (
+
+ ),
+ },
];
function Home() {
- const context = useDocusaurusContext();
- const { siteConfig } = context;
- return (
-
-
-
-
-
-
-
-
-
-
-
- {features.map((feature) => (
-
-
-
-
-
-
{feature.title}
-
{feature.description}
-
-
- ))}
-
+ const context = useDocusaurusContext();
+ const { siteConfig } = context;
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
Connect with us.
+
+ {SocialCards.map((card) => (
+
+ {card.children}
+
+ ))}
+
+
-
-
Connect with us.
-
- {SocialCards.map((card) => (
-
- {card.children}
-
- ))}
-
-
-
-
-
- Getting started with Meshtastic is as easy as 1, 2, 3!
-
-
-
-
-
-
- );
+
+
+ Getting started with Meshtastic is as easy as 1, 2, 3!
+
+
+
+
+
+
+ );
}
export default Home;
diff --git a/src/pages/showcase/_components/Card.tsx b/src/pages/showcase/_components/Card.tsx
deleted file mode 100644
index ef70247c..00000000
--- a/src/pages/showcase/_components/Card.tsx
+++ /dev/null
@@ -1,110 +0,0 @@
-import React from "react";
-
-import { Showcase } from "../../../utils/apiTypes";
-import { mapUrl } from "../../../utils/map";
-import { CardTags } from "./CardTags";
-
-export interface CardProps {
- network: Showcase;
-}
-
-export const Card = React.memo(({ network }: CardProps) => (
-
-
-
-
-
-
-
-
{network.title}
- {network.summary}
-
-
-
-));
-
-export const PlaceholderCard = (): JSX.Element => (
-
-);
diff --git a/src/pages/showcase/_components/CardTags.tsx b/src/pages/showcase/_components/CardTags.tsx
deleted file mode 100644
index 4837a356..00000000
--- a/src/pages/showcase/_components/CardTags.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import React from "react";
-
-import { ShowcaseTag } from "../../../utils/apiTypes";
-
-export interface CardTagsProps {
- tags: ShowcaseTag[];
-}
-
-export const CardTags = ({ tags }: CardTagsProps) => {
- return (
-
- {tags.map(({ color, label }) => {
- return (
-
- {label}
-
- );
- })}
-
- );
-};
diff --git a/src/pages/showcase/_components/Filters.tsx b/src/pages/showcase/_components/Filters.tsx
deleted file mode 100644
index 51fcb8c7..00000000
--- a/src/pages/showcase/_components/Filters.tsx
+++ /dev/null
@@ -1,90 +0,0 @@
-import React from "react";
-
-import { FiHeart } from "react-icons/fi";
-import useSWR from "swr";
-
-import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
-import { fetcher } from "../../../utils/swr";
-
-import { ShowcaseTag } from "../../../utils/apiTypes";
-// import { TagList, Tags } from '../../../utils/showcase';
-import { PlaceholderTagSelect, TagSelect } from "./TagSelect";
-
-export const Filters = (): JSX.Element => {
- const { siteConfig } = useDocusaurusContext();
-
- const { data, error } = useSWR(
- `${siteConfig.customFields.API_URL}/showcase/tags`,
- fetcher,
- );
-
- return (
-
- {data && !error ? (
-
- ) : (
-
- )}
-
- );
-};
diff --git a/src/pages/showcase/_components/Network.tsx b/src/pages/showcase/_components/Network.tsx
deleted file mode 100644
index e81ad943..00000000
--- a/src/pages/showcase/_components/Network.tsx
+++ /dev/null
@@ -1,318 +0,0 @@
-import React from "react";
-
-import useSWR from "swr";
-
-import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
-import { Showcase } from "../../../utils/apiTypes";
-import { fetcher } from "../../../utils/swr";
-
-interface NetworkProps {
- id: string;
-}
-
-export const Network = ({ id }: NetworkProps): JSX.Element => {
- const { siteConfig } = useDocusaurusContext();
-
- const { data, error } = useSWR(
- `${siteConfig.customFields.API_URL}/showcase/${id}`,
- fetcher,
- );
-
- const githubData = useSWR(
- `https://api.github.com/users/${data?.author?.githubUsername}`,
- fetcher,
- ).data;
-
- return (
-
- {data && !error ? (
-
-
{data.title}
-
{data.summary}
- {githubData && (
-
-
-
-
{githubData.name}
-
{githubData.bio}
-
-
- )}
-
{data.body}
-
-
-
-
Bill of Materials
-
-
- {data.materials?.map((material) => (
-
-
-
-
-
-
{material.name}
-
- {material.details}
-
-
-
- View
-
-
- ))}
-
-
-
- ) : (
-
- {error &&
{JSON.stringify(error)}
}
- {!data &&
}
-
- )}
-
- );
-};
-
-export const PlaceholderNetwork = (): JSX.Element => {
- return (
- 768 ? "row" : "column",
- gap: "2rem",
- }}
- >
-
768 ? "60%" : "100%",
- }}
- >
-
-
-
768 ? "40%" : "100%",
- }}
- >
-
-
-
- );
-};
diff --git a/src/pages/showcase/_components/NetworkSection.tsx b/src/pages/showcase/_components/NetworkSection.tsx
deleted file mode 100644
index 38a4fb3b..00000000
--- a/src/pages/showcase/_components/NetworkSection.tsx
+++ /dev/null
@@ -1,67 +0,0 @@
-import React from "react";
-
-import { Showcase } from "../../../utils/apiTypes";
-import { Card, PlaceholderCard } from "./Card";
-
-interface NetworkSectionProps {
- title: string;
- icon?: JSX.Element;
- iconColor?: string;
- networks?: Showcase[];
-}
-
-export const NetworkSection = ({
- title,
- icon,
- iconColor,
- networks,
-}: NetworkSectionProps): JSX.Element => {
- return (
-
-
-
{title}
- {icon && (
-
- {icon}
-
- )}
-
-
- {networks ? (
- <>
- {networks.map((network) => (
-
- ))}
- {networks.length === 0 && No result }
- >
- ) : (
-
- )}
-
-
- );
-};
diff --git a/src/pages/showcase/_components/Networks.tsx b/src/pages/showcase/_components/Networks.tsx
deleted file mode 100644
index 2d709fc7..00000000
--- a/src/pages/showcase/_components/Networks.tsx
+++ /dev/null
@@ -1,52 +0,0 @@
-import React from "react";
-
-import { FiHeart, FiSearch } from "react-icons/fi";
-import useSWR from "swr";
-
-import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
-import { useSelectedTags } from "../../../hooks/useSelectedTags";
-
-import { useFilteredNetworks } from "../../../hooks/useFilteredNetworks";
-import { Showcase } from "../../../utils/apiTypes";
-import { fetcher } from "../../../utils/swr";
-import { NetworkSection } from "./NetworkSection";
-
-export const Networks = (): JSX.Element => {
- const { siteConfig } = useDocusaurusContext();
-
- const { data, error } = useSWR(
- `${siteConfig.customFields.API_URL}/showcase`,
- fetcher,
- );
-
- const selectedTags = useSelectedTags();
- const filteredNetworks = useFilteredNetworks(data ?? []);
-
- return (
-
- {!error ? (
- selectedTags.length === 0 ? (
- <>
- }
- iconColor="rgb(190 24 93)"
- networks={data?.filter((network) =>
- network.tags.find((tag) => tag.label === "Favorite"),
- )}
- />
-
- >
- ) : (
- }
- networks={filteredNetworks}
- />
- )
- ) : (
- {JSON.stringify(error)}
- )}
-
- );
-};
diff --git a/src/pages/showcase/_components/TagSelect.tsx b/src/pages/showcase/_components/TagSelect.tsx
deleted file mode 100644
index c8c41899..00000000
--- a/src/pages/showcase/_components/TagSelect.tsx
+++ /dev/null
@@ -1,111 +0,0 @@
-import "url-search-params-polyfill";
-
-import React from "react";
-
-import { useHistory, useLocation } from "@docusaurus/router";
-import { ShowcaseTag } from "../../../utils/apiTypes";
-
-import { toggleListItem } from "../../../utils/showcase";
-
-interface Props extends React.ComponentProps<"input"> {
- icon: React.ReactElement>;
- label: React.ReactNode;
- tag: ShowcaseTag;
-}
-
-export function readSearchTags(search: string): string[] {
- return new URLSearchParams(search).getAll("tags");
-}
-
-function replaceSearchTags(search: string, newTags: string[]) {
- const searchParams = new URLSearchParams(search);
- searchParams.delete("tags");
- newTags.forEach((tag) => searchParams.append("tags", tag));
- return searchParams.toString();
-}
-
-export const TagSelect = React.forwardRef(
- ({ icon, label, tag }) => {
- const location = useLocation();
- const history = useHistory();
- const [selected, setSelected] = React.useState(false);
- React.useEffect(() => {
- const tags = readSearchTags(location.search);
- setSelected(tags.includes(tag.label));
- }, [tag, location]);
- const toggleTag = React.useCallback(() => {
- const tags = readSearchTags(location.search);
- const newTags = toggleListItem(tags, tag.label);
- const newSearch = replaceSearchTags(location.search, newTags);
- history.push({ ...location, search: newSearch });
- }, [tag, location, history]);
- return (
- {
- toggleTag();
- }}
- >
- {label}
- {icon}
-
- );
- },
-);
-
-export const PlaceholderTagSelect = (): JSX.Element => (
-
-);
diff --git a/src/pages/showcase/index.tsx b/src/pages/showcase/index.tsx
deleted file mode 100644
index 31780c9b..00000000
--- a/src/pages/showcase/index.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-import "url-search-params-polyfill";
-
-import React from "react";
-
-import { useLocation } from "@docusaurus/router";
-import Layout from "@theme/Layout";
-
-import { Filters } from "./_components/Filters";
-import { Network } from "./_components/Network";
-import { Networks } from "./_components/Networks";
-
-const Showcase = (): JSX.Element => {
- const location = useLocation();
- const id = new URLSearchParams(location.search).get("id");
-
- return (
-
-
- {id ? (
-
- ) : (
- <>
-
-
- >
- )}
-
-
- );
-};
-
-export default Showcase;
diff --git a/src/pages/tools/OEM.tsx b/src/pages/tools/OEM.tsx
index e4e6c46b..1d304482 100644
--- a/src/pages/tools/OEM.tsx
+++ b/src/pages/tools/OEM.tsx
@@ -6,146 +6,148 @@ import { Protobuf } from "@meshtastic/meshtasticjs";
import Layout from "@theme/Layout";
const OEM = (): JSX.Element => {
- const [oemAesKey, setOemAesKey] = useState(new Uint8Array());
- const [oemFont, setOemFont] = useState(
- Protobuf.ScreenFonts.FONT_MEDIUM,
- );
- const [oemIconBits, setOemIconBits] = useState(new Uint8Array());
- const [oemIconHeight, setOemIconHeight] = useState(0);
- const [oemIconWidth, setOemIconWidth] = useState(0);
- const [oemText, setOemText] = useState("");
- const [oemBytes, setOemBytes] = useState(new Uint8Array());
+ const [oemAesKey, setOemAesKey] = useState(new Uint8Array());
+ const [oemFont, setOemFont] = useState(
+ Protobuf.ScreenFonts.FONT_MEDIUM,
+ );
+ const [oemIconBits, setOemIconBits] = useState(new Uint8Array());
+ const [oemIconHeight, setOemIconHeight] = useState(0);
+ const [oemIconWidth, setOemIconWidth] = useState(0);
+ const [oemText, setOemText] = useState("");
+ const [oemBytes, setOemBytes] = useState(new Uint8Array());
- useEffect(() => {
- setOemBytes(
- Protobuf.OEMStore.toBinary({
- oemAesKey,
- oemFont,
- oemIconBits,
- oemIconHeight,
- oemIconWidth,
- oemText,
- }),
- );
- }, [oemAesKey, oemFont, oemIconBits, oemIconHeight, oemIconWidth, oemText]);
+ useEffect(() => {
+ setOemBytes(
+ new Protobuf.OEMStore({
+ oemAesKey,
+ oemFont,
+ oemIconBits,
+ oemIconHeight,
+ oemIconWidth,
+ oemText,
+ }).toBinary(),
+ );
+ }, [oemAesKey, oemFont, oemIconBits, oemIconHeight, oemIconWidth, oemText]);
- const enumOptions = Protobuf.ScreenFonts
- ? Object.entries(Protobuf.ScreenFonts).filter(
- (value) => typeof value[1] === "number",
- )
- : [];
+ const enumOptions = Protobuf.ScreenFonts
+ ? Object.entries(Protobuf.ScreenFonts).filter(
+ (value) => typeof value[1] === "number",
+ )
+ : [];
- const readFile = (file: File) => {
- return new Promise((resolve: (value: string) => void, reject) => {
- const reader = new FileReader();
+ const readFile = (file: File) => {
+ return new Promise((resolve: (value: string) => void, reject) => {
+ const reader = new FileReader();
- reader.onload = (res) => {
- resolve(res.target.result as string);
- };
- reader.onerror = (err) => reject(err);
+ reader.onload = (res) => {
+ resolve(res.target.result as string);
+ };
+ reader.onerror = (err) => reject(err);
- reader.readAsText(file);
- });
- };
+ reader.readAsText(file);
+ });
+ };
- return (
-
-
-
AES Key
-
- {
- const key = new Uint8Array(128 / 8);
- setOemAesKey(crypto.getRandomValues(key));
- }}
- className="cursor-pointer rounded-md bg-tertiary p-2 hover:brightness-90"
- >
- Generate 128bit
-
- {
- const key = new Uint8Array(256 / 8);
- setOemAesKey(crypto.getRandomValues(key));
- }}
- className="mr-auto cursor-pointer rounded-md bg-tertiary p-2 hover:brightness-90"
- >
- Generate 256bit
-
-
-
{
- setOemAesKey(toByteArray(e.target.value));
- }}
- />
-
Font
-
{
- setOemFont(parseInt(e.target.value));
- }}
- >
- {enumOptions.map(([name, value]) => (
-
- {name}
-
- ))}
-
-
Logo XBM
-
{
- readFile(e.target.files[0]).then((data) => {
- setOemIconBits(
- new Uint8Array(
- data.split(",").map((s) => parseInt(s.trim(), 16)),
- ),
- );
- });
- }}
- />
-
Logo Height
-
{
- setOemIconHeight(parseInt(e.target.value));
- }}
- />
-
Logo Width
-
{
- setOemIconWidth(parseInt(e.target.value));
- }}
- />
-
Boot Text
-
{
- setOemText(e.target.value);
- }}
- />
-
{
- const blob = new Blob([oemBytes], {
- type: "application/octet-stream",
- });
- window.open(URL.createObjectURL(blob));
- }}
- >
- Download
-
- {oemBytes.toString()}
-
-
- );
+ return (
+
+
+
AES Key
+
+ {
+ const key = new Uint8Array(128 / 8);
+ setOemAesKey(crypto.getRandomValues(key));
+ }}
+ className="cursor-pointer rounded-md bg-tertiary p-2 hover:brightness-90"
+ >
+ Generate 128bit
+
+ {
+ const key = new Uint8Array(256 / 8);
+ setOemAesKey(crypto.getRandomValues(key));
+ }}
+ className="mr-auto cursor-pointer rounded-md bg-tertiary p-2 hover:brightness-90"
+ >
+ Generate 256bit
+
+
+
{
+ setOemAesKey(toByteArray(e.target.value));
+ }}
+ />
+
Font
+
{
+ setOemFont(parseInt(e.target.value));
+ }}
+ >
+ {enumOptions.map(([name, value]) => (
+
+ {name}
+
+ ))}
+
+
Logo XBM
+
{
+ readFile(e.target.files[0]).then((data) => {
+ setOemIconBits(
+ new Uint8Array(
+ data.split(",").map((s) => parseInt(s.trim(), 16)),
+ ),
+ );
+ });
+ }}
+ />
+
Logo Height
+
{
+ setOemIconHeight(parseInt(e.target.value));
+ }}
+ />
+
Logo Width
+
{
+ setOemIconWidth(parseInt(e.target.value));
+ }}
+ />
+
Boot Text
+
{
+ setOemText(e.target.value);
+ }}
+ />
+
{
+ const blob = new Blob([oemBytes], {
+ type: "application/octet-stream",
+ });
+ window.open(URL.createObjectURL(blob));
+ }}
+ >
+ Download
+
+ {oemBytes.toString()}
+
+
+ );
};
export default OEM;
diff --git a/src/theme/NotFound.js b/src/theme/NotFound.js
index 830f16c4..84fd9512 100644
--- a/src/theme/NotFound.js
+++ b/src/theme/NotFound.js
@@ -1,7 +1,7 @@
-import React from "react";
import Translate, { translate } from "@docusaurus/Translate";
import { PageMetadata } from "@docusaurus/theme-common";
import Layout from "@theme/Layout";
+import React from "react";
export default function NotFound() {
return (
<>
@@ -15,7 +15,7 @@ export default function NotFound() {
-
+
{
- const width = 900;
- const height = 400;
- const access_token =
- "pk.eyJ1Ijoic2FjaGF3IiwiYSI6ImNrNW9meXozZjBsdW0zbHBjM2FnNnV6cmsifQ.3E4n8eFGD9ZOFo-XDVeZnQ";
- const nodeCoords = nodes.map(
- ({ latitude, longitude }) => `pin-l+67ea94(${longitude},${latitude})`,
- );
-
- return `https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/${nodeCoords}/auto/${width}x${height}@2x?access_token=${access_token}`;
-};
diff --git a/src/utils/showcase.ts b/src/utils/showcase.ts
deleted file mode 100644
index 29d64b52..00000000
--- a/src/utils/showcase.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-export const sortBy = (array: T[], getter: (item: T) => unknown): T[] => {
- const sortedArray = [...array];
- sortedArray.sort((a, b) =>
- getter(a) > getter(b) ? 1 : getter(b) > getter(a) ? -1 : 0,
- );
- return sortedArray;
-};
-
-export const difference = (...arrays: T[][]): T[] => {
- return arrays.reduce((a, b) => a.filter((c) => !b.includes(c)));
-};
-
-export const toggleListItem = (list: T[], item: T): T[] => {
- const itemIndex = list.indexOf(item);
- if (itemIndex === -1) {
- return list.concat(item);
- } else {
- const newList = [...list];
- newList.splice(itemIndex, 1);
- return newList;
- }
-};
diff --git a/static/2.0/CF_logo_horizontal_blktype.svg b/static/2.0/CF_logo_horizontal_blktype.svg
deleted file mode 100644
index 43619792..00000000
--- a/static/2.0/CF_logo_horizontal_blktype.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/static/2.0/LILYGO.png b/static/2.0/LILYGO.png
deleted file mode 100644
index 75a625cb..00000000
Binary files a/static/2.0/LILYGO.png and /dev/null differ
diff --git a/static/2.0/RAK-blue-main.svg b/static/2.0/RAK-blue-main.svg
deleted file mode 100644
index e2a1bdd1..00000000
--- a/static/2.0/RAK-blue-main.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/static/2.0/android.jpg b/static/2.0/android.jpg
deleted file mode 100644
index 79587380..00000000
Binary files a/static/2.0/android.jpg and /dev/null differ
diff --git a/static/2.0/background.png b/static/2.0/background.png
deleted file mode 100644
index 6f1fecac..00000000
Binary files a/static/2.0/background.png and /dev/null differ
diff --git a/static/2.0/discord.svg b/static/2.0/discord.svg
deleted file mode 100644
index 74fd52b0..00000000
--- a/static/2.0/discord.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/static/2.0/ios.png b/static/2.0/ios.png
deleted file mode 100644
index af3fc932..00000000
Binary files a/static/2.0/ios.png and /dev/null differ
diff --git a/static/2.0/opencollectivelogo.svg b/static/2.0/opencollectivelogo.svg
deleted file mode 100644
index 3ab0f9ce..00000000
--- a/static/2.0/opencollectivelogo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/static/2.0/typelogo.svg b/static/2.0/typelogo.svg
deleted file mode 100644
index 748526e9..00000000
--- a/static/2.0/typelogo.svg
+++ /dev/null
@@ -1 +0,0 @@
-ESHT ST C
\ No newline at end of file
diff --git a/static/2.0/vercel-logotype-dark.svg b/static/2.0/vercel-logotype-dark.svg
deleted file mode 100644
index ba8cfc48..00000000
--- a/static/2.0/vercel-logotype-dark.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/static/2.0/webUI.png b/static/2.0/webUI.png
deleted file mode 100644
index 93e7f0c1..00000000
Binary files a/static/2.0/webUI.png and /dev/null differ
diff --git a/tailwind.config.ts b/tailwind.config.ts
index 62bdb7e0..3ade39e2 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -1,5 +1,4 @@
import type { Config } from "tailwindcss";
-import typography from "@tailwindcss/typography";
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
@@ -19,5 +18,5 @@ export default {
},
},
},
- plugins: [typography()],
+ plugins: [],
} satisfies Config;