diff --git a/README.md b/README.md
index 934e25aeb..0a756ac5f 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ Enter the component you want most in the components, leave the emojis and follow
| Component | Description | Status | Docs |
| --- | --- | --- | --- |
-| [Accordion](https://github.com/oku-ui/primitives/issues/3) | A group of collapsible panels | Not Started | - |
+| [Accordion](https://github.com/oku-ui/primitives/issues/3) | A group of collapsible panels | 🚧 In Progress | - |
| [Alert Dialog](https://github.com/oku-ui/primitives/issues/4) | A modal dialog that interrupts the user's workflow to get a response | Not Started | - |
| [Aspect Ratio](https://oku-ui.com/primitives/components/aspect-ratio) |
|
|
|
| [Avatar](https://oku-ui.com/primitives/components/avatar) |
|
|
|
@@ -42,19 +42,19 @@ Enter the component you want most in the components, leave the emojis and follow
| [Navigation Menu](https://github.com/oku-ui/primitives/issues/14) | A menu that appears when a user interacts with an element's trigger | Not Started | - |
| [Popover](https://github.com/oku-ui/primitives/issues/15) | A card that appears when a user hovers over an element | Not Started | - |
| [Progress](https://oku-ui.com/primitives/components/progress) |
|
|
|
-| [Radio Group](https://github.com/oku-ui/primitives/issues/17) | A group of radio buttons | Not Started | - |
+| [Radio Group](https://github.com/oku-ui/primitives/issues/17) | A group of radio buttons | 🚧 In Progress | - |
| [Scroll Area](https://github.com/oku-ui/primitives/issues/18) | A scrollable area | Not Started | - |
| [Select](https://github.com/oku-ui/primitives/issues/19) | A control that allows users to select one or more items from a list of options | 🚧 In Progress | - |
| [Separator](https://oku-ui.com/primitives/components/separator) |
|
|
|
-| [Slider](https://github.com/oku-ui/primitives/issues/21) | A control that allows users to input numeric values in a given range | Not Started | - |
+| [Slider](https://github.com/oku-ui/primitives/issues/21) | A control that allows users to input numeric values in a given range | 🚧 In Progress | - |
| [Switch](https://github.com/oku-ui/primitives/issues/22) | A control that allows users to switch between two mutually exclusive options | 🚧 In Progress | - |
| [Tabs](https://github.com/oku-ui/primitives/issues/23) | A group of tabs | 🚧 In Progress | - |
| [Toast](https://github.com/oku-ui/primitives/issues/24) | A non-modal dialog that appears and disappears from the screen | | - |
| [Toggle](https://oku-ui.com/primitives/components/toggle) |
|
|
|
-| [Toggle Group](https://github.com/oku-ui/primitives/issues/26) | A group of toggle buttons | Not Started | - |
-| [Toolbar](https://github.com/oku-ui/primitives/issues/27) | A group of toolbar buttons | Not Started | - |
+| [Toggle Group](https://github.com/oku-ui/primitives/issues/26) | A group of toggle buttons | 🚧 In Progress | - |
+| [Toolbar](https://github.com/oku-ui/primitives/issues/27) | A group of toolbar buttons | 🚧 In Progress | - |
| [Tooltip](https://github.com/oku-ui/primitives/issues/28) | A card that appears when a user hovers over an element | Not Started | - |
-
+[Primitives](https://oku-ui.com/primitives) |
|
|
|
## Community
diff --git a/packages/primitives/README.md b/packages/primitives/README.md
new file mode 100644
index 000000000..23bba64d9
--- /dev/null
+++ b/packages/primitives/README.md
@@ -0,0 +1,12 @@
+# `@oku-ui/primitives`
+
+
|
|
+
+## Installation
+
+```sh
+$ pnpm add @oku-ui/primitives
+```
+
+## Usage
+...
diff --git a/packages/primitives/build.config.ts b/packages/primitives/build.config.ts
new file mode 100644
index 000000000..b972b9a78
--- /dev/null
+++ b/packages/primitives/build.config.ts
@@ -0,0 +1,12 @@
+import { defineBuildConfig } from 'unbuild'
+
+export default defineBuildConfig({
+ entries: [
+ {
+ builder: 'mkdist',
+ input: './src/',
+ pattern: ['**/!(*.test|*.stories).ts'],
+ },
+ ],
+ declaration: true,
+})
diff --git a/packages/primitives/package.json b/packages/primitives/package.json
new file mode 100644
index 000000000..18cead942
--- /dev/null
+++ b/packages/primitives/package.json
@@ -0,0 +1,54 @@
+{
+ "name": "@oku-ui/primitives",
+ "type": "module",
+ "version": "0.0.1",
+ "license": "MIT",
+ "source": "src/index.ts",
+ "funding": "https://github.com/sponsors/productdevbook",
+ "homepage": "https://oku-ui.com/primitives",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/oku-ui/primitives.git",
+ "directory": "packages/primitives"
+ },
+ "bugs": {
+ "url": "https://github.com/oku-ui/primitives/issues"
+ },
+ "exports": {
+ ".": {
+ "types": "./dist/index.d.ts",
+ "import": "./dist/index.mjs"
+ }
+ },
+ "module": "./dist/index.mjs",
+ "types": "./dist/index.d.ts",
+ "files": [
+ "dist"
+ ],
+ "engines": {
+ "node": ">=18"
+ },
+ "scripts": {
+ "build": "tsup",
+ "dev": "tsup --watch"
+ },
+ "peerDependencies": {
+ "vue": "^3.3.0"
+ },
+ "dependencies": {
+ "@oku-ui/aspect-ratio": "latest",
+ "@oku-ui/avatar": "latest",
+ "@oku-ui/checkbox": "latest",
+ "@oku-ui/collapsible": "latest",
+ "@oku-ui/label": "latest",
+ "@oku-ui/progress": "latest",
+ "@oku-ui/separator": "latest",
+ "@oku-ui/toggle": "latest"
+ },
+ "devDependencies": {
+ "tsconfig": "workspace:^"
+ },
+ "publishConfig": {
+ "access": "public"
+ }
+}
diff --git a/packages/primitives/src/aspect-ratio.ts b/packages/primitives/src/aspect-ratio.ts
new file mode 100644
index 000000000..5eac807d6
--- /dev/null
+++ b/packages/primitives/src/aspect-ratio.ts
@@ -0,0 +1 @@
+export * from '@oku-ui/aspect-ratio'
diff --git a/packages/primitives/src/index.ts b/packages/primitives/src/index.ts
new file mode 100644
index 000000000..299b8a1bc
--- /dev/null
+++ b/packages/primitives/src/index.ts
@@ -0,0 +1,8 @@
+export * from '@oku-ui/aspect-ratio'
+export * from '@oku-ui/avatar'
+export * from '@oku-ui/checkbox'
+export * from '@oku-ui/collapsible'
+export * from '@oku-ui/label'
+export * from '@oku-ui/progress'
+export * from '@oku-ui/separator'
+export * from '@oku-ui/toggle'
diff --git a/packages/primitives/tsconfig.json b/packages/primitives/tsconfig.json
new file mode 100644
index 000000000..b8dfa9041
--- /dev/null
+++ b/packages/primitives/tsconfig.json
@@ -0,0 +1,10 @@
+{
+ "extends": "tsconfig/node16.json",
+ "compilerOptions": {
+ "rootDir": "src",
+ "outDir": "dist"
+ },
+ "include": [
+ "src"
+ ]
+}
diff --git a/packages/primitives/tsup.config.ts b/packages/primitives/tsup.config.ts
new file mode 100644
index 000000000..a2f7a0d8b
--- /dev/null
+++ b/packages/primitives/tsup.config.ts
@@ -0,0 +1,22 @@
+import { defineConfig } from 'tsup'
+import pkg from './package.json'
+
+const external = [
+ ...Object.keys(pkg.dependencies || {}),
+ ...Object.keys(pkg.peerDependencies || {}),
+]
+
+export default defineConfig((options) => {
+ return [
+ {
+ ...options,
+ entryPoints: ['src/index.ts'],
+ external,
+ dts: true,
+ clean: true,
+ target: 'node16',
+ format: ['esm'],
+ outExtension: () => ({ js: '.mjs' }),
+ },
+ ]
+})
diff --git a/playground/nuxt3/package.json b/playground/nuxt3/package.json
index 73ce1dd7c..c86a97e95 100644
--- a/playground/nuxt3/package.json
+++ b/playground/nuxt3/package.json
@@ -17,6 +17,7 @@
"@oku-ui/collapsible": "workspace:^",
"@oku-ui/collection": "workspace:^",
"@oku-ui/label": "workspace:^",
+ "@oku-ui/primitives": "workspace:^",
"@oku-ui/progress": "workspace:^",
"@oku-ui/roving-focus": "workspace:^",
"@oku-ui/separator": "workspace:^",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 55322d5ac..1cb14c481 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -788,6 +788,40 @@ importers:
specifier: workspace:^
version: link:../tsconfig
+ packages/primitives:
+ dependencies:
+ '@oku-ui/aspect-ratio':
+ specifier: latest
+ version: link:../components/aspect-ratio
+ '@oku-ui/avatar':
+ specifier: latest
+ version: link:../components/avatar
+ '@oku-ui/checkbox':
+ specifier: latest
+ version: link:../components/checkbox
+ '@oku-ui/collapsible':
+ specifier: latest
+ version: link:../components/collapsible
+ '@oku-ui/label':
+ specifier: latest
+ version: link:../components/label
+ '@oku-ui/progress':
+ specifier: latest
+ version: link:../components/progress
+ '@oku-ui/separator':
+ specifier: latest
+ version: link:../components/separator
+ '@oku-ui/toggle':
+ specifier: latest
+ version: link:../components/toggle
+ vue:
+ specifier: ^3.3.0
+ version: 3.3.4
+ devDependencies:
+ tsconfig:
+ specifier: workspace:^
+ version: link:../tsconfig
+
packages/tsconfig: {}
playground/nuxt3:
@@ -810,6 +844,9 @@ importers:
'@oku-ui/label':
specifier: workspace:^
version: link:../../packages/components/label
+ '@oku-ui/primitives':
+ specifier: workspace:^
+ version: link:../../packages/primitives
'@oku-ui/progress':
specifier: workspace:^
version: link:../../packages/components/progress
@@ -834,7 +871,7 @@ importers:
devDependencies:
'@nuxtjs/tailwindcss':
specifier: ^6.8.0
- version: 6.8.0(rollup@3.28.1)(webpack@5.88.2)
+ version: 6.8.0(rollup@3.28.1)(webpack@5.81.0)
'@types/node':
specifier: ^18.17.8
version: 18.17.8
@@ -922,7 +959,7 @@ packages:
'@jridgewell/trace-mapping': 0.3.18
dev: true
- /@antfu/eslint-config-basic@0.40.0(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6):
+ /@antfu/eslint-config-basic@0.40.0(@typescript-eslint/eslint-plugin@6.4.1)(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6):
resolution: {integrity: sha512-SAwz/0pVvGyWX4bpd2HpGw3Otl2SQu0ayGnuDgKTnolqYHQsVTHLMU7+keGP9hBLlyFAGz+keuNwgJz1K6NGdQ==}
peerDependencies:
eslint: '>=7.4.0'
@@ -931,14 +968,14 @@ packages:
eslint-plugin-antfu: 0.40.0(eslint@8.47.0)(typescript@5.1.6)
eslint-plugin-eslint-comments: 3.2.0(eslint@8.47.0)
eslint-plugin-html: 7.1.0
- eslint-plugin-import: /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)
+ eslint-plugin-import: /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)
eslint-plugin-jsonc: 2.9.0(eslint@8.47.0)
eslint-plugin-markdown: 3.0.0(eslint@8.47.0)
eslint-plugin-n: 16.0.1(eslint@8.47.0)
eslint-plugin-no-only-tests: 3.1.0
eslint-plugin-promise: 6.1.1(eslint@8.47.0)
eslint-plugin-unicorn: 48.0.1(eslint@8.47.0)
- eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.2.0)(eslint@8.47.0)
+ eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.4.1)(eslint@8.47.0)
eslint-plugin-yml: 1.8.0(eslint@8.47.0)
jsonc-eslint-parser: 2.3.0
yaml-eslint-parser: 1.2.2
@@ -957,11 +994,11 @@ packages:
eslint: '>=7.4.0'
typescript: '>=3.9'
dependencies:
- '@antfu/eslint-config-basic': 0.40.0(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/eslint-plugin': 6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/parser': 6.2.0(eslint@8.47.0)(typescript@5.1.6)
+ '@antfu/eslint-config-basic': 0.40.0(@typescript-eslint/eslint-plugin@6.4.1)(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/eslint-plugin': 6.4.1(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/parser': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
eslint: 8.47.0
- eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.2.0)(eslint@8.47.0)(typescript@5.1.6)
+ eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.4.1)(eslint@8.47.0)(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- eslint-import-resolver-typescript
@@ -970,12 +1007,12 @@ packages:
- supports-color
dev: false
- /@antfu/eslint-config-vue@0.40.0(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6):
+ /@antfu/eslint-config-vue@0.40.0(@typescript-eslint/eslint-plugin@6.4.1)(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6):
resolution: {integrity: sha512-9SVPincP0FkVqkwYKe2qadfQZflOUFLVFEYJSAMIcfupz3gezjTJSTzdIQocep+DECB9Lt0n1Qkx/w2thr+QFw==}
peerDependencies:
eslint: '>=7.4.0'
dependencies:
- '@antfu/eslint-config-basic': 0.40.0(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6)
+ '@antfu/eslint-config-basic': 0.40.0(@typescript-eslint/eslint-plugin@6.4.1)(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6)
'@antfu/eslint-config-ts': 0.40.0(eslint@8.47.0)(typescript@5.1.6)
eslint: 8.47.0
eslint-plugin-vue: 9.15.1(eslint@8.47.0)
@@ -995,13 +1032,13 @@ packages:
peerDependencies:
eslint: '>=7.4.0'
dependencies:
- '@antfu/eslint-config-vue': 0.40.0(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/eslint-plugin': 6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/parser': 6.2.0(eslint@8.47.0)(typescript@5.1.6)
+ '@antfu/eslint-config-vue': 0.40.0(@typescript-eslint/eslint-plugin@6.4.1)(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/eslint-plugin': 6.4.1(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/parser': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
eslint: 8.47.0
eslint-plugin-eslint-comments: 3.2.0(eslint@8.47.0)
eslint-plugin-html: 7.1.0
- eslint-plugin-import: /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)
+ eslint-plugin-import: /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)
eslint-plugin-jsonc: 2.9.0(eslint@8.47.0)
eslint-plugin-n: 16.0.1(eslint@8.47.0)
eslint-plugin-promise: 6.1.1(eslint@8.47.0)
@@ -1044,8 +1081,7 @@ packages:
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.22.10
- dev: true
+ '@babel/highlight': 7.18.6
/@babel/code-frame@7.22.10:
resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==}
@@ -1053,37 +1089,66 @@ packages:
dependencies:
'@babel/highlight': 7.22.10
chalk: 2.4.2
+ dev: true
+
+ /@babel/compat-data@7.21.7:
+ resolution: {integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==}
+ engines: {node: '>=6.9.0'}
+ dev: true
/@babel/compat-data@7.22.9:
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core@7.22.9:
- resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==}
+ /@babel/core@7.21.5:
+ resolution: {integrity: sha512-9M398B/QH5DlfCOTKDZT1ozXr0x8uBEeFd+dJraGUZGiaNpGCDVGCc14hZexsMblw3XxltJ+6kSvogp9J+5a9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.10
- '@babel/generator': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
- '@babel/helpers': 7.22.6
+ '@babel/code-frame': 7.21.4
+ '@babel/generator': 7.21.5
+ '@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.5)
+ '@babel/helper-module-transforms': 7.21.5
+ '@babel/helpers': 7.21.5
'@babel/parser': 7.22.7
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.8
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.5
'@babel/types': 7.22.5
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/core@7.22.10:
+ resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.22.10
+ '@babel/generator': 7.22.10
+ '@babel/helper-compilation-targets': 7.22.10
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
+ '@babel/helpers': 7.22.10
+ '@babel/parser': 7.22.10
+ '@babel/template': 7.22.5
+ '@babel/traverse': 7.22.10
+ '@babel/types': 7.22.10
+ convert-source-map: 1.9.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/generator@7.22.9:
- resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==}
+ /@babel/generator@7.21.5:
+ resolution: {integrity: sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.5
@@ -1092,95 +1157,202 @@ packages:
jsesc: 2.5.2
dev: true
+ /@babel/generator@7.22.10:
+ resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.10
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.18
+ jsesc: 2.5.2
+ dev: true
+
+ /@babel/helper-annotate-as-pure@7.18.6:
+ resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
+ dev: true
+
/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.5
+ '@babel/types': 7.22.10
dev: true
- /@babel/helper-builder-binary-assignment-operator-visitor@7.22.5:
- resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==}
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.22.10:
+ resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.5
+ '@babel/types': 7.22.10
dev: true
- /@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==}
+ /@babel/helper-compilation-targets@7.21.5(@babel/core@7.21.5):
+ resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.21.7
+ '@babel/core': 7.21.5
+ '@babel/helper-validator-option': 7.21.0
+ browserslist: 4.21.5
+ lru-cache: 5.1.1
+ semver: 6.3.1
+ dev: true
+
+ /@babel/helper-compilation-targets@7.22.10:
+ resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==}
+ engines: {node: '>=6.9.0'}
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
'@babel/helper-validator-option': 7.22.5
browserslist: 4.21.10
lru-cache: 5.1.1
semver: 6.3.1
dev: true
- /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==}
+ /@babel/helper-create-class-features-plugin@7.21.5(@babel/core@7.21.5):
+ resolution: {integrity: sha512-yNSEck9SuDvPTEUYm4BSXl6ZVC7yO5ZLEMAhG3v3zi7RDxyL/nQDemWWZmw4L0stPWwhpnznRRyJHPRcbXR2jw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.5
+ '@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.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-create-class-features-plugin@7.21.5(@babel/core@7.22.10):
+ resolution: {integrity: sha512-yNSEck9SuDvPTEUYm4BSXl6ZVC7yO5ZLEMAhG3v3zi7RDxyL/nQDemWWZmw4L0stPWwhpnznRRyJHPRcbXR2jw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.10
+ '@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.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.22.10):
+ resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@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.5
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.9):
+ /@babel/helper-create-regexp-features-plugin@7.21.5(@babel/core@7.22.10):
+ resolution: {integrity: sha512-1+DPMcln46eNAta/rPIqQYXYRGvQ/LRy6bRKnSt9Dzt/yLjNUbbsh+6yzD6fUHmtzc9kWvVnAhtcMSMyziHmUA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.10
+ '@babel/helper-annotate-as-pure': 7.18.6
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+ dev: true
+
+ /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.10):
resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
dev: true
- /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.9):
+ /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.10):
resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-compilation-targets': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
lodash.debounce: 4.0.8
- resolve: 1.22.4
+ resolve: 1.22.3
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/helper-environment-visitor@7.21.5:
+ resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
/@babel/helper-environment-visitor@7.22.5:
resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
engines: {node: '>=6.9.0'}
dev: true
+ /@babel/helper-function-name@7.21.0:
+ resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.20.7
+ '@babel/types': 7.22.5
+ dev: true
+
/@babel/helper-function-name@7.22.5:
resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.5
+ '@babel/types': 7.22.10
+ dev: true
+
+ /@babel/helper-hoist-variables@7.18.6:
+ resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
'@babel/types': 7.22.5
dev: true
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.10
+ dev: true
+
+ /@babel/helper-member-expression-to-functions@7.21.5:
+ resolution: {integrity: sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==}
+ engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.5
dev: true
@@ -1188,6 +1360,13 @@ packages:
/@babel/helper-member-expression-to-functions@7.22.5:
resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.10
+ dev: true
+
+ /@babel/helper-module-imports@7.21.4:
+ resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
+ engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.5
dev: true
@@ -1196,16 +1375,32 @@ packages:
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
engines: {node: '>=6.9.0'}
dependencies:
+ '@babel/types': 7.22.10
+ dev: true
+
+ /@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.22.5
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.5
'@babel/types': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9):
+ /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.10):
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-module-imports': 7.22.5
'@babel/helper-simple-access': 7.22.5
@@ -1213,11 +1408,23 @@ packages:
'@babel/helper-validator-identifier': 7.22.5
dev: true
+ /@babel/helper-optimise-call-expression@7.18.6:
+ resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
+ dev: true
+
/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.5
+ '@babel/types': 7.22.10
+ dev: true
+
+ /@babel/helper-plugin-utils@7.21.5:
+ resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==}
+ engines: {node: '>=6.9.0'}
dev: true
/@babel/helper-plugin-utils@7.22.5:
@@ -1225,33 +1432,61 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.9):
+ /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.10):
resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-wrap-function': 7.22.9
+ '@babel/helper-wrap-function': 7.22.10
+ dev: true
+
+ /@babel/helper-replace-supers@7.21.5:
+ resolution: {integrity: sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==}
+ 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.22.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9):
+ /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.10):
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-member-expression-to-functions': 7.22.5
'@babel/helper-optimise-call-expression': 7.22.5
dev: true
+ /@babel/helper-simple-access@7.21.5:
+ resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
+ dev: true
+
/@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.10
+ dev: true
+
+ /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
+ resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
+ engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.5
dev: true
@@ -1259,6 +1494,13 @@ packages:
/@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.10
+ dev: true
+
+ /@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.22.5
dev: true
@@ -1267,7 +1509,7 @@ packages:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.5
+ '@babel/types': 7.22.10
dev: true
/@babel/helper-string-parser@7.22.5:
@@ -1278,31 +1520,55 @@ packages:
resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-validator-option@7.21.0:
+ resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
/@babel/helper-validator-option@7.22.5:
resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-wrap-function@7.22.9:
- resolution: {integrity: sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==}
+ /@babel/helper-wrap-function@7.22.10:
+ resolution: {integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.22.5
'@babel/template': 7.22.5
+ '@babel/types': 7.22.10
+ dev: true
+
+ /@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.22.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/helpers@7.22.6:
- resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==}
+ /@babel/helpers@7.22.10:
+ resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.5
- '@babel/traverse': 7.22.8
- '@babel/types': 7.22.5
+ '@babel/traverse': 7.22.10
+ '@babel/types': 7.22.10
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/highlight@7.18.6:
+ resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.5
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+
/@babel/highlight@7.22.10:
resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==}
engines: {node: '>=6.9.0'}
@@ -1310,6 +1576,15 @@ packages:
'@babel/helper-validator-identifier': 7.22.5
chalk: 2.4.2
js-tokens: 4.0.0
+ dev: true
+
+ /@babel/parser@7.22.10:
+ resolution: {integrity: sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.22.10
+ dev: true
/@babel/parser@7.22.7:
resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==}
@@ -1318,974 +1593,1016 @@ packages:
dependencies:
'@babel/types': 7.22.5
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9)
+ '@babel/plugin-transform-optional-chaining': 7.22.10(@babel/core@7.22.10)
dev: true
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.10):
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.22.9
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.22.10
+ '@babel/helper-create-class-features-plugin': 7.21.5(@babel/core@7.22.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.10):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10)
dev: true
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.9):
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.10):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@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.9)
+ '@babel/core': 7.22.10
+ '@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.22.10)
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.10):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
dev: true
- /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.10):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.10):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.10):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.10):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.10):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.22.10):
resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.22.10
+ '@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.10):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.10):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.5):
resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.22.10):
+ resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.10
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: true
+
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.10):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.10):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.10):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.10):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.10):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.10):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.10):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.10):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.5):
resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.21.5
+ '@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.22.10):
+ resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.10
+ '@babel/helper-plugin-utils': 7.21.5
+ dev: true
+
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.10):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-create-regexp-features-plugin': 7.21.5(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.22.9):
- resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==}
+ /@babel/plugin-transform-async-generator-functions@7.22.10(@babel/core@7.22.10):
+ resolution: {integrity: sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
+ '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.10)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.10):
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.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==}
+ /@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.22.10):
+ resolution: {integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.9):
+ /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.10):
resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-compilation-targets': 7.22.10
'@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.9)
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: true
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
'@babel/template': 7.22.5
dev: true
- /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
+ /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.10):
+ resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.10):
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.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
+ '@babel/core': 7.22.10
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.22.9):
+ /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.22.10):
resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-compilation-targets': 7.22.10
'@babel/helper-function-name': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.10):
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.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.22.10):
+ resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.10
+ '@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: true
+
+ /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
dev: true
- /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.5
dev: true
- /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.10):
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.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-compilation-targets': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.10):
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.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.22.9):
- resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==}
+ /@babel/plugin-transform-optional-chaining@7.22.10(@babel/core@7.22.10):
+ resolution: {integrity: sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@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.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10)
dev: true
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==}
+ /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.10):
+ 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.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- regenerator-transform: 0.15.1
+ regenerator-transform: 0.15.2
dev: true
- /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.22.9):
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.5):
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.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.22.9)
+ '@babel/core': 7.21.5
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.21.5(@babel/core@7.21.5)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.5)
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==}
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.22.10):
+ 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.22.9
+ '@babel/core': 7.22.10
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.21.5(@babel/core@7.22.10)
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.22.10)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.10):
+ resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.10):
resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.10)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/preset-env@7.22.9(@babel/core@7.22.9):
- resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==}
+ /@babel/preset-env@7.22.10(@babel/core@7.22.10):
+ resolution: {integrity: sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-compilation-targets': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.22.9)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.9)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/preset-modules': 0.1.5(@babel/core@7.22.9)
- '@babel/types': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.9)
- babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.9)
- babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.9)
- core-js-compat: 3.32.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.10)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.10)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.10)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.10)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-async-generator-functions': 7.22.10(@babel/core@7.22.10)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-block-scoping': 7.22.10(@babel/core@7.22.10)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.10)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.22.10)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-optional-chaining': 7.22.10(@babel/core@7.22.10)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.22.10)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.22.10)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.10)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.22.10)
+ '@babel/types': 7.22.10
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.10)
+ babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.10)
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.10)
+ core-js-compat: 3.32.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-flow@7.21.4(@babel/core@7.22.9):
+ /@babel/preset-flow@7.21.4(@babel/core@7.22.10):
resolution: {integrity: sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.22.10)
dev: true
- /@babel/preset-modules@0.1.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.10):
+ 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.22.9
+ '@babel/core': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/types': 7.22.5
+ '@babel/types': 7.22.10
esutils: 2.0.3
dev: true
- /@babel/preset-typescript@7.21.5(@babel/core@7.22.9):
+ /@babel/preset-typescript@7.21.5(@babel/core@7.22.10):
resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.22.10)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.22.10)
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.22.10)
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/register@7.21.0(@babel/core@7.22.9):
+ /@babel/register@7.21.0(@babel/core@7.22.10):
resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -2314,33 +2631,69 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
+ /@babel/template@7.20.7:
+ resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.21.4
+ '@babel/parser': 7.22.7
+ '@babel/types': 7.22.5
+ dev: true
+
/@babel/template@7.22.5:
resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.10
+ '@babel/parser': 7.22.10
+ '@babel/types': 7.22.10
+ dev: true
+
+ /@babel/traverse@7.21.5:
+ resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==}
+ 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.22.7
'@babel/types': 7.22.5
+ debug: 4.3.4
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/traverse@7.22.8:
- resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==}
+ /@babel/traverse@7.22.10:
+ resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.10
- '@babel/generator': 7.22.9
+ '@babel/generator': 7.22.10
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-function-name': 7.22.5
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.22.7
- '@babel/types': 7.22.5
+ '@babel/parser': 7.22.10
+ '@babel/types': 7.22.10
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/types@7.22.10:
+ resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.5
+ to-fast-properties: 2.0.0
+ dev: true
+
/@babel/types@7.22.5:
resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==}
engines: {node: '>=6.9.0'}
@@ -3222,10 +3575,15 @@ packages:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: 8.47.0
- eslint-visitor-keys: 3.4.2
+ eslint-visitor-keys: 3.4.1
- /@eslint-community/regexpp@4.6.2:
- resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==}
+ /@eslint-community/regexpp@4.5.0:
+ resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ dev: false
+
+ /@eslint-community/regexpp@4.7.0:
+ resolution: {integrity: sha512-+HencqxU7CFJnQb7IKtuNBqS6Yx3Tz4kOL8BJXo+JyeiBm5MEX6pO8onXDkjrkCRlfYXS1Axro15ZjVFe9YgsA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
/@eslint/eslintrc@2.1.2:
@@ -3252,16 +3610,28 @@ packages:
resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==}
dev: true
+ /@floating-ui/core@1.3.1:
+ resolution: {integrity: sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==}
+ dev: true
+
/@floating-ui/core@1.4.1:
resolution: {integrity: sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==}
dependencies:
'@floating-ui/utils': 0.1.1
+ dev: false
+
+ /@floating-ui/dom@1.4.4:
+ resolution: {integrity: sha512-21hhDEPOiWkGp0Ys4Wi6Neriah7HweToKra626CIK712B5m9qkdz54OP9gVldUg+URnBTpv/j/bi/skmGdstXQ==}
+ dependencies:
+ '@floating-ui/core': 1.3.1
+ dev: true
/@floating-ui/dom@1.5.1:
resolution: {integrity: sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==}
dependencies:
'@floating-ui/core': 1.4.1
'@floating-ui/utils': 0.1.1
+ dev: false
/@floating-ui/react-dom@2.0.1(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-rZtAmSht4Lry6gdhAJDrCp/6rKN7++JnL1/Anbr/DdeyYXQPxvg/ivrbYvJulbRf4vL8b212suwMM2lxbv+RQA==}
@@ -3269,13 +3639,14 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- '@floating-ui/dom': 1.5.1
+ '@floating-ui/dom': 1.4.4
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
/@floating-ui/utils@0.1.1:
resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==}
+ dev: false
/@floating-ui/vue@1.0.2(vue@3.3.4):
resolution: {integrity: sha512-sImlAl9mAoCKZLNlwWz2P2ZMJIDlOEDXrRD6aD2sIHAka1LPC+nWtB+D3lPe7IE7FGWSbwBPTnlSdlABa3Fr0A==}
@@ -3370,8 +3741,8 @@ packages:
resolution: {integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.22.9
- '@jest/types': 29.6.1
+ '@babel/core': 7.21.5
+ '@jest/types': 29.5.0
'@jridgewell/trace-mapping': 0.3.18
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -3380,7 +3751,7 @@ packages:
graceful-fs: 4.2.11
jest-haste-map: 29.5.0
jest-regex-util: 29.4.3
- jest-util: 29.6.2
+ jest-util: 29.5.0
micromatch: 4.0.5
pirates: 4.0.5
slash: 3.0.0
@@ -3400,8 +3771,8 @@ packages:
chalk: 4.1.2
dev: true
- /@jest/types@29.6.1:
- resolution: {integrity: sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==}
+ /@jest/types@29.5.0:
+ resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/schemas': 29.6.0
@@ -3426,11 +3797,6 @@ packages:
engines: {node: '>=6.0.0'}
dev: true
- /@jridgewell/resolve-uri@3.1.1:
- resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
- engines: {node: '>=6.0.0'}
- dev: true
-
/@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
@@ -3443,13 +3809,6 @@ packages:
'@jridgewell/trace-mapping': 0.3.18
dev: true
- /@jridgewell/source-map@0.3.5:
- resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
- dependencies:
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.19
- dev: true
-
/@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
dev: true
@@ -3464,13 +3823,6 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.14
dev: true
- /@jridgewell/trace-mapping@0.3.19:
- resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.1
- '@jridgewell/sourcemap-codec': 1.4.15
- dev: true
-
/@juggle/resize-observer@3.4.0:
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
dev: true
@@ -3516,29 +3868,29 @@ packages:
react: 18.2.0
dev: true
- /@microsoft/api-extractor-model@7.27.5(@types/node@18.17.8):
- resolution: {integrity: sha512-9/tBzYMJitR+o+zkPr1lQh2+e8ClcaTF6eZo7vZGDqRt2O5XmXWPbYJZmxyM3wb5at6lfJNEeGZrQXLjsQ0Nbw==}
+ /@microsoft/api-extractor-model@7.27.6(@types/node@18.17.8):
+ resolution: {integrity: sha512-eiCnlayyum1f7fS2nA9pfIod5VCNR1G+Tq84V/ijDrKrOFVa598BLw145nCsGDMoFenV6ajNi2PR5WCwpAxW6Q==}
dependencies:
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 3.59.6(@types/node@18.17.8)
+ '@rushstack/node-core-library': 3.59.7(@types/node@18.17.8)
transitivePeerDependencies:
- '@types/node'
dev: true
- /@microsoft/api-extractor@7.36.3(@types/node@18.17.8):
- resolution: {integrity: sha512-u0H6362AQq+r55X8drHx4npgkrCfJnMzRRHfQo8PMNKB8TcBnrTLfXhXWi+xnTM6CzlU/netEN8c4bq581Rnrg==}
+ /@microsoft/api-extractor@7.36.4(@types/node@18.17.8):
+ resolution: {integrity: sha512-21UECq8C/8CpHT23yiqTBQ10egKUacIpxkPyYR7hdswo/M5yTWdBvbq+77YC9uPKQJOUfOD1FImBQ1DzpsdeQQ==}
hasBin: true
dependencies:
- '@microsoft/api-extractor-model': 7.27.5(@types/node@18.17.8)
+ '@microsoft/api-extractor-model': 7.27.6(@types/node@18.17.8)
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 3.59.6(@types/node@18.17.8)
- '@rushstack/rig-package': 0.4.0
- '@rushstack/ts-command-line': 4.15.1
+ '@rushstack/node-core-library': 3.59.7(@types/node@18.17.8)
+ '@rushstack/rig-package': 0.4.1
+ '@rushstack/ts-command-line': 4.15.2
colors: 1.2.5
lodash: 4.17.21
- resolve: 1.22.4
+ resolve: 1.22.3
semver: 7.5.4
source-map: 0.6.1
typescript: 5.0.4
@@ -3660,15 +4012,15 @@ packages:
- supports-color
dev: true
- /@nuxt/postcss8@1.1.3(webpack@5.88.2):
+ /@nuxt/postcss8@1.1.3(webpack@5.81.0):
resolution: {integrity: sha512-CdHtErhvQwueNZPBOmlAAKrNCK7aIpZDYhtS7TzXlSgPHHox1g3cSlf+Ke9oB/8t4mNNjdB+prclme2ibuCOEA==}
dependencies:
autoprefixer: 10.4.15(postcss@8.4.28)
- css-loader: 5.2.7(webpack@5.88.2)
+ css-loader: 5.2.7(webpack@5.81.0)
defu: 3.2.2
postcss: 8.4.28
postcss-import: 13.0.0(postcss@8.4.28)
- postcss-loader: 4.3.0(postcss@8.4.28)(webpack@5.88.2)
+ postcss-loader: 4.3.0(postcss@8.4.28)(webpack@5.81.0)
postcss-url: 10.1.3(postcss@8.4.28)
semver: 7.5.4
transitivePeerDependencies:
@@ -3684,8 +4036,8 @@ packages:
pathe: 1.1.1
pkg-types: 1.0.3
postcss-import-resolver: 2.0.0
- std-env: 3.4.2
- ufo: 1.2.0
+ std-env: 3.3.3
+ ufo: 1.1.2
unimport: 3.0.14(rollup@3.28.1)
untyped: 1.3.2
transitivePeerDependencies:
@@ -3702,8 +4054,8 @@ packages:
pathe: 1.1.1
pkg-types: 1.0.3
postcss-import-resolver: 2.0.0
- std-env: 3.4.2
- ufo: 1.2.0
+ std-env: 3.3.3
+ ufo: 1.1.2
unimport: 3.0.14(rollup@3.28.1)
untyped: 1.3.2
transitivePeerDependencies:
@@ -3721,7 +4073,7 @@ packages:
consola: 3.2.3
create-require: 1.1.1
defu: 6.1.2
- destr: 2.0.1
+ destr: 2.0.0
dotenv: 16.3.1
fs-extra: 11.1.1
git-url-parse: 13.1.0
@@ -3733,7 +4085,7 @@ packages:
ofetch: 1.2.1
parse-git-config: 3.0.0
rc9: 2.1.1
- std-env: 3.4.2
+ std-env: 3.3.3
transitivePeerDependencies:
- rollup
- supports-color
@@ -3758,7 +4110,7 @@ packages:
consola: 3.2.3
cssnano: 6.0.1(postcss@8.4.28)
defu: 6.1.2
- esbuild: 0.18.20
+ esbuild: 0.18.11
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.2
@@ -3776,9 +4128,9 @@ packages:
postcss-import: 15.1.0(postcss@8.4.28)
postcss-url: 10.1.3(postcss@8.4.28)
rollup-plugin-visualizer: 5.9.2(rollup@3.28.1)
- std-env: 3.4.2
+ std-env: 3.3.3
strip-literal: 1.0.1
- ufo: 1.2.0
+ ufo: 1.1.2
unplugin: 1.3.2
vite: 4.3.5(@types/node@18.17.8)
vite-node: 0.33.0(@types/node@18.17.8)
@@ -3804,11 +4156,11 @@ packages:
- vue-tsc
dev: true
- /@nuxtjs/tailwindcss@6.8.0(rollup@3.28.1)(webpack@5.88.2):
+ /@nuxtjs/tailwindcss@6.8.0(rollup@3.28.1)(webpack@5.81.0):
resolution: {integrity: sha512-jzuvD1nfA2BPnSbHtKK0aiI51ndMa7lNGL1iDEFuEPsltzilZ9ED7zOP6niGTrImg0n5Yt4GEJpixi6yWwp9Hw==}
dependencies:
'@nuxt/kit': 3.6.2(rollup@3.28.1)
- '@nuxt/postcss8': 1.1.3(webpack@5.88.2)
+ '@nuxt/postcss8': 1.1.3(webpack@5.81.0)
autoprefixer: 10.4.15(postcss@8.4.28)
chokidar: 3.5.3
clear-module: 4.1.2
@@ -4464,7 +4816,7 @@ packages:
'@babel/runtime': 7.21.5
dev: true
- /@rollup/plugin-alias@5.0.0(rollup@3.28.0):
+ /@rollup/plugin-alias@5.0.0(rollup@3.26.2):
resolution: {integrity: sha512-l9hY5chSCjuFRPsnRm16twWBiSApl2uYFLsepQYwtBuAxNMQ/1dJqADld40P0Jkqm65GRTLy/AC6hnpVebtLsA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4473,7 +4825,7 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.28.0
+ rollup: 3.26.2
slash: 4.0.0
dev: true
@@ -4490,8 +4842,8 @@ packages:
slash: 4.0.0
dev: true
- /@rollup/plugin-commonjs@25.0.4(rollup@3.28.0):
- resolution: {integrity: sha512-L92Vz9WUZXDnlQQl3EwbypJR4+DM2EbsO+/KOcEkP4Mc6Ct453EeDB2uH9lgRwj4w5yflgNpq9pHOiY8aoUXBQ==}
+ /@rollup/plugin-commonjs@25.0.2(rollup@3.26.2):
+ resolution: {integrity: sha512-NGTwaJxIO0klMs+WSFFtBP7b9TdTJ3K76HZkewT8/+yHzMiUGVQgaPtLQxNVYIgT5F7lxkEyVID+yS3K7bhCow==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.68.0||^3.0.0
@@ -4499,13 +4851,13 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.3(rollup@3.28.0)
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.2)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
magic-string: 0.27.0
- rollup: 3.28.0
+ rollup: 3.26.2
dev: true
/@rollup/plugin-commonjs@25.0.4(rollup@3.28.1):
@@ -4526,7 +4878,7 @@ packages:
rollup: 3.28.1
dev: true
- /@rollup/plugin-inject@5.0.3(rollup@3.28.0):
+ /@rollup/plugin-inject@5.0.3(rollup@3.26.2):
resolution: {integrity: sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4535,13 +4887,13 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.28.0)
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.2)
estree-walker: 2.0.2
magic-string: 0.27.0
- rollup: 3.28.0
+ rollup: 3.26.2
dev: true
- /@rollup/plugin-json@6.0.0(rollup@3.28.0):
+ /@rollup/plugin-json@6.0.0(rollup@3.26.2):
resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4550,8 +4902,8 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.3(rollup@3.28.0)
- rollup: 3.28.0
+ '@rollup/pluginutils': 5.0.3(rollup@3.26.2)
+ rollup: 3.26.2
dev: true
/@rollup/plugin-json@6.0.0(rollup@3.28.1):
@@ -4567,7 +4919,7 @@ packages:
rollup: 3.28.1
dev: true
- /@rollup/plugin-node-resolve@15.1.0(rollup@3.28.0):
+ /@rollup/plugin-node-resolve@15.1.0(rollup@3.26.2):
resolution: {integrity: sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4576,13 +4928,13 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.28.0)
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.2)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
- resolve: 1.22.4
- rollup: 3.28.0
+ resolve: 1.22.3
+ rollup: 3.26.2
dev: true
/@rollup/plugin-node-resolve@15.2.1(rollup@3.28.1):
@@ -4599,11 +4951,11 @@ packages:
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
- resolve: 1.22.4
+ resolve: 1.22.3
rollup: 3.28.1
dev: true
- /@rollup/plugin-replace@5.0.2(rollup@3.28.0):
+ /@rollup/plugin-replace@5.0.2(rollup@3.26.2):
resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4612,9 +4964,9 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.3(rollup@3.28.0)
+ '@rollup/pluginutils': 5.0.3(rollup@3.26.2)
magic-string: 0.27.0
- rollup: 3.28.0
+ rollup: 3.26.2
dev: true
/@rollup/plugin-replace@5.0.2(rollup@3.28.1):
@@ -4631,7 +4983,7 @@ packages:
rollup: 3.28.1
dev: true
- /@rollup/plugin-terser@0.4.3(rollup@3.28.0):
+ /@rollup/plugin-terser@0.4.3(rollup@3.26.2):
resolution: {integrity: sha512-EF0oejTMtkyhrkwCdg0HJ0IpkcaVg1MMSf2olHb2Jp+1mnLM04OhjpJWGma4HobiDTF0WCyViWuvadyE9ch2XA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4640,13 +4992,13 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.28.0
+ rollup: 3.26.2
serialize-javascript: 6.0.1
smob: 1.4.0
terser: 5.18.2
dev: true
- /@rollup/plugin-wasm@6.1.3(rollup@3.28.0):
+ /@rollup/plugin-wasm@6.1.3(rollup@3.26.2):
resolution: {integrity: sha512-7ItTTeyauE6lwdDtQWceEHZ9+txbi4RRy0mYPFn9BW7rD7YdgBDu7HTHsLtHrRzJc313RM/1m6GKgV3np/aEaw==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4655,7 +5007,7 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.28.0
+ rollup: 3.26.2
dev: true
/@rollup/pluginutils@4.2.1:
@@ -4666,7 +5018,7 @@ packages:
picomatch: 2.3.1
dev: true
- /@rollup/pluginutils@5.0.2(rollup@3.28.0):
+ /@rollup/pluginutils@5.0.2(rollup@3.26.2):
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4678,7 +5030,7 @@ packages:
'@types/estree': 1.0.1
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 3.28.0
+ rollup: 3.26.2
dev: true
/@rollup/pluginutils@5.0.2(rollup@3.28.1):
@@ -4696,7 +5048,7 @@ packages:
rollup: 3.28.1
dev: true
- /@rollup/pluginutils@5.0.3(rollup@3.28.0):
+ /@rollup/pluginutils@5.0.3(rollup@3.26.2):
resolution: {integrity: sha512-hfllNN4a80rwNQ9QCxhxuHCGHMAvabXqxNdaChUSSadMre7t4iEUI6fFAhBOn/eIYTgYVhBv7vCLsAJ4u3lf3g==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -4708,7 +5060,7 @@ packages:
'@types/estree': 1.0.1
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 3.28.0
+ rollup: 3.26.2
dev: true
/@rollup/pluginutils@5.0.3(rollup@3.28.1):
@@ -4726,8 +5078,8 @@ packages:
rollup: 3.28.1
dev: true
- /@rushstack/node-core-library@3.59.6(@types/node@18.17.8):
- resolution: {integrity: sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==}
+ /@rushstack/node-core-library@3.59.7(@types/node@18.17.8):
+ resolution: {integrity: sha512-ln1Drq0h+Hwa1JVA65x5mlSgUrBa1uHL+V89FqVWQgXd1vVIMhrtqtWGQrhTnFHxru5ppX+FY39VWELF/FjQCw==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
@@ -4739,20 +5091,20 @@ packages:
fs-extra: 7.0.1
import-lazy: 4.0.0
jju: 1.4.0
- resolve: 1.22.4
+ resolve: 1.22.3
semver: 7.5.4
z-schema: 5.0.5
dev: true
- /@rushstack/rig-package@0.4.0:
- resolution: {integrity: sha512-FnM1TQLJYwSiurP6aYSnansprK5l8WUK8VG38CmAaZs29ZeL1msjK0AP1VS4ejD33G0kE/2cpsPsS9jDenBMxw==}
+ /@rushstack/rig-package@0.4.1:
+ resolution: {integrity: sha512-AGRwpqlXNSp9LhUSz4HKI9xCluqQDt/obsQFdv/NYIekF3pTTPzc+HbQsIsjVjYnJ3DcmxOREVMhvrMEjpiq6g==}
dependencies:
- resolve: 1.22.4
+ resolve: 1.22.3
strip-json-comments: 3.1.1
dev: true
- /@rushstack/ts-command-line@4.15.1:
- resolution: {integrity: sha512-EL4jxZe5fhb1uVL/P/wQO+Z8Rc8FMiWJ1G7VgnPDvdIt5GVjRfK7vwzder1CZQiX3x0PY6uxENYLNGTFd1InRQ==}
+ /@rushstack/ts-command-line@4.15.2:
+ resolution: {integrity: sha512-5+C2uoJY8b+odcZD6coEe2XNC4ZjGB4vCMESbqW/8DHRWC/qIHfANdmN9F1wz/lAgxz72i7xRoVtPY2j7e4gpQ==}
dependencies:
'@types/argparse': 1.0.38
argparse: 1.0.10
@@ -5147,7 +5499,7 @@ packages:
react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0)
react-dom: 18.2.0(react@18.2.0)
telejson: 7.1.0
- tocbot: 4.21.0
+ tocbot: 4.21.1
ts-dedent: 2.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
@@ -5166,10 +5518,10 @@ packages:
'@storybook/node-logger': 7.3.2
'@types/ejs': 3.1.2
'@types/find-cache-dir': 3.2.1
- '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20)
+ '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.11)
browser-assert: 1.2.1
ejs: 3.1.9
- esbuild: 0.18.20
+ esbuild: 0.18.11
esbuild-plugin-alias: 0.2.1
express: 4.18.2
find-cache-dir: 3.3.2
@@ -5214,7 +5566,7 @@ packages:
magic-string: 0.30.1
remark-external-links: 8.0.0
remark-slug: 6.1.0
- rollup: 3.28.0
+ rollup: 3.26.2
typescript: 5.1.6
vite: 4.3.5(@types/node@18.17.8)
transitivePeerDependencies:
@@ -5256,8 +5608,8 @@ packages:
resolution: {integrity: sha512-RnqE/6KSelL9TQ44uCIU5xvUhY9zXM2Upanr0hao72x44rvlGQbV262pHdkVIYsn0wi8QzYtnoxQPLSqUfUDfA==}
hasBin: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/preset-env': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/preset-env': 7.22.10(@babel/core@7.22.10)
'@babel/types': 7.22.5
'@ndelangen/get-tarball': 3.0.7
'@storybook/codemod': 7.3.2
@@ -5267,7 +5619,7 @@ packages:
'@storybook/node-logger': 7.3.2
'@storybook/telemetry': 7.3.2
'@storybook/types': 7.3.2
- '@types/semver': 7.5.0
+ '@types/semver': 7.3.13
'@yarnpkg/fslib': 2.10.3
'@yarnpkg/libzip': 2.3.0
chalk: 4.1.2
@@ -5283,7 +5635,7 @@ packages:
get-port: 5.1.1
giget: 1.1.2
globby: 11.1.0
- jscodeshift: 0.14.0(@babel/preset-env@7.22.9)
+ jscodeshift: 0.14.0(@babel/preset-env@7.22.10)
leven: 3.1.0
ora: 5.4.1
prettier: 2.8.8
@@ -5324,8 +5676,8 @@ packages:
/@storybook/codemod@7.3.2:
resolution: {integrity: sha512-B2P91aYhlxdk7zeQOq0VBnDox2HEcboP2unSh6Vcf4V8j2FCdPvBIM7ZkT9p15FHfyOHvvrtf56XdBIyD8/XJA==}
dependencies:
- '@babel/core': 7.22.9
- '@babel/preset-env': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/preset-env': 7.22.10(@babel/core@7.22.10)
'@babel/types': 7.22.5
'@storybook/csf': 0.1.0
'@storybook/csf-tools': 7.3.2
@@ -5334,7 +5686,7 @@ packages:
'@types/cross-spawn': 6.0.2
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.14.0(@babel/preset-env@7.22.9)
+ jscodeshift: 0.14.0(@babel/preset-env@7.22.10)
lodash: 4.17.21
prettier: 2.8.8
recast: 0.23.1
@@ -5397,12 +5749,12 @@ packages:
'@storybook/node-logger': 7.3.2
'@storybook/types': 7.3.2
'@types/find-cache-dir': 3.2.1
- '@types/node': 16.18.42
+ '@types/node': 16.18.25
'@types/node-fetch': 2.6.4
'@types/pretty-hrtime': 1.0.1
chalk: 4.1.2
- esbuild: 0.18.20
- esbuild-register: 3.4.2(esbuild@0.18.20)
+ esbuild: 0.18.11
+ esbuild-register: 3.4.2(esbuild@0.18.11)
file-system-cache: 2.3.0
find-cache-dir: 3.3.2
find-up: 5.0.0
@@ -5452,9 +5804,9 @@ packages:
'@storybook/telemetry': 7.3.2
'@storybook/types': 7.3.2
'@types/detect-port': 1.3.2
- '@types/node': 16.18.42
+ '@types/node': 16.18.25
'@types/pretty-hrtime': 1.0.1
- '@types/semver': 7.5.0
+ '@types/semver': 7.3.13
better-opn: 3.0.2
chalk: 4.1.2
cli-table3: 0.6.3
@@ -5497,9 +5849,9 @@ packages:
/@storybook/csf-tools@7.3.2:
resolution: {integrity: sha512-54UaOsx9QZxiuMSpX01kSAEYuZYaB72Zz8ihlVrKZbIPTSJ6SYcM/jzNCGf1Rz7AjgU2UjXCSs5zBq5t37Nuqw==}
dependencies:
- '@babel/generator': 7.22.9
+ '@babel/generator': 7.22.10
'@babel/parser': 7.22.7
- '@babel/traverse': 7.22.8
+ '@babel/traverse': 7.22.10
'@babel/types': 7.22.5
'@storybook/csf': 0.1.0
'@storybook/types': 7.3.2
@@ -5979,12 +6331,12 @@ packages:
/@types/eslint-scope@3.7.4:
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
dependencies:
- '@types/eslint': 8.44.2
+ '@types/eslint': 8.37.0
'@types/estree': 1.0.1
dev: true
- /@types/eslint@8.44.2:
- resolution: {integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==}
+ /@types/eslint@8.37.0:
+ resolution: {integrity: sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==}
dependencies:
'@types/estree': 1.0.1
'@types/json-schema': 7.0.12
@@ -6087,8 +6439,8 @@ packages:
form-data: 3.0.1
dev: true
- /@types/node@16.18.42:
- resolution: {integrity: sha512-IrFfX/1oxDFQNpQzgt/BoP/hbMuQT68DPsNwzJmw8y3K8lfnPp0XymVN9GLFz+LobFmJGZ/peRzq+9wXYfCCtw==}
+ /@types/node@16.18.25:
+ resolution: {integrity: sha512-rUDO6s9Q/El1R1I21HG4qw/LstTHCPO/oQNAwI/4b2f9EWvMnqt4d3HJwPMawfZ3UvodB8516Yg+VAq54YM+eA==}
dev: true
/@types/node@18.17.8:
@@ -6142,6 +6494,7 @@ packages:
/@types/semver@7.5.0:
resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
+ dev: false
/@types/send@0.17.1:
resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
@@ -6180,8 +6533,8 @@ packages:
'@types/yargs-parser': 21.0.0
dev: true
- /@typescript-eslint/eslint-plugin@6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6):
- resolution: {integrity: sha512-rClGrMuyS/3j0ETa1Ui7s6GkLhfZGKZL3ZrChLeAiACBE/tRc1wq8SNZESUuluxhLj9FkUefRs2l6bCIArWBiQ==}
+ /@typescript-eslint/eslint-plugin@6.4.1(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-3F5PtBzUW0dYlq77Lcqo13fv+58KDwUib3BddilE8ajPJT+faGgxmI9Sw+I8ZS22BYwoir9ZhNXcLi+S+I2bkw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -6191,27 +6544,26 @@ packages:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.6.2
- '@typescript-eslint/parser': 6.2.0(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/scope-manager': 6.2.0
- '@typescript-eslint/type-utils': 6.2.0(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/utils': 6.2.0(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/visitor-keys': 6.2.0
+ '@eslint-community/regexpp': 4.7.0
+ '@typescript-eslint/parser': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/scope-manager': 6.4.1
+ '@typescript-eslint/type-utils': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/utils': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/visitor-keys': 6.4.1
debug: 4.3.4
eslint: 8.47.0
graphemer: 1.4.0
ignore: 5.2.4
natural-compare: 1.4.0
- natural-compare-lite: 1.4.0
semver: 7.5.4
- ts-api-utils: 1.0.1(typescript@5.1.6)
+ ts-api-utils: 1.0.2(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/parser@6.2.0(eslint@8.47.0)(typescript@5.1.6):
- resolution: {integrity: sha512-igVYOqtiK/UsvKAmmloQAruAdUHihsOCvplJpplPZ+3h4aDkC/UKZZNKgB6h93ayuYLuEymU3h8nF1xMRbh37g==}
+ /@typescript-eslint/parser@6.4.1(eslint@8.47.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-610G6KHymg9V7EqOaNBMtD1GgpAmGROsmfHJPXNLCU9bfIuLrkdOygltK784F6Crboyd5tBFayPB7Sf0McrQwg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -6220,10 +6572,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.2.0
- '@typescript-eslint/types': 6.2.0
- '@typescript-eslint/typescript-estree': 6.2.0(typescript@5.1.6)
- '@typescript-eslint/visitor-keys': 6.2.0
+ '@typescript-eslint/scope-manager': 6.4.1
+ '@typescript-eslint/types': 6.4.1
+ '@typescript-eslint/typescript-estree': 6.4.1(typescript@5.1.6)
+ '@typescript-eslint/visitor-keys': 6.4.1
debug: 4.3.4
eslint: 8.47.0
typescript: 5.1.6
@@ -6238,16 +6590,16 @@ packages:
'@typescript-eslint/types': 5.61.0
'@typescript-eslint/visitor-keys': 5.61.0
- /@typescript-eslint/scope-manager@6.2.0:
- resolution: {integrity: sha512-1ZMNVgm5nnHURU8ZSJ3snsHzpFeNK84rdZjluEVBGNu7jDymfqceB3kdIZ6A4xCfEFFhRIB6rF8q/JIqJd2R0Q==}
+ /@typescript-eslint/scope-manager@6.4.1:
+ resolution: {integrity: sha512-p/OavqOQfm4/Hdrr7kvacOSFjwQ2rrDVJRPxt/o0TOWdFnjJptnjnZ+sYDR7fi4OimvIuKp+2LCkc+rt9fIW+A==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.2.0
- '@typescript-eslint/visitor-keys': 6.2.0
+ '@typescript-eslint/types': 6.4.1
+ '@typescript-eslint/visitor-keys': 6.4.1
dev: false
- /@typescript-eslint/type-utils@6.2.0(eslint@8.47.0)(typescript@5.1.6):
- resolution: {integrity: sha512-DnGZuNU2JN3AYwddYIqrVkYW0uUQdv0AY+kz2M25euVNlujcN2u+rJgfJsBFlUEzBB6OQkUqSZPyuTLf2bP5mw==}
+ /@typescript-eslint/type-utils@6.4.1(eslint@8.47.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-7ON8M8NXh73SGZ5XvIqWHjgX2f+vvaOarNliGhjrJnv1vdjG0LVIz+ToYfPirOoBi56jxAKLfsLm40+RvxVVXA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -6256,11 +6608,11 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.2.0(typescript@5.1.6)
- '@typescript-eslint/utils': 6.2.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/typescript-estree': 6.4.1(typescript@5.1.6)
+ '@typescript-eslint/utils': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
debug: 4.3.4
eslint: 8.47.0
- ts-api-utils: 1.0.1(typescript@5.1.6)
+ ts-api-utils: 1.0.2(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
@@ -6270,8 +6622,8 @@ packages:
resolution: {integrity: sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /@typescript-eslint/types@6.2.0:
- resolution: {integrity: sha512-1nRRaDlp/XYJQLvkQJG5F3uBTno5SHPT7XVcJ5n1/k2WfNI28nJsvLakxwZRNY5spuatEKO7d5nZWsQpkqXwBA==}
+ /@typescript-eslint/types@6.4.1:
+ resolution: {integrity: sha512-zAAopbNuYu++ijY1GV2ylCsQsi3B8QvfPHVqhGdDcbx/NK5lkqMnCGU53amAjccSpk+LfeONxwzUhDzArSfZJg==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: false
@@ -6295,8 +6647,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/typescript-estree@6.2.0(typescript@5.1.6):
- resolution: {integrity: sha512-Mts6+3HQMSM+LZCglsc2yMIny37IhUgp1Qe8yJUYVyO6rHP7/vN0vajKu3JvHCBIy8TSiKddJ/Zwu80jhnGj1w==}
+ /@typescript-eslint/typescript-estree@6.4.1(typescript@5.1.6):
+ resolution: {integrity: sha512-xF6Y7SatVE/OyV93h1xGgfOkHr2iXuo8ip0gbfzaKeGGuKiAnzS+HtVhSPx8Www243bwlW8IF7X0/B62SzFftg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -6304,13 +6656,13 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.2.0
- '@typescript-eslint/visitor-keys': 6.2.0
+ '@typescript-eslint/types': 6.4.1
+ '@typescript-eslint/visitor-keys': 6.4.1
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- ts-api-utils: 1.0.1(typescript@5.1.6)
+ ts-api-utils: 1.0.2(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
@@ -6335,8 +6687,8 @@ packages:
- supports-color
- typescript
- /@typescript-eslint/utils@6.2.0(eslint@8.47.0)(typescript@5.1.6):
- resolution: {integrity: sha512-RCFrC1lXiX1qEZN8LmLrxYRhOkElEsPKTVSNout8DMzf8PeWoQG7Rxz2SadpJa3VSh5oYKGwt7j7X/VRg+Y3OQ==}
+ /@typescript-eslint/utils@6.4.1(eslint@8.47.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-F/6r2RieNeorU0zhqZNv89s9bDZSovv3bZQpUNOmmQK1L80/cV4KEu95YUJWi75u5PhboFoKUJBnZ4FQcoqhDw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -6344,9 +6696,9 @@ packages:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0)
'@types/json-schema': 7.0.12
'@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 6.2.0
- '@typescript-eslint/types': 6.2.0
- '@typescript-eslint/typescript-estree': 6.2.0(typescript@5.1.6)
+ '@typescript-eslint/scope-manager': 6.4.1
+ '@typescript-eslint/types': 6.4.1
+ '@typescript-eslint/typescript-estree': 6.4.1(typescript@5.1.6)
eslint: 8.47.0
semver: 7.5.4
transitivePeerDependencies:
@@ -6359,14 +6711,14 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
'@typescript-eslint/types': 5.61.0
- eslint-visitor-keys: 3.4.2
+ eslint-visitor-keys: 3.4.1
- /@typescript-eslint/visitor-keys@6.2.0:
- resolution: {integrity: sha512-QbaYUQVKKo9bgCzpjz45llCfwakyoxHetIy8CAvYCtd16Zu1KrpzNHofwF8kGkpPOxZB2o6kz+0nqH8ZkIzuoQ==}
+ /@typescript-eslint/visitor-keys@6.4.1:
+ resolution: {integrity: sha512-y/TyRJsbZPkJIZQXrHfdnxVnxyKegnpEvnRGNam7s3TRR2ykGefEWOhaef00/UUN3IZxizS7BTO3svd3lCOJRQ==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.2.0
- eslint-visitor-keys: 3.4.2
+ '@typescript-eslint/types': 6.4.1
+ eslint-visitor-keys: 3.4.1
dev: false
/@unhead/dom@1.1.30:
@@ -6436,9 +6788,9 @@ packages:
vite: ^4.0.0
vue: ^3.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.22.9)
- '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.22.9)
+ '@babel/core': 7.21.5
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.5)
+ '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.5)
vite: 4.3.5(@types/node@18.17.8)
vue: 3.3.4
transitivePeerDependencies:
@@ -6515,22 +6867,22 @@ packages:
pretty-format: 29.6.1
dev: true
- /@volar/language-core@1.10.0:
- resolution: {integrity: sha512-ddyWwSYqcbEZNFHm+Z3NZd6M7Ihjcwl/9B5cZd8kECdimVXUFdFi60XHWD27nrWtUQIsUYIG7Ca1WBwV2u2LSQ==}
+ /@volar/language-core@1.10.1:
+ resolution: {integrity: sha512-JnsM1mIPdfGPxmoOcK1c7HYAsL6YOv0TCJ4aW3AXPZN/Jb4R77epDyMZIVudSGjWMbvv/JfUa+rQ+dGKTmgwBA==}
dependencies:
- '@volar/source-map': 1.10.0
+ '@volar/source-map': 1.10.1
dev: true
- /@volar/source-map@1.10.0:
- resolution: {integrity: sha512-/ibWdcOzDGiq/GM1JU2eX8fH1bvAhl66hfe8yEgLEzg9txgr6qb5sQ/DEz5PcDL75tF5H5sCRRwn8Eu8ezi9mw==}
+ /@volar/source-map@1.10.1:
+ resolution: {integrity: sha512-3/S6KQbqa7pGC8CxPrg69qHLpOvkiPHGJtWPkI/1AXCsktkJ6gIk/5z4hyuMp8Anvs6eS/Kvp/GZa3ut3votKA==}
dependencies:
muggle-string: 0.3.1
dev: true
- /@volar/typescript@1.10.0:
- resolution: {integrity: sha512-OtqGtFbUKYC0pLNIk3mHQp5xWnvL1CJIUc9VE39VdZ/oqpoBh5jKfb9uJ45Y4/oP/WYTrif/Uxl1k8VTPz66Gg==}
+ /@volar/typescript@1.10.1:
+ resolution: {integrity: sha512-+iiO9yUSRHIYjlteT+QcdRq8b44qH19/eiUZtjNtuh6D9ailYM7DVR0zO2sEgJlvCaunw/CF9Ov2KooQBpR4VQ==}
dependencies:
- '@volar/language-core': 1.10.0
+ '@volar/language-core': 1.10.1
dev: true
/@vue-macros/common@1.4.1(rollup@3.28.1)(vue@3.3.4):
@@ -6557,13 +6909,13 @@ packages:
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
dev: true
- /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.22.9):
+ /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.21.5):
resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==}
dependencies:
- '@babel/helper-module-imports': 7.22.5
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.22.9)
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.8
+ '@babel/helper-module-imports': 7.21.4
+ '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.5)
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.5
'@babel/types': 7.22.5
'@vue/babel-helper-vue-transform-on': 1.0.2
camelcase: 6.3.0
@@ -6619,8 +6971,8 @@ packages:
typescript:
optional: true
dependencies:
- '@volar/language-core': 1.10.0
- '@volar/source-map': 1.10.0
+ '@volar/language-core': 1.10.1
+ '@volar/source-map': 1.10.1
'@vue/compiler-dom': 3.3.4
'@vue/reactivity': 3.3.4
'@vue/shared': 3.3.4
@@ -6686,7 +7038,7 @@ packages:
/@vue/typescript@1.8.8(typescript@5.1.6):
resolution: {integrity: sha512-jUnmMB6egu5wl342eaUH236v8tdcEPXXkPgj+eI/F6JwW/lb+yAU6U07ZbQ3MVabZRlupIlPESB7ajgAGixhow==}
dependencies:
- '@volar/typescript': 1.10.0
+ '@volar/typescript': 1.10.1
'@vue/language-core': 1.8.8(typescript@5.1.6)
transitivePeerDependencies:
- typescript
@@ -6717,109 +7069,109 @@ packages:
- vue
dev: false
- /@webassemblyjs/ast@1.11.6:
- resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==}
+ /@webassemblyjs/ast@1.11.5:
+ resolution: {integrity: sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==}
dependencies:
- '@webassemblyjs/helper-numbers': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/helper-numbers': 1.11.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.5
dev: true
- /@webassemblyjs/floating-point-hex-parser@1.11.6:
- resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
+ /@webassemblyjs/floating-point-hex-parser@1.11.5:
+ resolution: {integrity: sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==}
dev: true
- /@webassemblyjs/helper-api-error@1.11.6:
- resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
+ /@webassemblyjs/helper-api-error@1.11.5:
+ resolution: {integrity: sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==}
dev: true
- /@webassemblyjs/helper-buffer@1.11.6:
- resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==}
+ /@webassemblyjs/helper-buffer@1.11.5:
+ resolution: {integrity: sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==}
dev: true
- /@webassemblyjs/helper-numbers@1.11.6:
- resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
+ /@webassemblyjs/helper-numbers@1.11.5:
+ resolution: {integrity: sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==}
dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.6
- '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/floating-point-hex-parser': 1.11.5
+ '@webassemblyjs/helper-api-error': 1.11.5
'@xtuc/long': 4.2.2
dev: true
- /@webassemblyjs/helper-wasm-bytecode@1.11.6:
- resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
+ /@webassemblyjs/helper-wasm-bytecode@1.11.5:
+ resolution: {integrity: sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==}
dev: true
- /@webassemblyjs/helper-wasm-section@1.11.6:
- resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==}
+ /@webassemblyjs/helper-wasm-section@1.11.5:
+ resolution: {integrity: sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==}
dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-buffer': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/wasm-gen': 1.11.6
+ '@webassemblyjs/ast': 1.11.5
+ '@webassemblyjs/helper-buffer': 1.11.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.5
+ '@webassemblyjs/wasm-gen': 1.11.5
dev: true
- /@webassemblyjs/ieee754@1.11.6:
- resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
+ /@webassemblyjs/ieee754@1.11.5:
+ resolution: {integrity: sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==}
dependencies:
'@xtuc/ieee754': 1.2.0
dev: true
- /@webassemblyjs/leb128@1.11.6:
- resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
+ /@webassemblyjs/leb128@1.11.5:
+ resolution: {integrity: sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==}
dependencies:
'@xtuc/long': 4.2.2
dev: true
- /@webassemblyjs/utf8@1.11.6:
- resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
+ /@webassemblyjs/utf8@1.11.5:
+ resolution: {integrity: sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==}
dev: true
- /@webassemblyjs/wasm-edit@1.11.6:
- resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==}
+ /@webassemblyjs/wasm-edit@1.11.5:
+ resolution: {integrity: sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==}
dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-buffer': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/helper-wasm-section': 1.11.6
- '@webassemblyjs/wasm-gen': 1.11.6
- '@webassemblyjs/wasm-opt': 1.11.6
- '@webassemblyjs/wasm-parser': 1.11.6
- '@webassemblyjs/wast-printer': 1.11.6
+ '@webassemblyjs/ast': 1.11.5
+ '@webassemblyjs/helper-buffer': 1.11.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.5
+ '@webassemblyjs/helper-wasm-section': 1.11.5
+ '@webassemblyjs/wasm-gen': 1.11.5
+ '@webassemblyjs/wasm-opt': 1.11.5
+ '@webassemblyjs/wasm-parser': 1.11.5
+ '@webassemblyjs/wast-printer': 1.11.5
dev: true
- /@webassemblyjs/wasm-gen@1.11.6:
- resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==}
+ /@webassemblyjs/wasm-gen@1.11.5:
+ resolution: {integrity: sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==}
dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/ast': 1.11.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.5
+ '@webassemblyjs/ieee754': 1.11.5
+ '@webassemblyjs/leb128': 1.11.5
+ '@webassemblyjs/utf8': 1.11.5
dev: true
- /@webassemblyjs/wasm-opt@1.11.6:
- resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==}
+ /@webassemblyjs/wasm-opt@1.11.5:
+ resolution: {integrity: sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==}
dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-buffer': 1.11.6
- '@webassemblyjs/wasm-gen': 1.11.6
- '@webassemblyjs/wasm-parser': 1.11.6
+ '@webassemblyjs/ast': 1.11.5
+ '@webassemblyjs/helper-buffer': 1.11.5
+ '@webassemblyjs/wasm-gen': 1.11.5
+ '@webassemblyjs/wasm-parser': 1.11.5
dev: true
- /@webassemblyjs/wasm-parser@1.11.6:
- resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==}
+ /@webassemblyjs/wasm-parser@1.11.5:
+ resolution: {integrity: sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==}
dependencies:
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/helper-api-error': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/ast': 1.11.5
+ '@webassemblyjs/helper-api-error': 1.11.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.5
+ '@webassemblyjs/ieee754': 1.11.5
+ '@webassemblyjs/leb128': 1.11.5
+ '@webassemblyjs/utf8': 1.11.5
dev: true
- /@webassemblyjs/wast-printer@1.11.6:
- resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==}
+ /@webassemblyjs/wast-printer@1.11.5:
+ resolution: {integrity: sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==}
dependencies:
- '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/ast': 1.11.5
'@xtuc/long': 4.2.2
dev: true
@@ -6831,13 +7183,13 @@ packages:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
dev: true
- /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20):
+ /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.11):
resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==}
engines: {node: '>=14.15.0'}
peerDependencies:
esbuild: '>=0.10.0'
dependencies:
- esbuild: 0.18.20
+ esbuild: 0.18.11
tslib: 2.5.0
dev: true
@@ -6892,8 +7244,8 @@ packages:
negotiator: 0.6.3
dev: true
- /acorn-import-assertions@1.9.0(acorn@8.10.0):
- resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
+ /acorn-import-assertions@1.8.0(acorn@8.10.0):
+ resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
peerDependencies:
acorn: ^8
dependencies:
@@ -6923,6 +7275,12 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ /acorn@8.9.0:
+ resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: true
+
/address@1.2.2:
resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
engines: {node: '>= 10.0.0'}
@@ -7233,19 +7591,19 @@ packages:
- debug
dev: true
- /babel-core@7.0.0-bridge.0(@babel/core@7.22.9):
+ /babel-core@7.0.0-bridge.0(@babel/core@7.22.10):
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
dev: true
/babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-plugin-utils': 7.21.5
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -7254,38 +7612,38 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.9):
+ /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.10):
resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.9):
+ /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.10):
resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.9)
- core-js-compat: 3.32.0
+ '@babel/core': 7.22.10
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10)
+ core-js-compat: 3.32.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.9):
+ /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.10):
resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.9)
+ '@babel/core': 7.22.10
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.10)
transitivePeerDependencies:
- supports-color
dev: true
@@ -7403,11 +7761,22 @@ packages:
hasBin: true
dependencies:
caniuse-lite: 1.0.30001522
- electron-to-chromium: 1.4.477
+ electron-to-chromium: 1.4.499
node-releases: 2.0.13
update-browserslist-db: 1.0.11(browserslist@4.21.10)
dev: true
+ /browserslist@4.21.5:
+ resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001481
+ electron-to-chromium: 1.4.377
+ node-releases: 2.0.10
+ update-browserslist-db: 1.0.11(browserslist@4.21.5)
+ dev: true
+
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
dependencies:
@@ -7532,14 +7901,14 @@ packages:
/caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.21.10
- caniuse-lite: 1.0.30001517
+ browserslist: 4.21.5
+ caniuse-lite: 1.0.30001481
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite@1.0.30001517:
- resolution: {integrity: sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==}
+ /caniuse-lite@1.0.30001481:
+ resolution: {integrity: sha512-KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ==}
dev: true
/caniuse-lite@1.0.30001522:
@@ -7601,7 +7970,7 @@ packages:
pkg-types: 1.0.3
scule: 1.0.0
semver: 7.5.4
- std-env: 3.4.2
+ std-env: 3.4.3
yaml: 2.3.1
transitivePeerDependencies:
- supports-color
@@ -7641,7 +8010,7 @@ packages:
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
- fsevents: 2.3.3
+ fsevents: 2.3.2
dev: true
/chownr@1.1.4:
@@ -7667,6 +8036,10 @@ packages:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
+ /citty@0.1.1:
+ resolution: {integrity: sha512-fL/EEp9TyXlNkgYFQYNqtMJhnAk2tAq8lCST7O5LPn1NrzWPsOKE5wafR7J+8W87oxqolpxNli+w7khq5WP7tg==}
+ dev: true
+
/citty@0.1.2:
resolution: {integrity: sha512-Me9nf0/BEmMOnuQzMOVXgpzkMUNbd0Am8lTl/13p0aRGAoLGk5T5sdet/42CrIGmWdG67BgHUhcKK1my1ujUEg==}
dependencies:
@@ -7988,8 +8361,8 @@ packages:
keygrip: 1.1.0
dev: true
- /core-js-compat@3.32.0:
- resolution: {integrity: sha512-7a9a3D1k4UCVKnLhrgALyFcP7YCsLOQIxPd0dKjf/6GuPcgyiGP70ewWdCGrSK7evyhymi0qO4EqCmSJofDeYw==}
+ /core-js-compat@3.32.1:
+ resolution: {integrity: sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==}
dependencies:
browserslist: 4.21.10
dev: true
@@ -8049,7 +8422,7 @@ packages:
postcss: 8.4.28
dev: true
- /css-loader@5.2.7(webpack@5.88.2):
+ /css-loader@5.2.7(webpack@5.81.0):
resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -8065,7 +8438,7 @@ packages:
postcss-value-parser: 4.2.0
schema-utils: 3.1.2
semver: 7.5.4
- webpack: 5.88.2(esbuild@0.18.11)
+ webpack: 5.81.0(esbuild@0.18.11)
dev: true
/css-select@5.1.0:
@@ -8296,7 +8669,7 @@ packages:
dependencies:
bundle-name: 3.0.0
default-browser-id: 3.0.0
- execa: 7.2.0
+ execa: 7.1.1
titleize: 3.0.0
dev: true
@@ -8549,8 +8922,12 @@ packages:
jake: 10.8.5
dev: true
- /electron-to-chromium@1.4.477:
- resolution: {integrity: sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw==}
+ /electron-to-chromium@1.4.377:
+ resolution: {integrity: sha512-H3BYG6DW5Z+l0xcfXaicJGxrpA4kMlCxnN71+iNX+dBLkRMOdVJqFJiAmbNZZKA1zISpRg17JR03qGifXNsJtw==}
+ dev: true
+
+ /electron-to-chromium@1.4.499:
+ resolution: {integrity: sha512-0NmjlYBLKVHva4GABWAaHuPJolnDuL0AhV3h1hES6rcLCWEIbRL6/8TghfsVwkx6TEroQVdliX7+aLysUpKvjw==}
dev: true
/emoji-regex@8.0.0:
@@ -8640,8 +9017,8 @@ packages:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
dev: true
- /es-module-lexer@1.3.0:
- resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==}
+ /es-module-lexer@1.2.1:
+ resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==}
dev: true
/es6-object-assign@1.1.0:
@@ -8652,13 +9029,13 @@ packages:
resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
dev: true
- /esbuild-register@3.4.2(esbuild@0.18.20):
+ /esbuild-register@3.4.2(esbuild@0.18.11):
resolution: {integrity: sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==}
peerDependencies:
esbuild: '>=0.12 <1'
dependencies:
debug: 4.3.4
- esbuild: 0.18.20
+ esbuild: 0.18.11
transitivePeerDependencies:
- supports-color
dev: true
@@ -8804,17 +9181,17 @@ packages:
engines: {node: '>=12'}
dev: true
- /eslint-import-resolver-node@0.3.9:
- resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+ /eslint-import-resolver-node@0.3.7:
+ resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
dependencies:
debug: 3.2.7
- is-core-module: 2.13.0
- resolve: 1.22.4
+ is-core-module: 2.12.1
+ resolve: 1.22.3
transitivePeerDependencies:
- supports-color
dev: false
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.2.0)(eslint-import-resolver-node@0.3.9)(eslint@8.47.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.7)(eslint@8.47.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -8835,10 +9212,10 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.2.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/parser': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
debug: 3.2.7
eslint: 8.47.0
- eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-node: 0.3.7
transitivePeerDependencies:
- supports-color
dev: false
@@ -8846,7 +9223,7 @@ packages:
/eslint-plugin-antfu@0.40.0(eslint@8.47.0)(typescript@5.1.6):
resolution: {integrity: sha512-2L218fh+ILn+SC0vbIgoK1UCP5XVoCHqm3fJskLfpYJYjjm4BEaqEWKhmTOX0V1tDeySSbTEuInfALpfZry3Aw==}
dependencies:
- '@typescript-eslint/utils': 6.2.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/utils': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
transitivePeerDependencies:
- eslint
- supports-color
@@ -8860,7 +9237,7 @@ packages:
eslint: '>=8'
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0)
- '@eslint-community/regexpp': 4.6.2
+ '@eslint-community/regexpp': 4.5.0
eslint: 8.47.0
dev: false
@@ -8881,7 +9258,7 @@ packages:
htmlparser2: 8.0.2
dev: false
- /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.2.0)(eslint@8.47.0):
+ /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.4.1)(eslint@8.47.0):
resolution: {integrity: sha512-X3Z+dp9nZw7d/y41EDO6JyFw4WVMOT91SFuoJvL0C0/4M1l6NxQ5mLTjXHuYhq0AazW75pAmj25yMk5wPMzjsw==}
engines: {node: '>=12'}
peerDependencies:
@@ -8890,12 +9267,12 @@ packages:
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.47.0
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.2.0)(eslint-import-resolver-node@0.3.9)(eslint@8.47.0)
- get-tsconfig: 4.7.0
+ eslint-import-resolver-node: 0.3.7
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.7)(eslint@8.47.0)
+ get-tsconfig: 4.6.2
is-glob: 4.0.3
minimatch: 3.1.2
- resolve: 1.22.4
+ resolve: 1.22.3
semver: 7.5.4
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -8904,7 +9281,7 @@ packages:
- supports-color
dev: false
- /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.2.0)(eslint@8.47.0)(typescript@5.1.6):
+ /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.4.1)(eslint@8.47.0)(typescript@5.1.6):
resolution: {integrity: sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -8917,7 +9294,7 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/eslint-plugin': 6.4.1(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6)
'@typescript-eslint/utils': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
eslint: 8.47.0
transitivePeerDependencies:
@@ -9020,7 +9397,7 @@ packages:
strip-indent: 3.0.0
dev: false
- /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.2.0)(eslint@8.47.0):
+ /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.4.1)(eslint@8.47.0):
resolution: {integrity: sha512-sduiswLJfZHeeBJ+MQaG+xYzSWdRXoSw61DpU13mzWumCkR0ufD0HmO4kdNokjrkluMHpj/7PJeN35pgbhW3kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -9030,7 +9407,7 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/eslint-plugin': 6.4.1(@typescript-eslint/parser@6.4.1)(eslint@8.47.0)(typescript@5.1.6)
eslint: 8.47.0
eslint-rule-composer: 0.3.0
dev: false
@@ -9080,6 +9457,14 @@ packages:
esrecurse: 4.3.0
estraverse: 4.3.0
+ /eslint-scope@7.2.0:
+ resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+ dev: false
+
/eslint-scope@7.2.2:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -9087,8 +9472,8 @@ packages:
esrecurse: 4.3.0
estraverse: 5.3.0
- /eslint-visitor-keys@3.4.2:
- resolution: {integrity: sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==}
+ /eslint-visitor-keys@3.4.1:
+ resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/eslint-visitor-keys@3.4.3:
@@ -9101,7 +9486,7 @@ packages:
hasBin: true
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0)
- '@eslint-community/regexpp': 4.6.2
+ '@eslint-community/regexpp': 4.7.0
'@eslint/eslintrc': 2.1.2
'@eslint/js': 8.47.0
'@humanwhocodes/config-array': 0.11.10
@@ -9147,6 +9532,15 @@ packages:
tsx: 3.12.7
dev: true
+ /espree@9.6.0:
+ resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ acorn: 8.10.0
+ acorn-jsx: 5.3.2(acorn@8.10.0)
+ eslint-visitor-keys: 3.4.1
+ dev: false
+
/espree@9.6.1:
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -9233,6 +9627,21 @@ packages:
strip-final-newline: 2.0.0
dev: true
+ /execa@7.1.1:
+ resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==}
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+ dependencies:
+ cross-spawn: 7.0.3
+ get-stream: 6.0.1
+ human-signals: 4.3.1
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.1.0
+ onetime: 6.0.0
+ signal-exit: 3.0.7
+ strip-final-newline: 3.0.0
+ dev: true
+
/execa@7.2.0:
resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
@@ -9312,7 +9721,7 @@ packages:
enhanced-resolve: 5.15.0
mlly: 1.4.0
pathe: 1.1.1
- ufo: 1.2.0
+ ufo: 1.1.2
dev: true
/extract-comments@1.1.0:
@@ -9618,8 +10027,8 @@ packages:
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- /fsevents@2.3.3:
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ /fsevents@2.3.2:
+ resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
@@ -9705,13 +10114,6 @@ packages:
resolution: {integrity: sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==}
dependencies:
resolve-pkg-maps: 1.0.0
- dev: true
-
- /get-tsconfig@4.7.0:
- resolution: {integrity: sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==}
- dependencies:
- resolve-pkg-maps: 1.0.0
- dev: false
/giget@1.1.2:
resolution: {integrity: sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==}
@@ -9721,7 +10123,7 @@ packages:
defu: 6.1.2
https-proxy-agent: 5.0.1
mri: 1.2.0
- node-fetch-native: 1.3.0
+ node-fetch-native: 1.2.0
pathe: 1.1.1
tar: 6.1.13
transitivePeerDependencies:
@@ -9890,10 +10292,10 @@ packages:
dependencies:
cookie-es: 1.0.0
defu: 6.1.2
- destr: 2.0.1
+ destr: 2.0.0
iron-webcrypto: 0.7.0
radix3: 1.0.1
- ufo: 1.2.0
+ ufo: 1.1.2
uncrypto: 0.1.3
dev: true
@@ -10288,14 +10690,14 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- /is-core-module@2.12.1:
- resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==}
+ /is-core-module@2.12.0:
+ resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==}
dependencies:
has: 1.0.3
- dev: false
+ dev: true
- /is-core-module@2.13.0:
- resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
+ /is-core-module@2.12.1:
+ resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==}
dependencies:
has: 1.0.3
@@ -10543,7 +10945,7 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.21.5
'@babel/parser': 7.22.7
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
@@ -10604,19 +11006,19 @@ packages:
resolution: {integrity: sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
+ '@jest/types': 29.5.0
'@types/graceful-fs': 4.1.6
'@types/node': 18.17.8
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 29.4.3
- jest-util: 29.6.2
+ jest-util: 29.5.0
jest-worker: 29.5.0
micromatch: 4.0.5
walker: 1.0.8
optionalDependencies:
- fsevents: 2.3.3
+ fsevents: 2.3.2
dev: true
/jest-mock@27.5.1:
@@ -10632,11 +11034,11 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
- /jest-util@29.6.2:
- resolution: {integrity: sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w==}
+ /jest-util@29.5.0:
+ resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
+ '@jest/types': 29.5.0
'@types/node': 18.17.8
chalk: 4.1.2
ci-info: 3.8.0
@@ -10658,7 +11060,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@types/node': 18.17.8
- jest-util: 29.6.2
+ jest-util: 29.5.0
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
@@ -10709,23 +11111,23 @@ packages:
dependencies:
argparse: 2.0.1
- /jscodeshift@0.14.0(@babel/preset-env@7.22.9):
+ /jscodeshift@0.14.0(@babel/preset-env@7.22.10):
resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
hasBin: true
peerDependencies:
'@babel/preset-env': ^7.1.6
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/parser': 7.22.7
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/preset-env': 7.22.9(@babel/core@7.22.9)
- '@babel/preset-flow': 7.21.4(@babel/core@7.22.9)
- '@babel/preset-typescript': 7.21.5(@babel/core@7.22.9)
- '@babel/register': 7.21.0(@babel/core@7.22.9)
- babel-core: 7.0.0-bridge.0(@babel/core@7.22.9)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.10)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10)
+ '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.22.10)
+ '@babel/preset-env': 7.22.10(@babel/core@7.22.10)
+ '@babel/preset-flow': 7.21.4(@babel/core@7.22.10)
+ '@babel/preset-typescript': 7.21.5(@babel/core@7.22.10)
+ '@babel/register': 7.21.0(@babel/core@7.22.10)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.22.10)
chalk: 4.1.2
flow-parser: 0.205.0
graceful-fs: 4.2.11
@@ -10812,8 +11214,8 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.10.0
- eslint-visitor-keys: 3.4.2
- espree: 9.6.1
+ eslint-visitor-keys: 3.4.1
+ espree: 9.6.0
semver: 7.5.4
dev: false
@@ -11007,7 +11409,7 @@ packages:
http-shutdown: 1.2.2
ip-regex: 5.0.0
node-forge: 1.3.1
- ufo: 1.2.0
+ ufo: 1.1.2
dev: true
/listr2@6.6.1:
@@ -11186,6 +11588,11 @@ packages:
engines: {node: '>=16.14'}
dev: true
+ /lru-cache@9.1.1:
+ resolution: {integrity: sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==}
+ engines: {node: 14 || >=16.14}
+ dev: true
+
/lz-string@1.5.0:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
@@ -11230,7 +11637,7 @@ packages:
engines: {node: '>=6'}
dependencies:
pify: 4.0.1
- semver: 5.7.2
+ semver: 5.7.1
dev: true
/make-dir@3.1.0:
@@ -11510,7 +11917,7 @@ packages:
acorn: 8.10.0
pathe: 1.1.1
pkg-types: 1.0.3
- ufo: 1.2.0
+ ufo: 1.1.2
dev: true
/mri@1.2.0:
@@ -11555,10 +11962,6 @@ packages:
hasBin: true
dev: true
- /natural-compare-lite@1.4.0:
- resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
- dev: false
-
/natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
@@ -11578,28 +11981,28 @@ packages:
dependencies:
'@cloudflare/kv-asset-handler': 0.3.0
'@netlify/functions': 1.6.0
- '@rollup/plugin-alias': 5.0.0(rollup@3.28.0)
- '@rollup/plugin-commonjs': 25.0.4(rollup@3.28.0)
- '@rollup/plugin-inject': 5.0.3(rollup@3.28.0)
- '@rollup/plugin-json': 6.0.0(rollup@3.28.0)
- '@rollup/plugin-node-resolve': 15.1.0(rollup@3.28.0)
- '@rollup/plugin-replace': 5.0.2(rollup@3.28.0)
- '@rollup/plugin-terser': 0.4.3(rollup@3.28.0)
- '@rollup/plugin-wasm': 6.1.3(rollup@3.28.0)
- '@rollup/pluginutils': 5.0.2(rollup@3.28.0)
+ '@rollup/plugin-alias': 5.0.0(rollup@3.26.2)
+ '@rollup/plugin-commonjs': 25.0.2(rollup@3.26.2)
+ '@rollup/plugin-inject': 5.0.3(rollup@3.26.2)
+ '@rollup/plugin-json': 6.0.0(rollup@3.26.2)
+ '@rollup/plugin-node-resolve': 15.1.0(rollup@3.26.2)
+ '@rollup/plugin-replace': 5.0.2(rollup@3.26.2)
+ '@rollup/plugin-terser': 0.4.3(rollup@3.26.2)
+ '@rollup/plugin-wasm': 6.1.3(rollup@3.26.2)
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.2)
'@types/http-proxy': 1.17.11
'@vercel/nft': 0.22.6
archiver: 5.3.1
c12: 1.4.2
chalk: 5.3.0
chokidar: 3.5.3
- citty: 0.1.2
+ citty: 0.1.1
consola: 3.2.3
cookie-es: 1.0.0
defu: 6.1.2
- destr: 2.0.1
+ destr: 2.0.0
dot-prop: 7.2.0
- esbuild: 0.18.20
+ esbuild: 0.18.11
escape-string-regexp: 5.0.0
etag: 1.8.1
fs-extra: 11.1.1
@@ -11618,27 +12021,27 @@ packages:
mime: 3.0.0
mlly: 1.4.0
mri: 1.2.0
- node-fetch-native: 1.3.0
+ node-fetch-native: 1.2.0
ofetch: 1.2.1
ohash: 1.1.2
openapi-typescript: 6.3.2
pathe: 1.1.1
perfect-debounce: 1.0.0
pkg-types: 1.0.3
- pretty-bytes: 6.1.1
+ pretty-bytes: 6.1.0
radix3: 1.0.1
- rollup: 3.28.0
- rollup-plugin-visualizer: 5.9.2(rollup@3.28.0)
+ rollup: 3.26.2
+ rollup-plugin-visualizer: 5.9.2(rollup@3.26.2)
scule: 1.0.0
semver: 7.5.4
serve-placeholder: 2.0.1
serve-static: 1.15.0
source-map-support: 0.5.21
- std-env: 3.4.2
- ufo: 1.2.0
+ std-env: 3.3.3
+ ufo: 1.1.2
uncrypto: 0.1.3
unenv: 1.5.1
- unimport: 3.0.14(rollup@3.28.0)
+ unimport: 3.0.14(rollup@3.26.2)
unstorage: 1.8.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -11675,10 +12078,6 @@ packages:
resolution: {integrity: sha512-5IAMBTl9p6PaAjYCnMv5FmqIF6GcZnawAVnzaCG0rX2aYZJ4CxEkZNtVPuTRug7fL7wyM5BQYTlAzcyMPi6oTQ==}
dev: true
- /node-fetch-native@1.3.0:
- resolution: {integrity: sha512-4AvgYFJ6VG+UF5Sm1LMq8Wvo8RTMZ1kTLqgZW3m5HjHfoUCHSkquyP3wwMQ82PW9SSwT+kWM2bXZyR0c2obqqw==}
- dev: true
-
/node-fetch-native@1.4.0:
resolution: {integrity: sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==}
dev: true
@@ -11722,6 +12121,10 @@ packages:
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
dev: true
+ /node-releases@2.0.10:
+ resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
+ dev: true
+
/node-releases@2.0.13:
resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
dev: true
@@ -11746,8 +12149,8 @@ packages:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.4
- semver: 5.7.2
+ resolve: 1.22.3
+ semver: 5.7.1
validate-npm-package-license: 3.0.4
/normalize-path@3.0.0:
@@ -11793,7 +12196,7 @@ packages:
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
optionalDependencies:
- fsevents: 2.3.3
+ fsevents: 2.3.2
dev: true
/nuxt@3.6.5(@types/node@18.17.8)(eslint@8.47.0)(rollup@3.28.1)(typescript@5.1.6):
@@ -11960,7 +12363,7 @@ packages:
resolution: {integrity: sha512-O7bumfWgUXlJefT1Y41SF4vsCvzeUYmnKABuOKStheCObzrkWPDmqJc+RJVU+57oFu9bITcrUq8sKFIHgjCnTg==}
engines: {node: ^14.16.0 || >=16.10.0}
dependencies:
- execa: 7.2.0
+ execa: 7.1.1
dev: true
/object-assign@4.1.1:
@@ -12202,7 +12605,7 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.22.10
+ '@babel/code-frame': 7.21.4
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -12259,7 +12662,7 @@ packages:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.0.0
+ lru-cache: 9.1.1
minipass: 5.0.0
dev: true
@@ -12396,7 +12799,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.21.5
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.4.28
@@ -12409,7 +12812,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.21.5
postcss: 8.4.28
postcss-value-parser: 4.2.0
dev: true
@@ -12478,7 +12881,7 @@ packages:
postcss: 8.4.28
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.4
+ resolve: 1.22.3
dev: true
/postcss-import@15.1.0(postcss@8.4.28):
@@ -12490,7 +12893,7 @@ packages:
postcss: 8.4.28
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.4
+ resolve: 1.22.2
dev: true
/postcss-js@4.0.1(postcss@8.4.28):
@@ -12520,7 +12923,7 @@ packages:
yaml: 2.3.1
dev: true
- /postcss-loader@4.3.0(postcss@8.4.28)(webpack@5.88.2):
+ /postcss-loader@4.3.0(postcss@8.4.28)(webpack@5.81.0):
resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -12533,7 +12936,7 @@ packages:
postcss: 8.4.28
schema-utils: 3.1.2
semver: 7.5.4
- webpack: 5.88.2(esbuild@0.18.11)
+ webpack: 5.81.0(esbuild@0.18.11)
dev: true
/postcss-merge-longhand@6.0.0(postcss@8.4.28):
@@ -12553,7 +12956,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.21.5
caniuse-api: 3.0.0
cssnano-utils: 4.0.0(postcss@8.4.28)
postcss: 8.4.28
@@ -12588,7 +12991,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.21.5
cssnano-utils: 4.0.0(postcss@8.4.28)
postcss: 8.4.28
postcss-value-parser: 4.2.0
@@ -12731,7 +13134,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.21.5
postcss: 8.4.28
postcss-value-parser: 4.2.0
dev: true
@@ -12773,7 +13176,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.21.5
caniuse-api: 3.0.0
postcss: 8.4.28
dev: true
@@ -12833,6 +13236,14 @@ packages:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: true
+ /postcss@8.4.25:
+ resolution: {integrity: sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.6
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
+
/postcss@8.4.28:
resolution: {integrity: sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==}
engines: {node: ^10 || ^12 || >=14}
@@ -12851,6 +13262,11 @@ packages:
hasBin: true
dev: true
+ /pretty-bytes@6.1.0:
+ resolution: {integrity: sha512-Rk753HI8f4uivXi4ZCIYdhmG1V+WKzvRMg/X+M42a6t7D07RcmopXJMDNk6N++7Bl75URRGsb40ruvg7Hcp2wQ==}
+ engines: {node: ^14.13.1 || >=16.0.0}
+ dev: true
+
/pretty-bytes@6.1.1:
resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==}
engines: {node: ^14.13.1 || >=16.0.0}
@@ -12975,7 +13391,7 @@ packages:
jstransformer: 1.0.0
pug-error: 2.0.0
pug-walk: 2.0.0
- resolve: 1.22.4
+ resolve: 1.22.3
dev: true
/pug-lexer@5.0.1:
@@ -13134,7 +13550,7 @@ packages:
resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==}
dependencies:
defu: 6.1.2
- destr: 2.0.1
+ destr: 2.0.0
flat: 5.0.2
dev: true
@@ -13347,8 +13763,8 @@ packages:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
dev: true
- /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
dev: true
@@ -13457,7 +13873,7 @@ packages:
/resolve@1.19.0:
resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
dependencies:
- is-core-module: 2.13.0
+ is-core-module: 2.12.1
path-parse: 1.0.7
dev: true
@@ -13465,7 +13881,7 @@ packages:
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
hasBin: true
dependencies:
- is-core-module: 2.13.0
+ is-core-module: 2.12.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
dev: true
@@ -13474,16 +13890,7 @@ packages:
resolution: {integrity: sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==}
hasBin: true
dependencies:
- is-core-module: 2.13.0
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: false
-
- /resolve@1.22.4:
- resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==}
- hasBin: true
- dependencies:
- is-core-module: 2.13.0
+ is-core-module: 2.12.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -13553,7 +13960,7 @@ packages:
'@babel/code-frame': 7.22.10
dev: true
- /rollup-plugin-visualizer@5.9.2(rollup@3.28.0):
+ /rollup-plugin-visualizer@5.9.2(rollup@3.26.2):
resolution: {integrity: sha512-waHktD5mlWrYFrhOLbti4YgQCn1uR24nYsNuXxg7LkPH8KdTXVWR9DNY1WU0QqokyMixVXJS4J04HNrVTMP01A==}
engines: {node: '>=14'}
hasBin: true
@@ -13565,7 +13972,7 @@ packages:
dependencies:
open: 8.4.2
picomatch: 2.3.1
- rollup: 3.28.0
+ rollup: 3.26.2
source-map: 0.7.4
yargs: 17.7.2
dev: true
@@ -13592,22 +13999,14 @@ packages:
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
- fsevents: 2.3.3
+ fsevents: 2.3.2
/rollup@3.26.2:
resolution: {integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
- /rollup@3.28.0:
- resolution: {integrity: sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
- hasBin: true
- optionalDependencies:
- fsevents: 2.3.3
+ fsevents: 2.3.2
dev: true
/rollup@3.28.1:
@@ -13615,7 +14014,7 @@ packages:
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
- fsevents: 2.3.3
+ fsevents: 2.3.2
dev: true
/rrweb-cssom@0.6.0:
@@ -13667,16 +14066,7 @@ packages:
resolution: {integrity: sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/json-schema': 7.0.12
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
- dev: true
-
- /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.12
+ '@types/json-schema': 7.0.11
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
dev: true
@@ -13685,10 +14075,15 @@ packages:
resolution: {integrity: sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==}
dev: true
- /semver@5.7.2:
- resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+ /semver@5.7.1:
+ resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
+ /semver@6.3.0:
+ resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
+ hasBin: true
+ dev: true
+
/semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
@@ -13933,8 +14328,8 @@ packages:
resolution: {integrity: sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg==}
dev: true
- /std-env@3.4.2:
- resolution: {integrity: sha512-Cw6eJDX9AxEEL0g5pYj8Zx9KXtDf60rxwS2ze0HBanS0aKhj1sBlzcsmg+R0qYy8byFa854/yR2X5ZmBSClVmg==}
+ /std-env@3.4.3:
+ resolution: {integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q==}
dev: true
/stop-iteration-iterator@1.0.0:
@@ -14091,7 +14486,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.21.5
postcss: 8.4.28
postcss-selector-parser: 6.0.11
dev: true
@@ -14285,8 +14680,8 @@ packages:
unique-string: 2.0.0
dev: true
- /terser-webpack-plugin@5.3.9(esbuild@0.18.11)(webpack@5.88.2):
- resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
+ /terser-webpack-plugin@5.3.7(esbuild@0.18.11)(webpack@5.81.0):
+ resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -14301,13 +14696,13 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.19
+ '@jridgewell/trace-mapping': 0.3.18
esbuild: 0.18.11
jest-worker: 27.5.1
- schema-utils: 3.3.0
+ schema-utils: 3.1.2
serialize-javascript: 6.0.1
- terser: 5.19.2
- webpack: 5.88.2(esbuild@0.18.11)
+ terser: 5.18.2
+ webpack: 5.81.0(esbuild@0.18.11)
dev: true
/terser@5.18.2:
@@ -14321,17 +14716,6 @@ packages:
source-map-support: 0.5.21
dev: true
- /terser@5.19.2:
- resolution: {integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- '@jridgewell/source-map': 0.3.5
- acorn: 8.10.0
- commander: 2.20.3
- source-map-support: 0.5.21
- dev: true
-
/test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
@@ -14412,8 +14796,8 @@ packages:
dependencies:
is-number: 7.0.0
- /tocbot@4.21.0:
- resolution: {integrity: sha512-vXk8htr8mIl3hc2s2mDkaPTBfqmqZA2o0x7eXbxUibdrpEIPdpM0L9hH/RvEvlgSM+ZTgS34sGipk5+VrLJCLA==}
+ /tocbot@4.21.1:
+ resolution: {integrity: sha512-IfajhBTeg0HlMXu1f+VMbPef05QpDTsZ9X2Yn1+8npdaXsXg/+wrm9Ze1WG5OS1UDC3qJ5EQN/XOZ3gfXjPFCw==}
dev: true
/toidentifier@1.0.1:
@@ -14457,8 +14841,8 @@ packages:
hasBin: true
dev: true
- /ts-api-utils@1.0.1(typescript@5.1.6):
- resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==}
+ /ts-api-utils@1.0.2(typescript@5.1.6):
+ resolution: {integrity: sha512-Cbu4nIqnEdd+THNEsBdkolnOXhg0I8XteoHaEKgvsxpsbWda4IsUut2c187HxywQCvveojow0Dgw/amxtSKVkQ==}
engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
@@ -14554,7 +14938,7 @@ packages:
'@esbuild-kit/core-utils': 3.1.0
'@esbuild-kit/esm-loader': 2.5.5
optionalDependencies:
- fsevents: 2.3.3
+ fsevents: 2.3.2
dev: true
/type-check@0.4.0:
@@ -14708,7 +15092,7 @@ packages:
consola: 3.2.3
defu: 6.1.2
mime: 3.0.0
- node-fetch-native: 1.3.0
+ node-fetch-native: 1.2.0
pathe: 1.1.1
dev: true
@@ -14744,10 +15128,10 @@ packages:
engines: {node: '>=4'}
dev: true
- /unimport@3.0.14(rollup@3.28.0):
+ /unimport@3.0.14(rollup@3.26.2):
resolution: {integrity: sha512-67Rh/sGpEuVqdHWkXaZ6NOq+I7sKt86o+DUtKeGB6dh4Hk1A8AQrzyVGg2+LaVEYotStH7HwvV9YSaRjyT7Uqg==}
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.28.0)
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.2)
escape-string-regexp: 5.0.0
fast-glob: 3.3.0
local-pkg: 0.4.3
@@ -14915,7 +15299,7 @@ packages:
/unplugin@1.3.1:
resolution: {integrity: sha512-h4uUTIvFBQRxUKS2Wjys6ivoeofGhxzTe2sRWlooyjHXVttcVfV/JiavNd3d4+jty0SVV0dxGw9AkY9MwiaCEw==}
dependencies:
- acorn: 8.10.0
+ acorn: 8.9.0
chokidar: 3.5.3
webpack-sources: 3.2.3
webpack-virtual-modules: 0.5.0
@@ -14964,15 +15348,15 @@ packages:
dependencies:
anymatch: 3.1.3
chokidar: 3.5.3
- destr: 2.0.1
+ destr: 2.0.0
h3: 1.7.1
ioredis: 5.3.2
listhen: 1.0.4
lru-cache: 10.0.0
mri: 1.2.0
- node-fetch-native: 1.3.0
+ node-fetch-native: 1.2.0
ofetch: 1.2.1
- ufo: 1.2.0
+ ufo: 1.1.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -14986,7 +15370,7 @@ packages:
resolution: {integrity: sha512-z219Z65rOGD6jXIvIhpZFfwWdqQckB8sdZec2NO+TkcH1Bph7gL0hwLzRJs1KsOo4Jz4mF9guBXhsEnyEBGVfw==}
hasBin: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.21.5
'@babel/standalone': 7.21.7
'@babel/types': 7.22.5
defu: 6.1.2
@@ -15001,7 +15385,7 @@ packages:
resolution: {integrity: sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==}
hasBin: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.10
'@babel/standalone': 7.22.10
'@babel/types': 7.22.5
defu: 6.1.2
@@ -15023,6 +15407,17 @@ packages:
picocolors: 1.0.0
dev: true
+ /update-browserslist-db@1.0.11(browserslist@4.21.5):
+ resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.21.5
+ escalade: 3.1.1
+ picocolors: 1.0.0
+ dev: true
+
/uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
@@ -15200,7 +15595,7 @@ packages:
vue-tsc:
optional: true
dependencies:
- '@babel/code-frame': 7.22.10
+ '@babel/code-frame': 7.21.4
ansi-escapes: 4.3.2
chalk: 4.1.2
chokidar: 3.5.3
@@ -15232,7 +15627,7 @@ packages:
vite:
optional: true
dependencies:
- '@microsoft/api-extractor': 7.36.3(@types/node@18.17.8)
+ '@microsoft/api-extractor': 7.36.4(@types/node@18.17.8)
'@rollup/pluginutils': 5.0.2(rollup@3.28.1)
'@vue/language-core': 1.8.8(typescript@5.1.6)
debug: 4.3.4
@@ -15296,10 +15691,10 @@ packages:
dependencies:
'@types/node': 18.17.8
esbuild: 0.17.19
- postcss: 8.4.28
+ postcss: 8.4.25
rollup: 3.22.0
optionalDependencies:
- fsevents: 2.3.3
+ fsevents: 2.3.2
/vitest-axe@0.1.0(vitest@0.34.2):
resolution: {integrity: sha512-jvtXxeQPg8R/2ANTY8QicA5pvvdRP4F0FsVUAHANJ46YCDASie/cuhlSzu0DGcLmZvGBSBNsNuK3HqfaeknyvA==}
@@ -15429,7 +15824,7 @@ packages:
/vue-bundle-renderer@1.0.3:
resolution: {integrity: sha512-EfjX+5TTUl70bki9hPuVp+54JiZOvFIfoWBcfXsSwLzKEiDYyHNi5iX8srnqLIv3YRnvxgbntdcG1WPq0MvffQ==}
dependencies:
- ufo: 1.2.0
+ ufo: 1.1.2
dev: true
/vue-component-type-helpers@1.8.4:
@@ -15485,9 +15880,9 @@ packages:
dependencies:
debug: 4.3.4
eslint: 8.47.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.2
- espree: 9.6.1
+ eslint-scope: 7.2.0
+ eslint-visitor-keys: 3.4.1
+ espree: 9.6.0
esquery: 1.5.0
lodash: 4.17.21
semver: 7.5.4
@@ -15593,8 +15988,8 @@ packages:
resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
dev: true
- /webpack@5.88.2(esbuild@0.18.11):
- resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==}
+ /webpack@5.81.0(esbuild@0.18.11):
+ resolution: {integrity: sha512-AAjaJ9S4hYCVODKLQTgG5p5e11hiMawBwV2v8MYLE0C/6UAGLuAF4n1qa9GOwdxnicaP+5k6M5HrLmD4+gIB8Q==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -15605,15 +16000,15 @@ packages:
dependencies:
'@types/eslint-scope': 3.7.4
'@types/estree': 1.0.1
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/wasm-edit': 1.11.6
- '@webassemblyjs/wasm-parser': 1.11.6
+ '@webassemblyjs/ast': 1.11.5
+ '@webassemblyjs/wasm-edit': 1.11.5
+ '@webassemblyjs/wasm-parser': 1.11.5
acorn: 8.10.0
- acorn-import-assertions: 1.9.0(acorn@8.10.0)
+ acorn-import-assertions: 1.8.0(acorn@8.10.0)
browserslist: 4.21.10
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
- es-module-lexer: 1.3.0
+ es-module-lexer: 1.2.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -15622,9 +16017,9 @@ packages:
loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 3.3.0
+ schema-utils: 3.1.2
tapable: 2.2.1
- terser-webpack-plugin: 5.3.9(esbuild@0.18.11)(webpack@5.88.2)
+ terser-webpack-plugin: 5.3.7(esbuild@0.18.11)(webpack@5.81.0)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -15831,7 +16226,7 @@ packages:
resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==}
engines: {node: ^14.17.0 || >=16.0.0}
dependencies:
- eslint-visitor-keys: 3.4.2
+ eslint-visitor-keys: 3.4.1
lodash: 4.17.21
yaml: 2.3.1
dev: false