+
{{ i18n.ts.following }}
{{ number(user.followingCount) }}
-
+
{{ i18n.ts.followers }}
{{ number(user.followersCount) }}
@@ -61,6 +61,7 @@ import number from '@/filters/number';
import { i18n } from '@/i18n';
import { defaultStore } from '@/store';
import { $i } from '@/account';
+import { isFfVisibleForMe } from '@/scripts/isFfVisibleForMe';
const props = defineProps<{
showing: boolean;
diff --git a/packages/frontend/src/pages/user/home.vue b/packages/frontend/src/pages/user/home.vue
index 23588763bc..b0d42463a0 100644
--- a/packages/frontend/src/pages/user/home.vue
+++ b/packages/frontend/src/pages/user/home.vue
@@ -100,15 +100,15 @@
-
+
{{ number(user.notesCount) }}
{{ i18n.ts.notes }}
-
+
{{ number(user.followingCount) }}
{{ i18n.ts.following }}
-
+
{{ number(user.followersCount) }}
{{ i18n.ts.followers }}
@@ -160,6 +160,7 @@ import { dateString } from '@/filters/date';
import { confetti } from '@/scripts/confetti';
import MkNotes from '@/components/MkNotes.vue';
import { api } from '@/os';
+import { isFfVisibleForMe } from '@/scripts/isFfVisibleForMe';
const XPhotos = defineAsyncComponent(() => import('./index.photos.vue'));
const XActivity = defineAsyncComponent(() => import('./index.activity.vue'));
diff --git a/packages/frontend/src/scripts/isFfVisibleForMe.ts b/packages/frontend/src/scripts/isFfVisibleForMe.ts
new file mode 100644
index 0000000000..0ddd3f377d
--- /dev/null
+++ b/packages/frontend/src/scripts/isFfVisibleForMe.ts
@@ -0,0 +1,11 @@
+import * as misskey from 'misskey-js';
+import { $i } from '@/account';
+
+export function isFfVisibleForMe(user: misskey.entities.UserDetailed): boolean {
+ if ($i && $i.id === user.id) return true;
+
+ if (user.ffVisibility === 'private') return false;
+ if (user.ffVisibility === 'followers' && !user.isFollowing) return false;
+
+ return true;
+}
From 54c0ed2ed782307f5c40fcf90fa96d5f1702bf4c Mon Sep 17 00:00:00 2001
From: syuilo
Date: Tue, 18 Jul 2023 20:00:45 +0900
Subject: [PATCH 138/184] update deps
---
packages/backend/package.json | 20 +-
packages/frontend/package.json | 38 +-
pnpm-lock.yaml | 3495 ++++++++++++--------------------
3 files changed, 1347 insertions(+), 2206 deletions(-)
diff --git a/packages/backend/package.json b/packages/backend/package.json
index 5baf583dca..564bbf85dc 100644
--- a/packages/backend/package.json
+++ b/packages/backend/package.json
@@ -57,24 +57,24 @@
"@aws-sdk/client-s3": "3.367.0",
"@aws-sdk/lib-storage": "3.367.0",
"@aws-sdk/node-http-handler": "3.360.0",
- "@bull-board/api": "5.6.0",
- "@bull-board/fastify": "5.6.0",
- "@bull-board/ui": "5.6.0",
+ "@bull-board/api": "5.6.1",
+ "@bull-board/fastify": "5.6.1",
+ "@bull-board/ui": "5.6.1",
"@discordapp/twemoji": "14.1.2",
"@fastify/accepts": "4.2.0",
"@fastify/cookie": "8.3.0",
"@fastify/cors": "8.3.0",
"@fastify/http-proxy": "9.2.1",
- "@fastify/multipart": "7.7.0",
+ "@fastify/multipart": "7.7.1",
"@fastify/static": "6.10.2",
"@fastify/view": "8.0.0",
- "@nestjs/common": "10.0.5",
- "@nestjs/core": "10.0.5",
- "@nestjs/testing": "10.0.5",
+ "@nestjs/common": "10.1.0",
+ "@nestjs/core": "10.1.0",
+ "@nestjs/testing": "10.1.0",
"@peertube/http-signature": "1.7.0",
"@sinonjs/fake-timers": "10.3.0",
"@swc/cli": "0.1.62",
- "@swc/core": "1.3.69",
+ "@swc/core": "1.3.70",
"accepts": "1.3.8",
"ajv": "8.12.0",
"archiver": "5.3.1",
@@ -82,7 +82,7 @@
"autwh": "0.1.0",
"bcryptjs": "2.4.3",
"blurhash": "2.0.5",
- "bullmq": "4.3.0",
+ "bullmq": "4.4.0",
"cacheable-lookup": "7.0.0",
"cbor": "9.0.0",
"chalk": "5.3.0",
@@ -94,7 +94,7 @@
"date-fns": "2.30.0",
"deep-email-validator": "0.1.21",
"escape-regexp": "0.0.1",
- "fastify": "4.19.2",
+ "fastify": "4.20.0",
"feed": "4.2.2",
"file-type": "18.5.0",
"fluent-ffmpeg": "2.1.2",
diff --git a/packages/frontend/package.json b/packages/frontend/package.json
index 90c0cca440..1ebd8a40d0 100644
--- a/packages/frontend/package.json
+++ b/packages/frontend/package.json
@@ -22,7 +22,7 @@
"@syuilo/aiscript": "0.13.3",
"@tabler/icons-webfont": "2.25.0",
"@vitejs/plugin-vue": "4.2.3",
- "@vue-macros/reactivity-transform": "0.3.14",
+ "@vue-macros/reactivity-transform": "0.3.15",
"@vue/compiler-sfc": "3.3.4",
"astring": "1.8.6",
"autosize": "6.0.1",
@@ -54,7 +54,7 @@
"prismjs": "1.29.0",
"punycode": "2.3.0",
"querystring": "0.2.1",
- "rollup": "3.26.2",
+ "rollup": "3.26.3",
"s-age": "1.1.2",
"sanitize-html": "2.11.0",
"sass": "1.63.6",
@@ -76,24 +76,24 @@
"vuedraggable": "next"
},
"devDependencies": {
- "@storybook/addon-actions": "7.0.27",
- "@storybook/addon-essentials": "7.0.27",
- "@storybook/addon-interactions": "7.0.27",
- "@storybook/addon-links": "7.0.27",
- "@storybook/addon-storysource": "7.0.27",
- "@storybook/addons": "7.0.27",
- "@storybook/blocks": "7.0.27",
- "@storybook/core-events": "7.0.27",
+ "@storybook/addon-actions": "7.1.0",
+ "@storybook/addon-essentials": "7.1.0",
+ "@storybook/addon-interactions": "7.1.0",
+ "@storybook/addon-links": "7.1.0",
+ "@storybook/addon-storysource": "7.1.0",
+ "@storybook/addons": "7.1.0",
+ "@storybook/blocks": "7.1.0",
+ "@storybook/core-events": "7.1.0",
"@storybook/jest": "0.1.0",
- "@storybook/manager-api": "7.0.27",
- "@storybook/preview-api": "7.0.27",
- "@storybook/react": "7.0.27",
- "@storybook/react-vite": "7.0.27",
+ "@storybook/manager-api": "7.1.0",
+ "@storybook/preview-api": "7.1.0",
+ "@storybook/react": "7.1.0",
+ "@storybook/react-vite": "7.1.0",
"@storybook/testing-library": "0.2.0",
- "@storybook/theming": "7.0.27",
- "@storybook/types": "7.0.27",
- "@storybook/vue3": "7.0.27",
- "@storybook/vue3-vite": "7.0.27",
+ "@storybook/theming": "7.1.0",
+ "@storybook/types": "7.1.0",
+ "@storybook/vue3": "7.1.0",
+ "@storybook/vue3-vite": "7.1.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/vue": "7.0.0",
"@types/escape-regexp": "0.0.1",
@@ -131,7 +131,7 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"start-server-and-test": "2.0.0",
- "storybook": "7.0.27",
+ "storybook": "7.1.0",
"storybook-addon-misskey-theme": "github:misskey-dev/storybook-addon-misskey-theme",
"summaly": "github:misskey-dev/summaly",
"vite-plugin-turbosnap": "1.0.2",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 205efb2ab7..a546fa952a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -78,14 +78,14 @@ importers:
specifier: 3.360.0
version: 3.360.0
'@bull-board/api':
- specifier: 5.6.0
- version: 5.6.0(@bull-board/ui@5.6.0)
+ specifier: 5.6.1
+ version: 5.6.1(@bull-board/ui@5.6.1)
'@bull-board/fastify':
- specifier: 5.6.0
- version: 5.6.0
+ specifier: 5.6.1
+ version: 5.6.1
'@bull-board/ui':
- specifier: 5.6.0
- version: 5.6.0
+ specifier: 5.6.1
+ version: 5.6.1
'@discordapp/twemoji':
specifier: 14.1.2
version: 14.1.2
@@ -102,8 +102,8 @@ importers:
specifier: 9.2.1
version: 9.2.1(bufferutil@4.0.7)(utf-8-validate@6.0.3)
'@fastify/multipart':
- specifier: 7.7.0
- version: 7.7.0
+ specifier: 7.7.1
+ version: 7.7.1
'@fastify/static':
specifier: 6.10.2
version: 6.10.2
@@ -111,14 +111,14 @@ importers:
specifier: 8.0.0
version: 8.0.0
'@nestjs/common':
- specifier: 10.0.5
- version: 10.0.5(reflect-metadata@0.1.13)(rxjs@7.8.1)
+ specifier: 10.1.0
+ version: 10.1.0(reflect-metadata@0.1.13)(rxjs@7.8.1)
'@nestjs/core':
- specifier: 10.0.5
- version: 10.0.5(@nestjs/common@10.0.5)(reflect-metadata@0.1.13)(rxjs@7.8.1)
+ specifier: 10.1.0
+ version: 10.1.0(@nestjs/common@10.1.0)(reflect-metadata@0.1.13)(rxjs@7.8.1)
'@nestjs/testing':
- specifier: 10.0.5
- version: 10.0.5(@nestjs/common@10.0.5)(@nestjs/core@10.0.5)
+ specifier: 10.1.0
+ version: 10.1.0(@nestjs/common@10.1.0)(@nestjs/core@10.1.0)
'@peertube/http-signature':
specifier: 1.7.0
version: 1.7.0
@@ -127,10 +127,10 @@ importers:
version: 10.3.0
'@swc/cli':
specifier: 0.1.62
- version: 0.1.62(@swc/core@1.3.69)(chokidar@3.5.3)
+ version: 0.1.62(@swc/core@1.3.70)(chokidar@3.5.3)
'@swc/core':
- specifier: 1.3.69
- version: 1.3.69
+ specifier: 1.3.70
+ version: 1.3.70
accepts:
specifier: 1.3.8
version: 1.3.8
@@ -153,8 +153,8 @@ importers:
specifier: 2.0.5
version: 2.0.5
bullmq:
- specifier: 4.3.0
- version: 4.3.0
+ specifier: 4.4.0
+ version: 4.4.0
cacheable-lookup:
specifier: 7.0.0
version: 7.0.0
@@ -189,8 +189,8 @@ importers:
specifier: 0.0.1
version: 0.0.1
fastify:
- specifier: 4.19.2
- version: 4.19.2
+ specifier: 4.20.0
+ version: 4.20.0
feed:
specifier: 4.2.2
version: 4.2.2
@@ -480,7 +480,7 @@ importers:
version: 29.6.1
'@swc/jest':
specifier: 0.2.26
- version: 0.2.26(@swc/core@1.3.69)
+ version: 0.2.26(@swc/core@1.3.70)
'@types/accepts':
specifier: 1.3.5
version: 1.3.5
@@ -630,16 +630,16 @@ importers:
version: 14.1.2
'@rollup/plugin-alias':
specifier: 5.0.0
- version: 5.0.0(rollup@3.26.2)
+ version: 5.0.0(rollup@3.26.3)
'@rollup/plugin-json':
specifier: 6.0.0
- version: 6.0.0(rollup@3.26.2)
+ version: 6.0.0(rollup@3.26.3)
'@rollup/plugin-replace':
specifier: 5.0.2
- version: 5.0.2(rollup@3.26.2)
+ version: 5.0.2(rollup@3.26.3)
'@rollup/pluginutils':
specifier: 5.0.2
- version: 5.0.2(rollup@3.26.2)
+ version: 5.0.2(rollup@3.26.3)
'@syuilo/aiscript':
specifier: 0.13.3
version: 0.13.3
@@ -650,8 +650,8 @@ importers:
specifier: 4.2.3
version: 4.2.3(vite@4.4.4)(vue@3.3.4)
'@vue-macros/reactivity-transform':
- specifier: 0.3.14
- version: 0.3.14(rollup@3.26.2)(vue@3.3.4)
+ specifier: 0.3.15
+ version: 0.3.15(rollup@3.26.3)(vue@3.3.4)
'@vue/compiler-sfc':
specifier: 3.3.4
version: 3.3.4
@@ -746,8 +746,8 @@ importers:
specifier: 0.2.1
version: 0.2.1
rollup:
- specifier: 3.26.2
- version: 3.26.2
+ specifier: 3.26.3
+ version: 3.26.3
s-age:
specifier: 1.1.2
version: 1.1.2
@@ -807,59 +807,59 @@ importers:
version: 4.1.0(vue@3.3.4)
devDependencies:
'@storybook/addon-actions':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-essentials':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-interactions':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-links':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-storysource':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)
'@storybook/addons':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)
'@storybook/blocks':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events':
- specifier: 7.0.27
- version: 7.0.27
+ specifier: 7.1.0
+ version: 7.1.0
'@storybook/jest':
specifier: 0.1.0
version: 0.1.0
'@storybook/manager-api':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)
'@storybook/preview-api':
- specifier: 7.0.27
- version: 7.0.27
+ specifier: 7.1.0
+ version: 7.1.0
'@storybook/react':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
'@storybook/react-vite':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(vite@4.4.4)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)(rollup@3.26.3)(typescript@5.1.6)(vite@4.4.4)
'@storybook/testing-library':
specifier: 0.2.0
version: 0.2.0
'@storybook/theming':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ specifier: 7.1.0
+ version: 7.1.0(react-dom@18.2.0)(react@18.2.0)
'@storybook/types':
- specifier: 7.0.27
- version: 7.0.27
+ specifier: 7.1.0
+ version: 7.1.0
'@storybook/vue3':
- specifier: 7.0.27
- version: 7.0.27(vue@3.3.4)
+ specifier: 7.1.0
+ version: 7.1.0(@vue/compiler-core@3.3.4)(vue@3.3.4)
'@storybook/vue3-vite':
- specifier: 7.0.27
- version: 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(vite@4.4.4)(vue@3.3.4)
+ specifier: 7.1.0
+ version: 7.1.0(@vue/compiler-core@3.3.4)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(vite@4.4.4)(vue@3.3.4)
'@testing-library/jest-dom':
specifier: 5.16.5
version: 5.16.5
@@ -972,11 +972,11 @@ importers:
specifier: 2.0.0
version: 2.0.0
storybook:
- specifier: 7.0.27
- version: 7.0.27
+ specifier: 7.1.0
+ version: 7.1.0
storybook-addon-misskey-theme:
specifier: github:misskey-dev/storybook-addon-misskey-theme
- version: github.com/misskey-dev/storybook-addon-misskey-theme/cf583db098365b2ccc81a82f63ca9c93bc32b640(@storybook/blocks@7.0.27)(@storybook/components@7.0.27)(@storybook/core-events@7.0.27)(@storybook/manager-api@7.0.27)(@storybook/preview-api@7.0.27)(@storybook/theming@7.0.27)(@storybook/types@7.0.27)(react-dom@18.2.0)(react@18.2.0)
+ version: github.com/misskey-dev/storybook-addon-misskey-theme/cf583db098365b2ccc81a82f63ca9c93bc32b640(@storybook/blocks@7.1.0)(@storybook/components@7.1.0)(@storybook/core-events@7.1.0)(@storybook/manager-api@7.1.0)(@storybook/preview-api@7.1.0)(@storybook/theming@7.1.0)(@storybook/types@7.1.0)(react-dom@18.2.0)(react@18.2.0)
summaly:
specifier: github:misskey-dev/summaly
version: github.com/misskey-dev/summaly/77dd5654bb82280b38c1f50e51a771c33f3df503
@@ -1000,7 +1000,7 @@ importers:
dependencies:
'@swc/cli':
specifier: 0.1.62
- version: 0.1.62(@swc/core@1.3.69)(chokidar@3.5.3)
+ version: 0.1.62(@swc/core@1.3.70)(chokidar@3.5.3)
'@swc/core':
specifier: 1.3.69
version: 1.3.69
@@ -1098,8 +1098,8 @@ packages:
'@jridgewell/trace-mapping': 0.3.17
dev: true
- /@aw-web-design/x-default-browser@1.4.88:
- resolution: {integrity: sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA==}
+ /@aw-web-design/x-default-browser@1.4.126:
+ resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==}
hasBin: true
dependencies:
default-browser-id: 3.0.0
@@ -1806,32 +1806,21 @@ packages:
'@babel/highlight': 7.18.6
dev: true
+ /@babel/code-frame@7.22.5:
+ resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/highlight': 7.22.5
+ dev: true
+
/@babel/compat-data@7.22.3:
resolution: {integrity: sha512-aNtko9OPOwVESUFp3MZfD8Uzxl7JzSeJpd7npIoxCasU37PFbAQRpKglkaKwlHOyeJdrREpo8TW8ldrkYWwvIQ==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core@7.21.3:
- resolution: {integrity: sha512-qIJONzoa/qiHghnm0l1n4i/6IIziDpzqc36FBs4pzMhDUraHqponwJLiAKm1hGLP3OSB/TVNz6rMwVGpwxxySw==}
+ /@babel/compat-data@7.22.9:
+ resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.21.4
- '@babel/generator': 7.22.3
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.21.3)
- '@babel/helper-module-transforms': 7.22.1
- '@babel/helpers': 7.22.3
- '@babel/parser': 7.22.7
- '@babel/template': 7.21.9
- '@babel/traverse': 7.22.4
- '@babel/types': 7.22.5
- convert-source-map: 1.9.0
- debug: 4.3.4(supports-color@8.1.1)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/core@7.22.1:
@@ -1857,16 +1846,6 @@ packages:
- supports-color
dev: true
- /@babel/generator@7.21.3:
- resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.5
- '@jridgewell/gen-mapping': 0.3.2
- '@jridgewell/trace-mapping': 0.3.18
- jsesc: 2.5.2
- dev: true
-
/@babel/generator@7.22.3:
resolution: {integrity: sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A==}
engines: {node: '>=6.9.0'}
@@ -1884,26 +1863,18 @@ packages:
'@babel/types': 7.22.5
dev: true
- /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9:
- resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
+ /@babel/helper-annotate-as-pure@7.22.5:
+ resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-explode-assignable-expression': 7.18.6
'@babel/types': 7.22.5
dev: true
- /@babel/helper-compilation-targets@7.22.1(@babel/core@7.21.3):
- resolution: {integrity: sha512-Rqx13UM3yVB5q0D/KwQ8+SPfX/+Rnsy1Lw1k/UwOC4KC6qrzIQoY3lYnBu5EHKBlEHHcj0M0W8ltPSkD8rqfsQ==}
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.22.5:
+ resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.22.3
- '@babel/core': 7.21.3
- '@babel/helper-validator-option': 7.21.0
- browserslist: 4.21.5
- lru-cache: 5.1.1
- semver: 6.3.0
+ '@babel/types': 7.22.5
dev: true
/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1):
@@ -1920,23 +1891,18 @@ packages:
semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
+ /@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.1):
+ resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.22.1
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-member-expression-to-functions': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/helper-split-export-declaration': 7.18.6
- transitivePeerDependencies:
- - supports-color
+ '@babel/compat-data': 7.22.9
+ '@babel/core': 7.22.1
+ '@babel/helper-validator-option': 7.22.5
+ browserslist: 4.21.9
+ lru-cache: 5.1.1
+ semver: 6.3.1
dev: true
/@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.22.1):
@@ -1958,15 +1924,22 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==}
+ /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.22.1):
+ resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.3.2
+ '@babel/core': 7.22.1
+ '@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.1)
+ '@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.21.0(@babel/core@7.22.1):
@@ -1976,38 +1949,33 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
dev: true
- /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
+ /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.1):
+ resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.4.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- debug: 4.3.4(supports-color@8.1.1)
- lodash.debounce: 4.0.8
- resolve: 1.22.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.22.1
+ '@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.3.3(@babel/core@7.22.1):
- resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
+ /@babel/helper-define-polyfill-provider@0.4.1(@babel/core@7.22.1):
+ resolution: {integrity: sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.1
- semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -2017,11 +1985,9 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-explode-assignable-expression@7.18.6:
- resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
+ /@babel/helper-environment-visitor@7.22.5:
+ resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.5
dev: true
/@babel/helper-function-name@7.21.0:
@@ -2032,6 +1998,14 @@ packages:
'@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.5
+ dev: true
+
/@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
@@ -2039,6 +2013,13 @@ packages:
'@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.5
+ dev: true
+
/@babel/helper-member-expression-to-functions@7.21.0:
resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
@@ -2046,6 +2027,13 @@ packages:
'@babel/types': 7.22.5
dev: true
+ /@babel/helper-member-expression-to-functions@7.22.5:
+ resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
+ dev: true
+
/@babel/helper-module-imports@7.21.4:
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
engines: {node: '>=6.9.0'}
@@ -2053,6 +2041,13 @@ packages:
'@babel/types': 7.22.5
dev: true
+ /@babel/helper-module-imports@7.22.5:
+ resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
+ dev: true
+
/@babel/helper-module-transforms@7.22.1:
resolution: {integrity: sha512-dxAe9E7ySDGbQdCVOY/4+UcD8M9ZFqZcZhSPsPacvCG4M+9lwtDDQfI2EoaSvmf7W/8yCBkGU0m7Pvt1ru3UZw==}
engines: {node: '>=6.9.0'}
@@ -2069,6 +2064,20 @@ packages:
- supports-color
dev: true
+ /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.1):
+ resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-module-imports': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.5
+ dev: true
+
/@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
@@ -2076,55 +2085,61 @@ packages:
'@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
+ dev: true
+
/@babel/helper-plugin-utils@7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.3):
- resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
+ /@babel/helper-plugin-utils@7.22.5:
+ resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.22.1
- '@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.22.5
- transitivePeerDependencies:
- - supports-color
dev: true
- /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.1):
- resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
+ /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.1):
+ resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.22.1
- '@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.22.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-wrap-function': 7.22.9
dev: true
/@babel/helper-replace-supers@7.20.7:
resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.22.1
- '@babel/helper-member-expression-to-functions': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/template': 7.21.9
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.22.5
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/template': 7.22.5
'@babel/traverse': 7.22.4
'@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.1):
+ resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@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'}
@@ -2132,6 +2147,13 @@ packages:
'@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.5
+ dev: true
+
/@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
@@ -2139,6 +2161,13 @@ packages:
'@babel/types': 7.22.5
dev: true
+ /@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.5
+ dev: true
+
/@babel/helper-split-export-declaration@7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
@@ -2146,6 +2175,13 @@ packages:
'@babel/types': 7.22.5
dev: true
+ /@babel/helper-split-export-declaration@7.22.6:
+ resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.22.5
+ dev: true
+
/@babel/helper-string-parser@7.21.5:
resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
engines: {node: '>=6.9.0'}
@@ -2167,16 +2203,18 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-wrap-function@7.20.5:
- resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
+ /@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==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-function-name': 7.21.0
- '@babel/template': 7.21.9
- '@babel/traverse': 7.22.4
+ '@babel/helper-function-name': 7.22.5
+ '@babel/template': 7.22.5
'@babel/types': 7.22.5
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/helpers@7.22.3:
@@ -2199,6 +2237,15 @@ packages:
js-tokens: 4.0.0
dev: true
+ /@babel/highlight@7.22.5:
+ resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.5
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ dev: true
+
/@babel/parser@7.21.8:
resolution: {integrity: sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==}
engines: {node: '>=6.0.0'}
@@ -2206,14 +2253,6 @@ packages:
dependencies:
'@babel/types': 7.22.4
- /@babel/parser@7.21.9:
- resolution: {integrity: sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.22.5
- dev: true
-
/@babel/parser@7.22.4:
resolution: {integrity: sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA==}
engines: {node: '>=6.0.0'}
@@ -2226,93 +2265,28 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.22.4
+ '@babel/types': 7.22.5
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
- dev: true
-
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.22.1):
- resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.1)
- dev: true
-
- /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-environment-visitor': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.1):
- resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-environment-visitor': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.1)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.1)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
+ '@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.1)
dev: true
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.1):
@@ -2328,133 +2302,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.1):
- resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.1)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
- dev: true
-
- /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.1)
- dev: true
-
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.3):
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.3)
- dev: true
-
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.1):
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.1)
- dev: true
-
- /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3)
- dev: true
-
- /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.1)
- dev: true
-
- /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3)
- dev: true
-
- /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.1):
- resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.1)
- dev: true
-
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3)
- dev: true
-
/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.1):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
@@ -2466,90 +2313,6 @@ packages:
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.1)
dev: true
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3)
- dev: true
-
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.1)
- dev: true
-
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.3
- '@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
- dev: true
-
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.1):
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.3
- '@babel/core': 7.22.1
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.1)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.1)
- dev: true
-
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3)
- dev: true
-
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.1)
- dev: true
-
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
- dev: true
-
/@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.1):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
@@ -2562,71 +2325,13 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.1)
dev: true
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.1):
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.1):
- resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.1)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.1):
@@ -2636,17 +2341,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.3):
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.1):
@@ -2667,15 +2363,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.3):
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.1):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
@@ -2685,16 +2372,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.3):
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.1):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
@@ -2702,16 +2379,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.1):
@@ -2720,16 +2388,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.1):
@@ -2738,7 +2397,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-flow@7.18.6(@babel/core@7.22.1):
@@ -2751,24 +2410,24 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.1):
- resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.1):
@@ -2780,15 +2439,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.1):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
@@ -2808,15 +2458,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.3):
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.1):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -2826,15 +2467,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.1):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
@@ -2844,15 +2476,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.3):
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.1):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
@@ -2862,15 +2485,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.1):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
@@ -2880,15 +2494,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.1):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
@@ -2898,15 +2503,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.1):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
@@ -2916,16 +2512,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.3):
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.1):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
@@ -2933,17 +2519,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.3):
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.1):
@@ -2966,238 +2542,186 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.1):
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.1):
- resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.1):
- resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.1)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.1):
- resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.21.3)
- '@babel/helper-environment-visitor': 7.22.1
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.1):
- resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.22.1)
- '@babel/helper-environment-visitor': 7.22.1
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/template': 7.21.9
- dev: true
-
- /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.1):
- resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/template': 7.21.9
- dev: true
-
- /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.1):
- resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.22.1
'@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.3):
- resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.1):
- resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
+ /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
+ /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.22.1):
+ resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.20.2
+ '@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.1)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.1)
+ dev: true
+
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@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.1)
+ dev: true
+
+ /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.1):
+ 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.1
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.1)
+ dev: true
+
+ /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.1):
+ resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.1)
+ '@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.1)
+ '@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.1):
+ resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@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.1):
+ resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.1):
+ 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.1
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.1):
+ 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.1
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.1)
+ dev: true
+
+ /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.1)
dev: true
/@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.22.1):
@@ -3211,128 +2735,79 @@ packages:
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.22.1)
dev: true
- /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.1):
- resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==}
+ /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.3):
- resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.21.3)
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.1):
- resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
+ /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.22.1)
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.3):
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.1):
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
+ /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.1)
dev: true
- /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
+ /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.3):
- resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-module-transforms': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.1):
- resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
+ /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.1):
+ 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.1
- '@babel/helper-module-transforms': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.1)
dev: true
- /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.3):
- resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
+ /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-module-transforms': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-simple-access': 7.21.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.22.1
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.1):
+ 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.1
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.1):
@@ -3349,168 +2824,175 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.3):
- resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-identifier': 7.22.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.1):
- resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
+ /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-identifier': 7.22.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
dev: true
- /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-module-transforms': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
+ /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-module-transforms': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.3):
- resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
+ /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/core': 7.22.1
+ '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.1):
- resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
+ /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.1):
+ 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.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.1)
dev: true
- /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.1):
- resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
+ /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.1):
+ 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.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.1)
dev: true
- /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/compat-data': 7.22.9
+ '@babel/core': 7.22.1
+ '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.1)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.1)
dev: true
- /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.1):
+ 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.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.1)
+ dev: true
+
+ /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.1)
+ dev: true
+
+ /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.22.1):
+ resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@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.1)
+ dev: true
+
+ /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.1)
+ dev: true
+
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.22.1):
@@ -3533,162 +3015,76 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.22.1):
- resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==}
+ /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.1)
- '@babel/types': 7.22.5
- dev: true
-
- /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.3):
- resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.22.1):
- resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
+ /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- regenerator-transform: 0.15.1
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
+ /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
+ /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.1):
+ 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.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.3):
- resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- dev: true
-
- /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.1):
- resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
+ /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
+ /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.3):
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.1):
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
+ /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.1):
+ 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.1
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.3):
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.1):
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-typescript@7.21.3(@babel/core@7.22.1):
@@ -3706,168 +3102,71 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.3):
- resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.1):
- resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
+ /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.3):
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.1):
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
+ /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/preset-env@7.21.4(@babel/core@7.21.3):
- resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==}
+ /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.22.3
- '@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.3)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.3)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.3)
- '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.3)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3)
- '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
- '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.3)
- '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
- '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.3)
- '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.3)
- '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3)
- '@babel/preset-modules': 0.1.5(@babel/core@7.21.3)
- '@babel/types': 7.22.5
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3)
- core-js-compat: 3.29.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/preset-env@7.21.4(@babel/core@7.22.1):
- resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.3
'@babel/core': 7.22.1
- '@babel/helper-compilation-targets': 7.22.1(@babel/core@7.22.1)
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.22.1)
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.1)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.22.1)
- '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.1)
- '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.22.1)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.1)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.1)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.1)
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.1)
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.1):
+ resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.22.1
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.1)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/preset-env@7.22.9(@babel/core@7.22.1):
+ resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.22.9
+ '@babel/core': 7.22.1
+ '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.1)
+ '@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.1)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.1)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.1)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.1)
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.1)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.1)
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.1)
- '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.1)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.1)
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.1)
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.1)
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.1)
@@ -3877,45 +3176,62 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.1)
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.1)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.1)
- '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.1)
- '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.1)
- '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.1)
- '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.1)
- '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.1)
- '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.1)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.1)
- '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.1)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.1)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.1)
- '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.22.1)
- '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.1)
- '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.22.1)
- '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.1)
- '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.1)
- '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.1)
- '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.1)
- '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.1)
- '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.1)
- '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.22.1)
- '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.1)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.1)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.22.1)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.1)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.1)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.1)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.1)
'@babel/preset-modules': 0.1.5(@babel/core@7.22.1)
'@babel/types': 7.22.5
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.1)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.1)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.1)
- core-js-compat: 3.29.1
- semver: 6.3.0
+ babel-plugin-polyfill-corejs2: 0.4.4(@babel/core@7.22.1)
+ babel-plugin-polyfill-corejs3: 0.8.2(@babel/core@7.22.1)
+ babel-plugin-polyfill-regenerator: 0.5.1(@babel/core@7.22.1)
+ core-js-compat: 3.31.1
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -3932,28 +3248,15 @@ packages:
'@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.22.1)
dev: true
- /@babel/preset-modules@0.1.5(@babel/core@7.21.3):
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
- '@babel/types': 7.22.5
- esutils: 2.0.3
- dev: true
-
/@babel/preset-modules@0.1.5(@babel/core@7.22.1):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.1)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.1)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.1)
'@babel/types': 7.22.5
esutils: 2.0.3
dev: true
@@ -4012,22 +3315,13 @@ packages:
'@babel/types': 7.22.5
dev: true
- /@babel/traverse@7.21.3:
- resolution: {integrity: sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==}
+ /@babel/template@7.22.5:
+ resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.21.4
- '@babel/generator': 7.22.3
- '@babel/helper-environment-visitor': 7.22.1
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/code-frame': 7.22.5
'@babel/parser': 7.22.7
'@babel/types': 7.22.5
- debug: 4.3.4(supports-color@8.1.1)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/traverse@7.22.4:
@@ -4048,15 +3342,6 @@ packages:
- supports-color
dev: true
- /@babel/types@7.21.5:
- resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
- 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.4:
resolution: {integrity: sha512-Tx9x3UBHTTsMSW85WB2kphxYQVvrZ/t1FxD88IpSgIjiUJlCm9z+xWIDwyo1vffTwSqteqyznB8ZE9vYYk16zA==}
engines: {node: '>=6.9.0'}
@@ -4081,29 +3366,29 @@ packages:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
- /@bull-board/api@5.6.0(@bull-board/ui@5.6.0):
- resolution: {integrity: sha512-a2O15p5oEm+/E/0I2l2nE2NKK0dkgNNTaamu+0gGyfUxWoCS3fCGX6LLEyl3jgOz0IC3GKRnwtVgbZFzk42sGQ==}
+ /@bull-board/api@5.6.1(@bull-board/ui@5.6.1):
+ resolution: {integrity: sha512-iq+VpvCt7v2kYCtapDDmgHFyTyHiCbJkSeYbgIDtMIspXfsKxz0ZWKsqaY/VOCRE26jAX2asK17S2XSrANEU0A==}
peerDependencies:
- '@bull-board/ui': 5.6.0
+ '@bull-board/ui': 5.6.1
dependencies:
- '@bull-board/ui': 5.6.0
+ '@bull-board/ui': 5.6.1
redis-info: 3.1.0
dev: false
- /@bull-board/fastify@5.6.0:
- resolution: {integrity: sha512-JIGSrNxRko2cc4KTcU1Pp1iROKuAZGi2aLCx87nlgjmdtK51qbBfpDCsNEEc4ZspdddBKvaTUu67/3/n+3J67w==}
+ /@bull-board/fastify@5.6.1:
+ resolution: {integrity: sha512-Gh7dWtGN13nrQ2AL+Hx+cz9hEy9IPlBYUmhP6aIpA5s1eMjQnwhAHSURt0dSaGIyp7rvU7hj1zFx4rcKHeaSXA==}
dependencies:
- '@bull-board/api': 5.6.0(@bull-board/ui@5.6.0)
- '@bull-board/ui': 5.6.0
+ '@bull-board/api': 5.6.1(@bull-board/ui@5.6.1)
+ '@bull-board/ui': 5.6.1
'@fastify/static': 6.10.2
'@fastify/view': 7.4.1
ejs: 3.1.8
dev: false
- /@bull-board/ui@5.6.0:
- resolution: {integrity: sha512-mc9T+kijDX5ZJMJCzeKPk9uLfOtcuefdDLPqWi961EiiNKfkDex+Gh41DAfcyrNjYsAkBsphvgBgcvundHPGIw==}
+ /@bull-board/ui@5.6.1:
+ resolution: {integrity: sha512-cy4fEXxOBHR5+3Ez3bfax+Cd2TUTPyuSYRyQWL0WIwd3bivn/3zov9IThcnHu1YmJ8rjmUNoMHz7JIDXwUg8zg==}
dependencies:
- '@bull-board/api': 5.6.0(@bull-board/ui@5.6.0)
+ '@bull-board/api': 5.6.1(@bull-board/ui@5.6.1)
dev: false
/@canvas/image-data@1.0.0:
@@ -4271,15 +3556,6 @@ packages:
react: 18.2.0
dev: true
- /@esbuild/android-arm64@0.17.18:
- resolution: {integrity: sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm64@0.18.11:
resolution: {integrity: sha512-snieiq75Z1z5LJX9cduSAjUr7vEI1OdlzFPMw0HH5YI7qQHDd3qs+WZoMrWYDsfRJSq36lIA6mfZBkvL46KoIw==}
engines: {node: '>=12'}
@@ -4288,15 +3564,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/android-arm@0.17.18:
- resolution: {integrity: sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm@0.18.11:
resolution: {integrity: sha512-q4qlUf5ucwbUJZXF5tEQ8LF7y0Nk4P58hOsGk3ucY0oCwgQqAnqXVbUuahCddVHfrxmpyewRpiTHwVHIETYu7Q==}
engines: {node: '>=12'}
@@ -4305,15 +3572,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/android-x64@0.17.18:
- resolution: {integrity: sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-x64@0.18.11:
resolution: {integrity: sha512-iPuoxQEV34+hTF6FT7om+Qwziv1U519lEOvekXO9zaMMlT9+XneAhKL32DW3H7okrCOBQ44BMihE8dclbZtTuw==}
engines: {node: '>=12'}
@@ -4322,15 +3580,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/darwin-arm64@0.17.18:
- resolution: {integrity: sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-arm64@0.18.11:
resolution: {integrity: sha512-Gm0QkI3k402OpfMKyQEEMG0RuW2LQsSmI6OeO4El2ojJMoF5NLYb3qMIjvbG/lbMeLOGiW6ooU8xqc+S0fgz2w==}
engines: {node: '>=12'}
@@ -4339,15 +3588,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/darwin-x64@0.17.18:
- resolution: {integrity: sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-x64@0.18.11:
resolution: {integrity: sha512-N15Vzy0YNHu6cfyDOjiyfJlRJCB/ngKOAvoBf1qybG3eOq0SL2Lutzz9N7DYUbb7Q23XtHPn6lMDF6uWbGv9Fw==}
engines: {node: '>=12'}
@@ -4356,15 +3596,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64@0.17.18:
- resolution: {integrity: sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-arm64@0.18.11:
resolution: {integrity: sha512-atEyuq6a3omEY5qAh5jIORWk8MzFnCpSTUruBgeyN9jZq1K/QI9uke0ATi3MHu4L8c59CnIi4+1jDKMuqmR71A==}
engines: {node: '>=12'}
@@ -4373,15 +3604,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64@0.17.18:
- resolution: {integrity: sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-x64@0.18.11:
resolution: {integrity: sha512-XtuPrEfBj/YYYnAAB7KcorzzpGTvOr/dTtXPGesRfmflqhA4LMF0Gh/n5+a9JBzPuJ+CGk17CA++Hmr1F/gI0Q==}
engines: {node: '>=12'}
@@ -4390,15 +3612,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-arm64@0.17.18:
- resolution: {integrity: sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm64@0.18.11:
resolution: {integrity: sha512-c6Vh2WS9VFKxKZ2TvJdA7gdy0n6eSy+yunBvv4aqNCEhSWVor1TU43wNRp2YLO9Vng2G+W94aRz+ILDSwAiYog==}
engines: {node: '>=12'}
@@ -4407,15 +3620,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-arm@0.17.18:
- resolution: {integrity: sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm@0.18.11:
resolution: {integrity: sha512-Idipz+Taso/toi2ETugShXjQ3S59b6m62KmLHkJlSq/cBejixmIydqrtM2XTvNCywFl3VC7SreSf6NV0i6sRyg==}
engines: {node: '>=12'}
@@ -4424,15 +3628,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-ia32@0.17.18:
- resolution: {integrity: sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ia32@0.18.11:
resolution: {integrity: sha512-S3hkIF6KUqRh9n1Q0dSyYcWmcVa9Cg+mSoZEfFuzoYXXsk6196qndrM+ZiHNwpZKi3XOXpShZZ+9dfN5ykqjjw==}
engines: {node: '>=12'}
@@ -4441,15 +3636,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-loong64@0.17.18:
- resolution: {integrity: sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-loong64@0.18.11:
resolution: {integrity: sha512-MRESANOoObQINBA+RMZW+Z0TJWpibtE7cPFnahzyQHDCA9X9LOmGh68MVimZlM9J8n5Ia8lU773te6O3ILW8kw==}
engines: {node: '>=12'}
@@ -4458,15 +3644,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el@0.17.18:
- resolution: {integrity: sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-mips64el@0.18.11:
resolution: {integrity: sha512-qVyPIZrXNMOLYegtD1u8EBccCrBVshxMrn5MkuFc3mEVsw7CCQHaqZ4jm9hbn4gWY95XFnb7i4SsT3eflxZsUg==}
engines: {node: '>=12'}
@@ -4475,15 +3652,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64@0.17.18:
- resolution: {integrity: sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ppc64@0.18.11:
resolution: {integrity: sha512-T3yd8vJXfPirZaUOoA9D2ZjxZX4Gr3QuC3GztBJA6PklLotc/7sXTOuuRkhE9W/5JvJP/K9b99ayPNAD+R+4qQ==}
engines: {node: '>=12'}
@@ -4492,15 +3660,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-riscv64@0.17.18:
- resolution: {integrity: sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-riscv64@0.18.11:
resolution: {integrity: sha512-evUoRPWiwuFk++snjH9e2cAjF5VVSTj+Dnf+rkO/Q20tRqv+644279TZlPK8nUGunjPAtQRCj1jQkDAvL6rm2w==}
engines: {node: '>=12'}
@@ -4509,15 +3668,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-s390x@0.17.18:
- resolution: {integrity: sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-s390x@0.18.11:
resolution: {integrity: sha512-/SlRJ15XR6i93gRWquRxYCfhTeC5PdqEapKoLbX63PLCmAkXZHY2uQm2l9bN0oPHBsOw2IswRZctMYS0MijFcg==}
engines: {node: '>=12'}
@@ -4526,15 +3676,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-x64@0.17.18:
- resolution: {integrity: sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-x64@0.18.11:
resolution: {integrity: sha512-xcncej+wF16WEmIwPtCHi0qmx1FweBqgsRtEL1mSHLFR6/mb3GEZfLQnx+pUDfRDEM4DQF8dpXIW7eDOZl1IbA==}
engines: {node: '>=12'}
@@ -4543,15 +3684,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64@0.17.18:
- resolution: {integrity: sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/netbsd-x64@0.18.11:
resolution: {integrity: sha512-aSjMHj/F7BuS1CptSXNg6S3M4F3bLp5wfFPIJM+Km2NfIVfFKhdmfHF9frhiCLIGVzDziggqWll0B+9AUbud/Q==}
engines: {node: '>=12'}
@@ -4560,15 +3692,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64@0.17.18:
- resolution: {integrity: sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/openbsd-x64@0.18.11:
resolution: {integrity: sha512-tNBq+6XIBZtht0xJGv7IBB5XaSyvYPCm1PxJ33zLQONdZoLVM0bgGqUrXnJyiEguD9LU4AHiu+GCXy/Hm9LsdQ==}
engines: {node: '>=12'}
@@ -4577,15 +3700,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/sunos-x64@0.17.18:
- resolution: {integrity: sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/sunos-x64@0.18.11:
resolution: {integrity: sha512-kxfbDOrH4dHuAAOhr7D7EqaYf+W45LsAOOhAet99EyuxxQmjbk8M9N4ezHcEiCYPaiW8Dj3K26Z2V17Gt6p3ng==}
engines: {node: '>=12'}
@@ -4594,15 +3708,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-arm64@0.17.18:
- resolution: {integrity: sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-arm64@0.18.11:
resolution: {integrity: sha512-Sh0dDRyk1Xi348idbal7lZyfSkjhJsdFeuC13zqdipsvMetlGiFQNdO+Yfp6f6B4FbyQm7qsk16yaZk25LChzg==}
engines: {node: '>=12'}
@@ -4611,15 +3716,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-ia32@0.17.18:
- resolution: {integrity: sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-ia32@0.18.11:
resolution: {integrity: sha512-o9JUIKF1j0rqJTFbIoF4bXj6rvrTZYOrfRcGyL0Vm5uJ/j5CkBD/51tpdxe9lXEDouhRgdr/BYzUrDOvrWwJpg==}
engines: {node: '>=12'}
@@ -4628,15 +3724,6 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-x64@0.17.18:
- resolution: {integrity: sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-x64@0.18.11:
resolution: {integrity: sha512-rQI4cjLHd2hGsM1LqgDI7oOCYbQ6IBOVsX9ejuRMSze0GqXUG2ekwiKkiBU1pRGSeCqFFHxTrcEydB2Hyoz9CA==}
engines: {node: '>=12'}
@@ -4752,8 +3839,8 @@ packages:
- utf-8-validate
dev: false
- /@fastify/multipart@7.7.0:
- resolution: {integrity: sha512-lE5v6+MVbLYmPL8yUHrvyezEOLQbZulEPL8itwGqPbNxL2pWdAN1HWEZ7f3VdwyR6wmQdOcpfZ0zdCU4BbWKzw==}
+ /@fastify/multipart@7.7.1:
+ resolution: {integrity: sha512-D2S6XH8pbQj0GxfSP10G/MaQye3UACVNUH/D4ssw3ne9pcQ4DSKqojVIGcwa5XI7pdR91gXRHSWXFx8koCzBlg==}
dependencies:
'@fastify/busboy': 1.1.0
'@fastify/deepmerge': 1.3.0
@@ -4882,7 +3969,6 @@ packages:
strip-ansi-cjs: /strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: /wrap-ansi@7.0.0
- dev: false
/@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
@@ -5381,8 +4467,8 @@ packages:
tar-fs: 2.1.1
dev: true
- /@nestjs/common@10.0.5(reflect-metadata@0.1.13)(rxjs@7.8.1):
- resolution: {integrity: sha512-0E+SBI+SKswXbFG+Nwtnctrei5dvdFJ7b9/fQDL6KzDBtZwsglJpD86S3ooxnc7ek4vRG57oN2iLmMTjrcesMg==}
+ /@nestjs/common@10.1.0(reflect-metadata@0.1.13)(rxjs@7.8.1):
+ resolution: {integrity: sha512-3GNOuDjeAqEVt5Zjia3ZSK55Jg80hIIkq52BOzU+LkCjFgbuEhDot80lCKu05WyntAMAq5wREoDRGEGlSVxENw==}
peerDependencies:
class-transformer: '*'
class-validator: '*'
@@ -5401,8 +4487,8 @@ packages:
uid: 2.0.2
dev: false
- /@nestjs/core@10.0.5(@nestjs/common@10.0.5)(reflect-metadata@0.1.13)(rxjs@7.8.1):
- resolution: {integrity: sha512-9A8nixBfE33TWAmmWvNoxdmHrRmHJY0oO3O4Iue0FVkawWJc0YOhSqdNs87McwvKE4InJMI7GVv01NYMEROdPA==}
+ /@nestjs/core@10.1.0(@nestjs/common@10.1.0)(reflect-metadata@0.1.13)(rxjs@7.8.1):
+ resolution: {integrity: sha512-3ogHxrRAktQZNBSV709QxhNJQPsVInZRqxAK2fV7JDnfoBMu1lM3xI7cO498iViqq5xme3o/46+AdfjW9W2E2A==}
requiresBuild: true
peerDependencies:
'@nestjs/common': ^10.0.0
@@ -5419,7 +4505,7 @@ packages:
'@nestjs/websockets':
optional: true
dependencies:
- '@nestjs/common': 10.0.5(reflect-metadata@0.1.13)(rxjs@7.8.1)
+ '@nestjs/common': 10.1.0(reflect-metadata@0.1.13)(rxjs@7.8.1)
'@nuxtjs/opencollective': 0.3.2
fast-safe-stringify: 2.1.1
iterare: 1.2.1
@@ -5432,8 +4518,8 @@ packages:
- encoding
dev: false
- /@nestjs/testing@10.0.5(@nestjs/common@10.0.5)(@nestjs/core@10.0.5):
- resolution: {integrity: sha512-TQcFOxR+kIibMbYg71yajic3289/Iw7B5LliYiZ4Pz36BZvU0TRMYqpxaGAlX/Srk0BCpP99ZHoofm8dqZKmxw==}
+ /@nestjs/testing@10.1.0(@nestjs/common@10.1.0)(@nestjs/core@10.1.0):
+ resolution: {integrity: sha512-TqV/21PuU5GJ543oqLTrmQhWUiWwB7DDRcj5cknUdaOst+Kkwp0Sad3/5svcWgOB+QfFbwYlvIDeCkKJshZzPg==}
peerDependencies:
'@nestjs/common': ^10.0.0
'@nestjs/core': ^10.0.0
@@ -5445,11 +4531,16 @@ packages:
'@nestjs/platform-express':
optional: true
dependencies:
- '@nestjs/common': 10.0.5(reflect-metadata@0.1.13)(rxjs@7.8.1)
- '@nestjs/core': 10.0.5(@nestjs/common@10.0.5)(reflect-metadata@0.1.13)(rxjs@7.8.1)
+ '@nestjs/common': 10.1.0(reflect-metadata@0.1.13)(rxjs@7.8.1)
+ '@nestjs/core': 10.1.0(@nestjs/common@10.1.0)(reflect-metadata@0.1.13)(rxjs@7.8.1)
tslib: 2.6.0
dev: false
+ /@nicolo-ribaudo/semver-v6@6.3.3:
+ resolution: {integrity: sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==}
+ hasBin: true
+ dev: true
+
/@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -5522,7 +4613,6 @@ packages:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
requiresBuild: true
- dev: false
optional: true
/@redis/bloom@1.1.0(@redis/client@1.4.2):
@@ -5574,7 +4664,7 @@ packages:
'@redis/client': 1.4.2
dev: true
- /@rollup/plugin-alias@5.0.0(rollup@3.26.2):
+ /@rollup/plugin-alias@5.0.0(rollup@3.26.3):
resolution: {integrity: sha512-l9hY5chSCjuFRPsnRm16twWBiSApl2uYFLsepQYwtBuAxNMQ/1dJqADld40P0Jkqm65GRTLy/AC6hnpVebtLsA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -5583,11 +4673,11 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.26.2
+ rollup: 3.26.3
slash: 4.0.0
dev: false
- /@rollup/plugin-json@6.0.0(rollup@3.26.2):
+ /@rollup/plugin-json@6.0.0(rollup@3.26.3):
resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -5596,11 +4686,11 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.26.2)
- rollup: 3.26.2
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.3)
+ rollup: 3.26.3
dev: false
- /@rollup/plugin-replace@5.0.2(rollup@3.26.2):
+ /@rollup/plugin-replace@5.0.2(rollup@3.26.3):
resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -5609,20 +4699,12 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.26.2)
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.3)
magic-string: 0.27.0
- rollup: 3.26.2
+ rollup: 3.26.3
dev: false
- /@rollup/pluginutils@4.2.1:
- resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
- engines: {node: '>= 8.0.0'}
- dependencies:
- estree-walker: 2.0.2
- picomatch: 2.3.1
- dev: true
-
- /@rollup/pluginutils@5.0.2(rollup@3.26.2):
+ /@rollup/pluginutils@5.0.2(rollup@3.26.3):
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -5634,8 +4716,7 @@ packages:
'@types/estree': 1.0.1
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 3.26.2
- dev: false
+ rollup: 3.26.3
/@rushstack/node-core-library@3.59.5(@types/node@20.4.2):
resolution: {integrity: sha512-1IpV7LufrI1EoVO8hYsb3t6L8L+yp40Sa0OaOV2CIu1zx4e6ZeVNaVIEXFgMXBKdGXkAh21MnCaIzlDNpG6ZQw==}
@@ -6125,8 +5206,8 @@ packages:
resolution: {integrity: sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw==}
dev: false
- /@storybook/addon-actions@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-bDN7rxdEBfcgV+LJWpmd26RdblODIPFaR+UMLVIITLP2ZxSjJ5yCcDenKDvSZJCPLhDnDcyiUmNcyvRtdmWf0w==}
+ /@storybook/addon-actions@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-JQfcR1AjVWE/M4ayxfyCU/qSj5Jf5djKgvan0YaxTjtQr9tzIgTc93jeF+IPJMnv7ZoaeDW6BS/6n+zSDqJeTg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6136,14 +5217,14 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
dequal: 2.0.3
lodash: 4.17.21
polished: 4.2.2
@@ -6156,8 +5237,8 @@ packages:
uuid: 9.0.0
dev: true
- /@storybook/addon-backgrounds@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ujhlekvYirsEmRgLhKM8MtRHnG3ZBwkHKV7bj+BNl6YP39MB3SWlDqS9igRaoZhXvL1yIIbvtLkebaYBAL01dw==}
+ /@storybook/addon-backgrounds@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-6hSzERmm4z1j/CGSsjefa18qSgX/GnkIZ+2lA0Ju5M478UL60/m0C7fBkL5xDbNKMpuSPhO5oBSYevWbLrMX5g==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6167,22 +5248,22 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-controls@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-wONLfJ4x6gbuSGxkK54QDGFI2/pd3K32ukpp2rXV6DyyRzrjal3RQdLZYzSppEfDqxrmPTFuGiw7J7w0BLJ5TQ==}
+ /@storybook/addon-controls@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-uw1ynZTFM+ABdd5Dj6iTT3r+fTIY1ljZ09jITszlPENNM9SphCX8lAT0w+8wRVQlbn0mVY0amm2/GtV1sgt+Nw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6192,15 +5273,15 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/blocks': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 7.0.27
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/node-logger': 7.0.27
- '@storybook/preview-api': 7.0.27
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/blocks': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-common': 7.1.0
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/node-logger': 7.1.0
+ '@storybook/preview-api': 7.1.0
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
lodash: 4.17.21
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6210,29 +5291,27 @@ packages:
- supports-color
dev: true
- /@storybook/addon-docs@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Q7JbvpejyDVHl/ZS7uHBmgdX+GFznZ042ohPL6a8+vInET2L0u6iXKRz8ZUkvaGPs8NniN9fNkf62Xmw7x2EMQ==}
+ /@storybook/addon-docs@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-WH8oODVMr56Zxso6nnbikyph10jNKWyttuSxjksNClogaOPVAIWzglGa8TiGygzurzwZYkMsNWliUKsG4X32nw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/core': 7.22.1
- '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.1)
'@jest/transform': 29.6.1
'@mdx-js/react': 2.3.0(react@18.2.0)
- '@storybook/blocks': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/csf-plugin': 7.0.27
- '@storybook/csf-tools': 7.0.27
+ '@storybook/blocks': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/csf-plugin': 7.1.0
+ '@storybook/csf-tools': 7.1.0
'@storybook/global': 5.0.0
'@storybook/mdx2-csf': 1.0.0
- '@storybook/node-logger': 7.0.27
- '@storybook/postinstall': 7.0.27
- '@storybook/preview-api': 7.0.27
- '@storybook/react-dom-shim': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/node-logger': 7.1.0
+ '@storybook/postinstall': 7.1.0
+ '@storybook/preview-api': 7.1.0
+ '@storybook/react-dom-shim': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
fs-extra: 11.1.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6244,25 +5323,25 @@ packages:
- supports-color
dev: true
- /@storybook/addon-essentials@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-3A5XHrxO+B7oNb/vZCV784Sb1a89OjQZGT5+LdW3vvwcuHMoQy0hXie7g0CVZEbG0qqfUMVmGuDlRCLuexsWog==}
+ /@storybook/addon-essentials@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-KCNSQIPC5g1EJLqKQx0Ink91PytbL2YAv7DPXCkfmWyXKilK+u00cZeViqCt2EF9Q5LPzrTkw2wRvAv85UrHZQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addon-actions': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-backgrounds': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-controls': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-docs': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-highlight': 7.0.27
- '@storybook/addon-measure': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-outline': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-toolbars': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-viewport': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 7.0.27
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/node-logger': 7.0.27
- '@storybook/preview-api': 7.0.27
+ '@storybook/addon-actions': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-backgrounds': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-controls': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-docs': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-highlight': 7.1.0
+ '@storybook/addon-measure': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-outline': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-toolbars': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-viewport': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-common': 7.1.0
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/node-logger': 7.1.0
+ '@storybook/preview-api': 7.1.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
@@ -6271,16 +5350,16 @@ packages:
- supports-color
dev: true
- /@storybook/addon-highlight@7.0.27:
- resolution: {integrity: sha512-Lfiv0yeETF0pPyyN9lg4YXwLbEZXOOEzSkrXtBPgtrfhK/pfEBE5SUK4hmKy1droq1dEZhO52dxNUhg6y8GdWg==}
+ /@storybook/addon-highlight@7.1.0:
+ resolution: {integrity: sha512-h7kSFq4AZt+Y8ULCi76En3B2T9LZTba1zq1Om7EhmUQMzhCOhwnWqd5syxAwbmfCv7brQRvFaC1RP4DY9YtRLA==}
dependencies:
- '@storybook/core-events': 7.0.27
+ '@storybook/core-events': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.0.27
+ '@storybook/preview-api': 7.1.0
dev: true
- /@storybook/addon-interactions@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-0pt9tWqAqMQpHDS7hglcz0kpyu5KsP/51squflZkY5GhItXEY9IFxoBZ4Ttounp//2z/pj2iQW0dPE5WJpwTrw==}
+ /@storybook/addon-interactions@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-/szt1p22FIi96krgNGDe7YQQAjIo/Xfr6WJNiIBNEHz5Qh8uycFPn16k3YJBHIi0FLFVBdqBmrdp6IX+9TCxgQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6290,17 +5369,17 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 7.0.27
- '@storybook/core-events': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-common': 7.1.0
+ '@storybook/core-events': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 7.0.27
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
- jest-mock: 27.5.1
+ '@storybook/instrumenter': 7.1.0
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
+ jest-mock: 29.6.1
polished: 4.2.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6310,8 +5389,8 @@ packages:
- supports-color
dev: true
- /@storybook/addon-links@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-htnnP4VMvtuDAebd+fDDTrsZ6C6q8etag9+5rGhd/8I9NNHn6OZpAZONCk2uwqOOIS2PKQd/qmUwDz/yT2kcmQ==}
+ /@storybook/addon-links@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-1cEALwRfev7s/NDTJYwn6tg3JZv8zSwd12NMRWhc/PZdCMQf/X1TtOPqz/l3jqTkjANMQA+hxCNRNl4otPD1XQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6321,22 +5400,22 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/core-events': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/core-events': 7.1.0
'@storybook/csf': 0.1.0
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/router': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/router': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-measure@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ffwVgENUwoiG4vLniTxNV6Uw2dfLz7TkbIivAb+Z+OpkSfwu+2EXCt0shhoVAGfdrGSoaIij2TWabegd0jpUeQ==}
+ /@storybook/addon-measure@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-GUqsjU/TyrTyt+U0XkEJ3esEzfwxq9VtQi+HpIwUSVxJJmkyPX+LQROLWL8g+07YeytniWpyWAcfsk1jDbV8eQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6346,19 +5425,20 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/types': 7.1.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
+ tiny-invariant: 1.3.1
dev: true
- /@storybook/addon-outline@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-t4uSaeUN8M4LIx7pevub8MZBPzpTfXyjzpdkEhTNqFRccGPqhtL56i++lbRviRbNWAHmBP3pswudxSl97/1dBA==}
+ /@storybook/addon-outline@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-cOcyxcc80oGOm53xFInCQW1kJjX/jcrS3VQXoVUkIXf2NmwnOTp7MbkDqjCiiE0h/Za9QIqkbsTk/DrJvl905Q==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6368,20 +5448,20 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/types': 7.1.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-storysource@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-G0wC+8kd6aUExsHT/ppleDzDMaURrBqsoq/DCnCbOg+ULS+KTaT427aQr17YpsINtQ2TVjunBn4lAcrYjwpBnQ==}
+ /@storybook/addon-storysource@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-yg/nZFNk1V2sflsrRxOecyvJ+qaSbcm1TU8+l3EiEbpzub/d9gH9ZB2Ha6dJyzAk1VtI9O+N5ZZMQQcSy6DmFQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6391,22 +5471,23 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/router': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/source-loader': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/router': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/source-loader': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
estraverse: 5.3.0
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-syntax-highlighter: 15.5.0(react@18.2.0)
+ tiny-invariant: 1.3.1
dev: true
- /@storybook/addon-toolbars@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Zz7B/T9l+Eyvh7jYO+t4Fwdq2N8mVHkklztCSWz5gk/VE3cFttku3+PjPithdOXVbpqbux8HC8lDDS5KnQuurA==}
+ /@storybook/addon-toolbars@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-OUbmddPNWy8RN/PNdwpXJDkYKzaV9W1amRpEQM6esG8/yI/2P/v4gL6eLSeeH2V8+nL26kD7BZ0Gh9r+xORzJQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6416,17 +5497,17 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/addon-viewport@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-evU1b7DT8yUR47ZhfLC255NPlxgupEVOcAtwL+8aQEp3uhff+nYXOEN8u/fd3ZTKs0i37FRyNdk5FOMk18RykQ==}
+ /@storybook/addon-viewport@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-dvaD11qp2AG8xc9LubkYqp0yW+5ybaqTOn2uwK4qDDbwypkL+uE9K8G+8tQGIvfQPFye3ggpuqRzStZHr/JbsQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6436,49 +5517,49 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
memoizerific: 1.11.3
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/addons@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-LGfd8OAwS+zl7qQyLSAg/JjkfDDyf2uhwZIMYHomv3Oow/KT8kPqAdLqmsuAYBrTFBEqX3duemdHgjG7lVv9qQ==}
+ /@storybook/addons@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-8OvGnotiChaCx+ep0MMfquNZBdrkk6P2BO+ZahCy4bhxrnIsUs6XyOpDGDVTkfKDT5i/dEW49cwyRdnmNJnzcA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/types': 7.1.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/blocks@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-6EXUWS1DjI68HXHFilaav9/sAqLKZKNBaVdhIHoRfB3lJ29MzxQe1k5BN+JRnUQE9cKC/F5XuP9y2pg7P1Y6CQ==}
+ /@storybook/blocks@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-DWK3+l+OycPx4QNPobTxWzQUy3Q+D2DNbzTUX1ndew6cuzfi87O7k1hmn//dZQoFzV0BZzx02kVljNQY56w/Bw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/channels': 7.0.27
- '@storybook/client-logger': 7.0.27
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.0.27
+ '@storybook/channels': 7.1.0
+ '@storybook/client-logger': 7.1.0
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.1.0
'@storybook/csf': 0.1.0
- '@storybook/docs-tools': 7.0.27
+ '@storybook/docs-tools': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
'@types/lodash': 4.14.191
color-convert: 2.0.1
dequal: 2.0.3
@@ -6490,6 +5571,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.0.4
+ tocbot: 4.21.0
ts-dedent: 2.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
@@ -6497,19 +5579,19 @@ packages:
- supports-color
dev: true
- /@storybook/builder-manager@7.0.27:
- resolution: {integrity: sha512-KDhBAx8Ib1nnAoB3Lm9kGo2QwBbxwFbonbB0otfT0hGhLSTKllHRYx3WL24bqibI9a87Jt1RT913PZusQ5up4w==}
+ /@storybook/builder-manager@7.1.0:
+ resolution: {integrity: sha512-7uwpy+zPF+MIWeG1w8hflwJm0eo4q4G3n/KDbB5OhaU+oApL3SrTFzmy3f2eOIQ3fbbGfZ+P48DjkeyAbRFCIg==}
dependencies:
'@fal-works/esbuild-plugin-global-externals': 2.1.2
- '@storybook/core-common': 7.0.27
- '@storybook/manager': 7.0.27
- '@storybook/node-logger': 7.0.27
+ '@storybook/core-common': 7.1.0
+ '@storybook/manager': 7.1.0
+ '@storybook/node-logger': 7.1.0
'@types/ejs': 3.1.2
'@types/find-cache-dir': 3.2.1
- '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.17.18)
+ '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.11)
browser-assert: 1.2.1
ejs: 3.1.8
- esbuild: 0.17.18
+ esbuild: 0.18.11
esbuild-plugin-alias: 0.2.1
express: 4.18.2
find-cache-dir: 3.3.2
@@ -6521,8 +5603,8 @@ packages:
- supports-color
dev: true
- /@storybook/builder-vite@7.0.27(typescript@5.1.6)(vite@4.4.4):
- resolution: {integrity: sha512-kIoEkkIJSKbJRq81R1jKZJ32NWbdJBcCh88J7y/C6tJFL6itKPucIiQEsptWlDZNOJHlxY2dkw3bVz1zaFWpOw==}
+ /@storybook/builder-vite@7.1.0(typescript@5.1.6)(vite@4.4.4):
+ resolution: {integrity: sha512-4fYsapT5q6op63fBZ4mkZAzA8srObmQqUnydVW4M5v0UCoqKBdZtRMkibLJ2M9FoLJZxDnDO1HydaV7nPwN+zg==}
peerDependencies:
'@preact/preset-vite': '*'
typescript: '>= 4.3.x'
@@ -6536,26 +5618,25 @@ packages:
vite-plugin-glimmerx:
optional: true
dependencies:
- '@storybook/channel-postmessage': 7.0.27
- '@storybook/channel-websocket': 7.0.27
- '@storybook/client-logger': 7.0.27
- '@storybook/core-common': 7.0.27
- '@storybook/csf-plugin': 7.0.27
+ '@storybook/channels': 7.1.0
+ '@storybook/client-logger': 7.1.0
+ '@storybook/core-common': 7.1.0
+ '@storybook/csf-plugin': 7.1.0
'@storybook/mdx2-csf': 1.0.0
- '@storybook/node-logger': 7.0.27
- '@storybook/preview': 7.0.27
- '@storybook/preview-api': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/node-logger': 7.1.0
+ '@storybook/preview': 7.1.0
+ '@storybook/preview-api': 7.1.0
+ '@storybook/types': 7.1.0
+ '@types/find-cache-dir': 3.2.1
browser-assert: 1.2.1
es-module-lexer: 0.9.3
express: 4.18.2
+ find-cache-dir: 3.3.2
fs-extra: 11.1.1
- glob: 8.1.0
- glob-promise: 6.0.2(glob@8.1.0)
- magic-string: 0.27.0
+ magic-string: 0.30.1
remark-external-links: 8.0.0
remark-slug: 6.1.0
- rollup: 3.26.2
+ rollup: 3.26.3
typescript: 5.1.6
vite: 4.4.4(@types/node@20.4.2)(sass@1.63.6)
transitivePeerDependencies:
@@ -6574,49 +5655,45 @@ packages:
telejson: 7.0.4
dev: true
- /@storybook/channel-postmessage@7.0.27:
- resolution: {integrity: sha512-ScpiStUHvtgy9RrCFNyzzH9l+zHF80lSwW/BZ1MRETJ9ZaOVPrm03U0Ju01wJC57DYPROwPU/wKMetNqKKEhdA==}
+ /@storybook/channel-postmessage@7.1.0:
+ resolution: {integrity: sha512-xiuaPvqeV3ewvBgVf8ZMWL5UeAMiIZuSuUVuWg1Vet6uIP4ZXj463oHcV4Uc9IdaXZQK0+8r2ZrGrRNr/sLxgA==}
dependencies:
- '@storybook/channels': 7.0.27
- '@storybook/client-logger': 7.0.27
- '@storybook/core-events': 7.0.27
- '@storybook/global': 5.0.0
- qs: 6.11.1
- telejson: 7.0.4
- dev: true
-
- /@storybook/channel-websocket@7.0.27:
- resolution: {integrity: sha512-5WZmd5cd54HYa1WMWN694o266HpvWvGj9XC17DD+DwVARnWRxBmFnZs+X2FE68rGzccjD2cAJXyDTFHrcS+U1g==}
- dependencies:
- '@storybook/channels': 7.0.27
- '@storybook/client-logger': 7.0.27
- '@storybook/global': 5.0.0
- telejson: 7.0.4
+ '@storybook/channels': 7.1.0
+ '@storybook/client-logger': 7.1.0
dev: true
/@storybook/channels@7.0.2:
resolution: {integrity: sha512-qkI8mFy9c8mxN2f01etayKhCaauL6RAsxRzbX1/pKj6UqhHWqqUbtHwymrv4hG5qDYjV1e9pd7ae5eNF8Kui0g==}
dev: true
- /@storybook/channels@7.0.27:
- resolution: {integrity: sha512-YppvPa1qMyC+oCQJ3tf7Quzpf2NnBlvIRLPJiGAMssUwX5qE0iKe9lTtkNwMaNxEvzz6rDxewSlz+f/MWr4gPw==}
+ /@storybook/channels@7.1.0:
+ resolution: {integrity: sha512-8uzjWdVG2IK18P8n6H+olAs+jnZr+HeYs1t2xiRy4NVSLhBffB71ut5F+pcWZfdDe3gyX8Tfvy68NloTNt9POg==}
+ dependencies:
+ '@storybook/client-logger': 7.1.0
+ '@storybook/core-events': 7.1.0
+ '@storybook/global': 5.0.0
+ qs: 6.11.1
+ telejson: 7.0.4
+ tiny-invariant: 1.3.1
dev: true
- /@storybook/cli@7.0.27:
- resolution: {integrity: sha512-iHugKuE3Rw/QdFSJBCJQYaZJsnEAQtFLf9vYNRjEqmkif5AR0leZj4yQ5kV1OfQ8MRuh+FGQ/u1cz6fRsFiWEA==}
+ /@storybook/cli@7.1.0:
+ resolution: {integrity: sha512-HYHPQJ59fcHlW3tljuxtL/zN/+iJHWvS0XC9vIk/s+SzY4foy0T+OId8tmUgU0w93UznkoX6f/3y47rZ2d3ozQ==}
hasBin: true
dependencies:
'@babel/core': 7.22.1
- '@babel/preset-env': 7.21.4(@babel/core@7.22.1)
+ '@babel/preset-env': 7.22.9(@babel/core@7.22.1)
'@ndelangen/get-tarball': 3.0.7
- '@storybook/codemod': 7.0.27
- '@storybook/core-common': 7.0.27
- '@storybook/core-server': 7.0.27
- '@storybook/csf-tools': 7.0.27
- '@storybook/node-logger': 7.0.27
- '@storybook/telemetry': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/codemod': 7.1.0
+ '@storybook/core-common': 7.1.0
+ '@storybook/core-server': 7.1.0
+ '@storybook/csf-tools': 7.1.0
+ '@storybook/node-logger': 7.1.0
+ '@storybook/telemetry': 7.1.0
+ '@storybook/types': 7.1.0
'@types/semver': 7.5.0
+ '@yarnpkg/fslib': 2.10.3
+ '@yarnpkg/libzip': 2.3.0
chalk: 4.1.2
commander: 6.2.1
cross-spawn: 7.0.3
@@ -6630,7 +5707,7 @@ packages:
get-port: 5.1.1
giget: 1.1.2
globby: 11.1.0
- jscodeshift: 0.14.0(@babel/preset-env@7.21.4)
+ jscodeshift: 0.14.0(@babel/preset-env@7.22.9)
leven: 3.1.0
ora: 5.4.1
prettier: 2.8.8
@@ -6638,7 +5715,6 @@ packages:
puppeteer-core: 2.1.1
read-pkg-up: 7.0.1
semver: 7.5.4
- shelljs: 0.8.5
simple-update-notifier: 1.1.0
strip-json-comments: 3.1.1
tempy: 1.0.1
@@ -6657,25 +5733,26 @@ packages:
'@storybook/global': 5.0.0
dev: true
- /@storybook/client-logger@7.0.27:
- resolution: {integrity: sha512-t4F0ByHP4MNiyVI5sgqtxSccr4RmPAqTr/h6CeGLJKWzUYobBV5hwKUd/qlfwdjev2u9C7AdLFPBKVcHX5PteA==}
+ /@storybook/client-logger@7.1.0:
+ resolution: {integrity: sha512-br5GNTxNFmDZA4ESaCMn2VJ9ZW3ejbILEGoadOJjP2ZD40luSRNtTtWjeNiA+7762OvHMYVGwG0tnqk98f5nfg==}
dependencies:
'@storybook/global': 5.0.0
dev: true
- /@storybook/codemod@7.0.27:
- resolution: {integrity: sha512-kJyJkxEkbm4tnKKcDgVOqN9PG+Pf3ibsl6Skrm1m3wrbOql3DAVfZzLec/QeFOXrGmmSuvl7JdBQrkJj22Bu1Q==}
+ /@storybook/codemod@7.1.0:
+ resolution: {integrity: sha512-ZDoJo1hqHbqR1arPwmm5n2qxROfTiigYDBpQCAEjVehFgT1eF1qAjiEjG/MBD0cpgj2pJ1GZTEIs52DU8sm3OQ==}
dependencies:
- '@babel/core': 7.21.3
- '@babel/preset-env': 7.21.4(@babel/core@7.21.3)
- '@babel/types': 7.21.5
+ '@babel/core': 7.22.1
+ '@babel/preset-env': 7.22.9(@babel/core@7.22.1)
+ '@babel/types': 7.22.5
'@storybook/csf': 0.1.0
- '@storybook/csf-tools': 7.0.27
- '@storybook/node-logger': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/csf-tools': 7.1.0
+ '@storybook/node-logger': 7.1.0
+ '@storybook/types': 7.1.0
+ '@types/cross-spawn': 6.0.2
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.14.0(@babel/preset-env@7.21.4)
+ jscodeshift: 0.14.0(@babel/preset-env@7.22.9)
lodash: 4.17.21
prettier: 2.8.8
recast: 0.23.1
@@ -6683,17 +5760,17 @@ packages:
- supports-color
dev: true
- /@storybook/components@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-utt4fA1td7QHpvuD/9dWm9UEoO5xTU3EsXk/U2fPUQzN9NEsbWKV/QubUYIpVy5iwwgUyMvqzWHM0veAriJW5A==}
+ /@storybook/components@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-o8Z5L7cxxNCUhbEA+vGwoVrZ0vWhuZJb/AUc+347RIlH1QZF4Cu6fmgA49pKBsrJWPbtOmlLCbN/9LshszH0Zw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 7.0.27
+ '@storybook/client-logger': 7.1.0
'@storybook/csf': 0.1.0
'@storybook/global': 5.0.0
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6701,29 +5778,30 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/core-client@7.0.27:
- resolution: {integrity: sha512-5cyAdOLqMUJfGW2c31U4/Q5TF+8DQnuQ6jKeX3W8ZQVhDn/Kox4qYNxRR0aRUUHTzxRVojQfmDHXy8IxZqYBNA==}
+ /@storybook/core-client@7.1.0:
+ resolution: {integrity: sha512-lFgrez7OPr5Eol6/+dSHtPOgGg7WmE+qIMpMt9MHUhawjuX4UqWcs8unhjG+I30nBcC4J9Lxygf5yqZLm7Wt0A==}
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/preview-api': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/preview-api': 7.1.0
dev: true
- /@storybook/core-common@7.0.27:
- resolution: {integrity: sha512-nlHXpn3CghCwkeIffZ7/PzcraCDXNZz+cnR4L8vtgJn1n6W7y92mxfF8gkRHuiYHWHbPWRVP9M5vAmVoiNMxjw==}
+ /@storybook/core-common@7.1.0:
+ resolution: {integrity: sha512-6jrL1RUA/Vgy+zXzeno12k6CKFIqRh3I5W7XgN2nNZJc98PRl2etDdhFL3LkBn8lWddDeKpnmlI4SWjb2HYtcA==}
dependencies:
- '@storybook/node-logger': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/node-logger': 7.1.0
+ '@storybook/types': 7.1.0
+ '@types/find-cache-dir': 3.2.1
'@types/node': 16.18.16
'@types/node-fetch': 2.6.4
'@types/pretty-hrtime': 1.0.1
chalk: 4.1.2
- esbuild: 0.17.18
- esbuild-register: 3.4.2(esbuild@0.17.18)
+ 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
fs-extra: 11.1.1
- glob: 8.1.0
- glob-promise: 6.0.2(glob@8.1.0)
+ glob: 10.3.0
handlebars: 4.7.7
lazy-universal-dotenv: 4.0.0
node-fetch: 2.6.11
@@ -6741,33 +5819,33 @@ packages:
resolution: {integrity: sha512-1DCHCwHRL3+rlvnVVc/BCfReP31XaT2WYgcLeGTmkX1E43Po1MkgcM7PnJPSaa9POvSqZ+6YLZv5Bs1SXbufow==}
dev: true
- /@storybook/core-events@7.0.27:
- resolution: {integrity: sha512-sNnqgO5i5DUIqeQfNbr987KWvAciMN9FmMBuYdKjVFMqWFyr44HTgnhfKwZZKl+VMDYkHA9Do7UGSYZIKy0P4g==}
+ /@storybook/core-events@7.1.0:
+ resolution: {integrity: sha512-b0kZ5ElPZj3NPqWhGsHHuLn0riA4wJXJ5mNBOe2scd8Cw52ELQr5rVHOMROhONOgpOaZBZ+QZd/MDvJDRyxTQw==}
dev: true
- /@storybook/core-server@7.0.27:
- resolution: {integrity: sha512-9OBDtJ57qJYAgj5UNK8ip4XVSQEVAZxAXWv3QKkQi/QHGixOpxNG4piOF5TdQHv4kc/OX6I0j25ZIrO8jl+VnA==}
+ /@storybook/core-server@7.1.0:
+ resolution: {integrity: sha512-CELvm5RAAvBtXVnxLpF9n6VD4HXsf+f/5KKcojMVq5zh0WSeF4lOokPAXYqmflcToVP1SNWBKtQgVPaMI6y1Nw==}
dependencies:
- '@aw-web-design/x-default-browser': 1.4.88
+ '@aw-web-design/x-default-browser': 1.4.126
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-manager': 7.0.27
- '@storybook/core-common': 7.0.27
- '@storybook/core-events': 7.0.27
+ '@storybook/builder-manager': 7.1.0
+ '@storybook/channels': 7.1.0
+ '@storybook/core-common': 7.1.0
+ '@storybook/core-events': 7.1.0
'@storybook/csf': 0.1.0
- '@storybook/csf-tools': 7.0.27
+ '@storybook/csf-tools': 7.1.0
'@storybook/docs-mdx': 0.1.0
'@storybook/global': 5.0.0
- '@storybook/manager': 7.0.27
- '@storybook/node-logger': 7.0.27
- '@storybook/preview-api': 7.0.27
- '@storybook/telemetry': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/manager': 7.1.0
+ '@storybook/node-logger': 7.1.0
+ '@storybook/preview-api': 7.1.0
+ '@storybook/telemetry': 7.1.0
+ '@storybook/types': 7.1.0
'@types/detect-port': 1.3.2
'@types/node': 16.18.16
- '@types/node-fetch': 2.6.4
'@types/pretty-hrtime': 1.0.1
'@types/semver': 7.5.0
- better-opn: 2.1.1
+ better-opn: 3.0.2
chalk: 4.1.2
cli-table3: 0.6.3
compression: 1.7.4
@@ -6777,7 +5855,6 @@ packages:
globby: 11.1.0
ip: 2.0.0
lodash: 4.17.21
- node-fetch: 2.6.11
open: 8.4.2
pretty-hrtime: 1.0.3
prompts: 2.4.2
@@ -6785,7 +5862,9 @@ packages:
semver: 7.5.4
serve-favicon: 2.5.0
telejson: 7.0.4
+ tiny-invariant: 1.3.1
ts-dedent: 2.2.0
+ util: 0.12.5
util-deprecate: 1.0.2
watchpack: 2.4.0
ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@6.0.3)
@@ -6796,24 +5875,24 @@ packages:
- utf-8-validate
dev: true
- /@storybook/csf-plugin@7.0.27:
- resolution: {integrity: sha512-9GqsRNrLMH9+P/57TfGZMZOYgnai1klI0hnBAHwPUaBvCwXx/pjOBy4VW30OslT1JLHzu2ZIvZxZiy+yNZM03w==}
+ /@storybook/csf-plugin@7.1.0:
+ resolution: {integrity: sha512-CXr+Erj/rIrDzrVDrF9sSpvkptNaWNjJed/nP1bRV/tuEDDVaTY5CR+T8fPoTLd1qkNNE5RkmiPXhJlNk+4njA==}
dependencies:
- '@storybook/csf-tools': 7.0.27
- unplugin: 0.10.2
+ '@storybook/csf-tools': 7.1.0
+ unplugin: 1.3.2
transitivePeerDependencies:
- supports-color
dev: true
- /@storybook/csf-tools@7.0.27:
- resolution: {integrity: sha512-JrSP628b1VVQa2lLefEX1u3DRng4Czrl+NBFy5Mgy9JjXFs1dGJM9m0k1/r2qNO4Km9HeTcR4NAcTMfatqzw2Q==}
+ /@storybook/csf-tools@7.1.0:
+ resolution: {integrity: sha512-KC2H3IU302juWxChevEbzvr7axBrf0SQI7DQg116KwxChmMvUrO1Z50pnT7i+s9rnYN461OYNj5A7gCoc6cOCQ==}
dependencies:
- '@babel/generator': 7.21.3
- '@babel/parser': 7.21.9
- '@babel/traverse': 7.21.3
- '@babel/types': 7.21.5
+ '@babel/generator': 7.22.3
+ '@babel/parser': 7.22.7
+ '@babel/traverse': 7.22.4
+ '@babel/types': 7.22.5
'@storybook/csf': 0.1.0
- '@storybook/types': 7.0.27
+ '@storybook/types': 7.1.0
fs-extra: 11.1.1
recast: 0.23.1
ts-dedent: 2.2.0
@@ -6831,13 +5910,12 @@ packages:
resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==}
dev: true
- /@storybook/docs-tools@7.0.27:
- resolution: {integrity: sha512-vXlFbwnlJV1ihYbwoP7uJ8JhYXkhaH3WL1yzIJx0kL1Fl1KLQc+x4flBM3pWO2MkrRa2hFLy5GrDwD6GxbMfEQ==}
+ /@storybook/docs-tools@7.1.0:
+ resolution: {integrity: sha512-tXZiN+6fJCZHXR3Sg+Qek066Ed8W8qvqmrdihgudkktCkxMT0kywb06p+u8YXEFxbYP0X7L+2mZpGZnLX+bWUw==}
dependencies:
- '@babel/core': 7.22.1
- '@storybook/core-common': 7.0.27
- '@storybook/preview-api': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/core-common': 7.1.0
+ '@storybook/preview-api': 7.1.0
+ '@storybook/types': 7.1.0
'@types/doctrine': 0.0.3
doctrine: 3.0.0
lodash: 4.17.21
@@ -6866,14 +5944,14 @@ packages:
'@storybook/preview-api': 7.0.2
dev: true
- /@storybook/instrumenter@7.0.27:
- resolution: {integrity: sha512-LR1Dm90lC5nurZQ5ZIbNa/8b+0AsBOQkEgnK/BQkheGMdlmrsh/i3dDqscOPZBPTLxZoYhhYWh27fDKHnT8bhw==}
+ /@storybook/instrumenter@7.1.0:
+ resolution: {integrity: sha512-vsJzxGo6IN0iS0Ro/8b2qA0x+uRLZ5JIhoN+n9fwTkHDxil/u5t7HPuNMXKkgXFKQYxVX9VlehQEu2DRz3mORQ==}
dependencies:
- '@storybook/channels': 7.0.27
- '@storybook/client-logger': 7.0.27
- '@storybook/core-events': 7.0.27
+ '@storybook/channels': 7.1.0
+ '@storybook/client-logger': 7.1.0
+ '@storybook/core-events': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.0.27
+ '@storybook/preview-api': 7.1.0
dev: true
/@storybook/jest@0.1.0:
@@ -6885,20 +5963,20 @@ packages:
jest-mock: 27.5.1
dev: true
- /@storybook/manager-api@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-CVgy4ti8h0Xc4nxiPujTzhMANl9wmfLGvSA9ZX6YUBbKFV4UOL4oj105iHPW7Ngse6Qoqj0rnhkOSmLczXT03w==}
+ /@storybook/manager-api@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-a4UtzWcN/a12Kr4Z5B0KO05t3w3BtXapLRUERxiwB769ab/XJ6MmIyFY7mybKty3RZhmBWaO/oSfgrOwCeP/Gw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/channels': 7.0.27
- '@storybook/client-logger': 7.0.27
- '@storybook/core-events': 7.0.27
+ '@storybook/channels': 7.1.0
+ '@storybook/client-logger': 7.1.0
+ '@storybook/core-events': 7.1.0
'@storybook/csf': 0.1.0
'@storybook/global': 5.0.0
- '@storybook/router': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/router': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
@@ -6910,25 +5988,20 @@ packages:
ts-dedent: 2.2.0
dev: true
- /@storybook/manager@7.0.27:
- resolution: {integrity: sha512-Kxryp9Bp3EEr1axZdq7iOU5epmUvd65j/uT9FxFFHp5ffag6ULfRYVmrXsSIfR6UkwAbx2XYX/W+ScWRel4pDA==}
+ /@storybook/manager@7.1.0:
+ resolution: {integrity: sha512-YOuP7YICIcLVWC4QjpFK/AK5MXVzoAodneMmVFZ0+6qXxdaxHyz/hiu34s//lG/KAQZLz2m4z0GjwtJQafey+Q==}
dev: true
/@storybook/mdx2-csf@1.0.0:
resolution: {integrity: sha512-dBAnEL4HfxxJmv7LdEYUoZlQbWj9APZNIbOaq0tgF8XkxiIbzqvgB0jhL/9UOrysSDbQWBiCRTu2wOVxedGfmw==}
dev: true
- /@storybook/node-logger@7.0.27:
- resolution: {integrity: sha512-idoK+sDaTTPuxHcKhxn+l27Omhxvr1TQ0ALw1h8ehyMbW8TZBdWvYLYfmiWeI3+NQtmeudzxhKSVYTmAY4qDJw==}
- dependencies:
- '@types/npmlog': 4.1.4
- chalk: 4.1.2
- npmlog: 5.0.1
- pretty-hrtime: 1.0.3
+ /@storybook/node-logger@7.1.0:
+ resolution: {integrity: sha512-Mw5kfcqfW1YI4pqW4+Y/SgnjitEMoqVZdTBQxxA9lS6YOlkQqwmtIFu7or4W/ZCFaPX9dwgd171o870vsA2DlA==}
dev: true
- /@storybook/postinstall@7.0.27:
- resolution: {integrity: sha512-VehWuUQxTlqSfTEl3rnufA9+aBbFIv802c8HMJ6SsnwRSb93vlc2ZDGxx3hzryQhbBuI8oNDQx0VdFVwn+MkEg==}
+ /@storybook/postinstall@7.1.0:
+ resolution: {integrity: sha512-TsPCqe/2s1chhZoU2eOvjXFteZ00ALVKsTP03FMDOAVc1EkH3dIMAQE1j3ZCt0RnDW1lWfN+QMxgqrgQ/f3mMw==}
dev: true
/@storybook/preview-api@7.0.2:
@@ -6951,16 +6024,16 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/preview-api@7.0.27:
- resolution: {integrity: sha512-FhauTuLzRsaIaEORQP5lxYrzwRgZPMnfYEPnzduyGgPiY6VZkS6wIiO6pKzat83V1L4J7m5aZhTB3HtvTwPhvg==}
+ /@storybook/preview-api@7.1.0:
+ resolution: {integrity: sha512-uLVCUCQKhZDWCfl7dW8+zhbqz0X41K0/nbyFpMtS7PxAveTFFOirAq0Pqtmb7JaeAYGGxkQqCYJJDdE9ZbAlYA==}
dependencies:
- '@storybook/channel-postmessage': 7.0.27
- '@storybook/channels': 7.0.27
- '@storybook/client-logger': 7.0.27
- '@storybook/core-events': 7.0.27
+ '@storybook/channel-postmessage': 7.1.0
+ '@storybook/channels': 7.1.0
+ '@storybook/client-logger': 7.1.0
+ '@storybook/core-events': 7.1.0
'@storybook/csf': 0.1.0
'@storybook/global': 5.0.0
- '@storybook/types': 7.0.27
+ '@storybook/types': 7.1.0
'@types/qs': 6.9.7
dequal: 2.0.3
lodash: 4.17.21
@@ -6971,12 +6044,12 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/preview@7.0.27:
- resolution: {integrity: sha512-yHUlMX6wUlIlOYIzfUtqkuXOgRPJJLqGfeniMxLWjNpcePgZ6iSx0fF91ubKfPF1uUbA5vGSVX6KI+AF/RLM1Q==}
+ /@storybook/preview@7.1.0:
+ resolution: {integrity: sha512-Jw5VhtxL45aw4DBGwFmGoRcqUxSaWc/OexvF8LnCZct8MIL2FKdzMwjQZfqD0GN52KqRo7yMU5V43bZcXKqP6w==}
dev: true
- /@storybook/react-dom-shim@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-KnyBrs9S8BIWIhNdT6cIpqmSE9CAxL8uGH/ev60OutKeM+rf3SC3AylIBSvMdjy4cykMasg16QiShK+MMbKl9g==}
+ /@storybook/react-dom-shim@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-KPHbvwVu8iA0G8FkCbxuRwDGJPquiONgtYJn6ChHyL/ZjC/9+sUaUWEThbsFEnqdRzXKLgwHqZjF1UieT+TW6Q==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6985,8 +6058,8 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/react-vite@7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(vite@4.4.4):
- resolution: {integrity: sha512-dqvN3jGqICYmBcDGtkEVVDWVbVVUj5OdLVaExdU8gfB9f/qYPMTtq95KN3p75uwiDe7KMOCNf5tY/ttRJRkQXA==}
+ /@storybook/react-vite@7.1.0(react-dom@18.2.0)(react@18.2.0)(rollup@3.26.3)(typescript@5.1.6)(vite@4.4.4):
+ resolution: {integrity: sha512-lMgUDcBpW2BE4PqPt+FmOnv6ocIBkBxo//n3g+CFidrF40ERmxtFa7gZdEvnPjAS6Jms8162mIWb6uZuh2fAqw==}
engines: {node: '>=16'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6994,12 +6067,12 @@ packages:
vite: ^3.0.0 || ^4.0.0
dependencies:
'@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1(typescript@5.1.6)(vite@4.4.4)
- '@rollup/pluginutils': 4.2.1
- '@storybook/builder-vite': 7.0.27(typescript@5.1.6)(vite@4.4.4)
- '@storybook/react': 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.3)
+ '@storybook/builder-vite': 7.1.0(typescript@5.1.6)(vite@4.4.4)
+ '@storybook/react': 7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
'@vitejs/plugin-react': 3.1.0(vite@4.4.4)
ast-types: 0.14.2
- magic-string: 0.27.0
+ magic-string: 0.30.1
react: 18.2.0
react-docgen: 6.0.0-alpha.3
react-dom: 18.2.0(react@18.2.0)
@@ -7007,13 +6080,14 @@ packages:
transitivePeerDependencies:
- '@preact/preset-vite'
- encoding
+ - rollup
- supports-color
- typescript
- vite-plugin-glimmerx
dev: true
- /@storybook/react@7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
- resolution: {integrity: sha512-NPD6J5okkxiBx8k8TWvn03qG6ThD2rp1+2nFGgo3cInCEmvDgoa3wjq/Gl/2QV4W8XrQ8GiItj0Lzca+CBrkOw==}
+ /@storybook/react@7.1.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-yTxuc9RucWTfFxU2emoO0/KPwUkRvEUE6jUrnCDaYR6lsq9RhiZjs072t8sCyUM+9KPwQQrt96cNmKyYN7Yg5w==}
engines: {node: '>=16.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -7023,13 +6097,13 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/core-client': 7.0.27
- '@storybook/docs-tools': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/core-client': 7.1.0
+ '@storybook/docs-tools': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.0.27
- '@storybook/react-dom-shim': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/preview-api': 7.1.0
+ '@storybook/react-dom-shim': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
'@types/node': 16.18.16
@@ -7044,7 +6118,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
react-element-to-jsx-string: 15.0.0(react-dom@18.2.0)(react@18.2.0)
ts-dedent: 2.2.0
- type-fest: 2.19.0
+ type-fest: 3.13.1
typescript: 5.1.6
util-deprecate: 1.0.2
transitivePeerDependencies:
@@ -7052,27 +6126,27 @@ packages:
- supports-color
dev: true
- /@storybook/router@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Onflm2mERipuYB3SR+0CFAZKPbDiLsJdgX09BP8bGrg7dVYwiGkL5dc9H/CP0KPxtC7kXT8x1Zc+yx0Y0kWiJw==}
+ /@storybook/router@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-zZUFV84bIjhKADrV7ZzHPOBtxumeonUU1Nbq7X+k6AWsurpUAdlpQrM+H+37eWIeFONX8Rfc0EUTrx+WUAq1hA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 7.0.27
+ '@storybook/client-logger': 7.1.0
memoizerific: 1.11.3
qs: 6.11.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/source-loader@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-2qDH5WxumUGPia/q9pX1hsiGtoDXSQYFeLISJPsIe2Dd8WCiLOxIARXOkZxnzOL+pvFNaD2Y3Mas1JH/4Oy+gA==}
+ /@storybook/source-loader@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-IJAJ3fi6rEOeFu5uzB3+hLcNL/Np98ki86H1D+LCjnfJRicP2V+rM3aFfcGTY+/dYy9vV0+Qlj7oDwgo4o+99A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/csf': 0.1.0
- '@storybook/types': 7.0.27
+ '@storybook/types': 7.1.0
estraverse: 5.3.0
lodash: 4.17.21
prettier: 2.8.8
@@ -7080,17 +6154,16 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/telemetry@7.0.27:
- resolution: {integrity: sha512-dKPxR7BpIZU/6WmKXnPRHR1b7mlpLcEPoBxOXZKfEmTV6Qb+OIwr2N7pEQA1Jzlktkfw2CoM2O9s1JOMWrVnvQ==}
+ /@storybook/telemetry@7.1.0:
+ resolution: {integrity: sha512-Vy4MvaBzD1pu+eRLHUswd3buFYzr5eUjgpFWwXF6vNGN9WHuceVr/430sFwWRzhrqKnbu4tY8CwekqKeE1uaSg==}
dependencies:
- '@storybook/client-logger': 7.0.27
- '@storybook/core-common': 7.0.27
+ '@storybook/client-logger': 7.1.0
+ '@storybook/core-common': 7.1.0
+ '@storybook/csf-tools': 7.1.0
chalk: 4.1.2
detect-package-manager: 2.0.1
fetch-retry: 5.0.4
fs-extra: 11.1.1
- isomorphic-unfetch: 3.1.0
- nanoid: 3.3.6
read-pkg-up: 7.0.1
transitivePeerDependencies:
- encoding
@@ -7105,14 +6178,14 @@ packages:
ts-dedent: 2.2.0
dev: true
- /@storybook/theming@7.0.27(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-l2Lc8xX8QXQO8c9gpzdUUJ+0YqLoh8w74I7lzxiife0TzEQrhWD9aRJAVimm8Vzfq5x3CNeJNFHc5PcG8ypQig==}
+ /@storybook/theming@7.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-bO56c7NFlK7sfjsCbV56VLU59HHvQTW/HVu8RxUuoY+0WutyGAq6uZCmtQnMMGORzxh0p/uU2dSBVYEfW8QoTQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0)
- '@storybook/client-logger': 7.0.27
+ '@storybook/client-logger': 7.1.0
'@storybook/global': 5.0.0
memoizerific: 1.11.3
react: 18.2.0
@@ -7128,34 +6201,35 @@ packages:
file-system-cache: 2.3.0
dev: true
- /@storybook/types@7.0.27:
- resolution: {integrity: sha512-pmJuIm+kGaZiDMyl2i5KFS9iGWrpW1jVcp9OMtHeK20LBzY5Hxq/JMc3E+fbVNkAX2hVlVGbbVUNPTvd9AjbrA==}
+ /@storybook/types@7.1.0:
+ resolution: {integrity: sha512-ify1+BypgEFefkKCqBfh9fTWnkZcEqeDvLlOxbEV82C2ozg0yPlDP9VLe1eN5XM5Biigs6ZQ6WuQysl0VlCaEw==}
dependencies:
- '@storybook/channels': 7.0.27
+ '@storybook/channels': 7.1.0
'@types/babel__core': 7.20.0
'@types/express': 4.17.17
file-system-cache: 2.3.0
dev: true
- /@storybook/vue3-vite@7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(vite@4.4.4)(vue@3.3.4):
- resolution: {integrity: sha512-+48Xs5G6sHyn+ZfaR++ohkYEOpc1BvNB+qHPp8QZmWobT1hDu5EMz0VV+eBfZ0/Faw6l2I3y7QgEB29bM+HMew==}
+ /@storybook/vue3-vite@7.1.0(@vue/compiler-core@3.3.4)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(vite@4.4.4)(vue@3.3.4):
+ resolution: {integrity: sha512-KjO3xRCWdZGmpt+/hyUZjNEtIlWY7fDL/uC1Py93/jRWpDM5svXX0zZXDtl1IH3zbW+5lGIQoW9bTqoFd3XI5Q==}
engines: {node: ^14.18 || >=16}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
vite: ^3.0.0 || ^4.0.0
dependencies:
- '@storybook/builder-vite': 7.0.27(typescript@5.1.6)(vite@4.4.4)
- '@storybook/core-server': 7.0.27
- '@storybook/vue3': 7.0.27(vue@3.3.4)
+ '@storybook/builder-vite': 7.1.0(typescript@5.1.6)(vite@4.4.4)
+ '@storybook/core-server': 7.1.0
+ '@storybook/vue3': 7.1.0(@vue/compiler-core@3.3.4)(vue@3.3.4)
'@vitejs/plugin-vue': 4.2.3(vite@4.4.4)(vue@3.3.4)
- magic-string: 0.27.0
+ magic-string: 0.30.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
vite: 4.4.4(@types/node@20.4.2)(sass@1.63.6)
vue-docgen-api: 4.64.1(vue@3.3.4)
transitivePeerDependencies:
- '@preact/preset-vite'
+ - '@vue/compiler-core'
- bufferutil
- encoding
- supports-color
@@ -7165,19 +6239,22 @@ packages:
- vue
dev: true
- /@storybook/vue3@7.0.27(vue@3.3.4):
- resolution: {integrity: sha512-7pbURxvk8BlfkDxb6+APzpw2T1uoi+RVsBai2TeqVQXAYf4MCO8ec8PzDf9Jm9CLYkEaNdJxUHLYNB9NUQhQcw==}
+ /@storybook/vue3@7.1.0(@vue/compiler-core@3.3.4)(vue@3.3.4):
+ resolution: {integrity: sha512-u+vxHd447MYxjJ2bvn89ZHF1Xh0/hi/q2rpX2Q7vo4zlvsLqYFYfrQE8VwodLTgVdOTYBItl3uKTnBDK19t6kA==}
engines: {node: '>=16.0.0'}
peerDependencies:
+ '@vue/compiler-core': ^3.0.0
vue: ^3.0.0
dependencies:
- '@storybook/core-client': 7.0.27
- '@storybook/docs-tools': 7.0.27
+ '@storybook/core-client': 7.1.0
+ '@storybook/docs-tools': 7.1.0
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.0.27
- '@storybook/types': 7.0.27
+ '@storybook/preview-api': 7.1.0
+ '@storybook/types': 7.1.0
+ '@vue/compiler-core': 3.3.4
+ lodash: 4.17.21
ts-dedent: 2.2.0
- type-fest: 2.19.0
+ type-fest: 3.13.1
vue: 3.3.4
vue-component-type-helpers: 1.8.5
transitivePeerDependencies:
@@ -7185,7 +6262,7 @@ packages:
- supports-color
dev: true
- /@swc/cli@0.1.62(@swc/core@1.3.69)(chokidar@3.5.3):
+ /@swc/cli@0.1.62(@swc/core@1.3.70)(chokidar@3.5.3):
resolution: {integrity: sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==}
engines: {node: '>= 12.13'}
hasBin: true
@@ -7197,7 +6274,7 @@ packages:
optional: true
dependencies:
'@mole-inc/bin-wrapper': 8.0.1
- '@swc/core': 1.3.69
+ '@swc/core': 1.3.70
chokidar: 3.5.3
commander: 7.2.0
fast-glob: 3.2.12
@@ -7234,6 +6311,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-darwin-arm64@1.3.70:
+ resolution: {integrity: sha512-31+mcl0dgdRHvZRjhLOK9V6B+qJ7nxDZYINr9pBlqGWxknz37Vld5KK19Kpr79r0dXUZvaaelLjCnJk9dA2PcQ==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
/@swc/core-darwin-x64@1.3.56:
resolution: {integrity: sha512-VH5saqYFasdRXJy6RAT+MXm0+IjkMZvOkohJwUei+oA65cKJofQwrJ1jZro8yOJFYvUSI3jgNRGsdBkmo/4hMw==}
engines: {node: '>=10'}
@@ -7251,6 +6336,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-darwin-x64@1.3.70:
+ resolution: {integrity: sha512-GMFJ65E18zQC80t0os+TZvI+8lbRuitncWVge/RXmXbVLPRcdykP4EJ87cqzcG5Ah0z18/E0T+ixD6jHRisrYQ==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
/@swc/core-linux-arm-gnueabihf@1.3.56:
resolution: {integrity: sha512-LWwPo6NnJkH01+ukqvkoNIOpMdw+Zundm4vBeicwyVrkP+mC3kwVfi03TUFpQUz3kRKdw/QEnxGTj+MouCPbtw==}
engines: {node: '>=10'}
@@ -7268,6 +6361,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-linux-arm-gnueabihf@1.3.70:
+ resolution: {integrity: sha512-wjhCwS8LCiAq2VedF1b4Bryyw68xZnfMED4pLRazAl8BaUlDFANfRBORNunxlfHQj4V3x39IaiLgCZRHMdzXBg==}
+ engines: {node: '>=10'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@swc/core-linux-arm64-gnu@1.3.56:
resolution: {integrity: sha512-GzsUy/4egJ4cMlxbM+Ub7AMi5CKAc+pxBxrh8MUPQbyStW8jGgnQsJouTnGy0LHawtdEnsCOl6PcO6OgvktXuQ==}
engines: {node: '>=10'}
@@ -7285,6 +6386,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-linux-arm64-gnu@1.3.70:
+ resolution: {integrity: sha512-9D/Rx67cAOnMiexvCqARxvhj7coRajTp5HlJHuf+rfwMqI2hLhpO9/pBMQxBUAWxODO/ksQ/OF+GJRjmtWw/2A==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@swc/core-linux-arm64-musl@1.3.56:
resolution: {integrity: sha512-9gxL09BIiAv8zY0DjfnFf19bo8+P4T9tdhzPwcm+1yPJcY5yr1+YFWLNFzz01agtOj6VlZ2/wUJTaOfdjjtc+A==}
engines: {node: '>=10'}
@@ -7302,6 +6411,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-linux-arm64-musl@1.3.70:
+ resolution: {integrity: sha512-gkjxBio7XD+1GlQVVyPP/qeFkLu83VhRHXaUrkNYpr5UZG9zZurBERT9nkS6Y+ouYh+Q9xmw57aIyd2KvD2zqQ==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@swc/core-linux-x64-gnu@1.3.56:
resolution: {integrity: sha512-n0ORNknl50vMRkll3BDO1E4WOqY6iISlPV1ZQCRLWQ6YQ2q8/WAryBxc2OAybcGHBUFkxyACpJukeU1QZ/9tNw==}
engines: {node: '>=10'}
@@ -7319,6 +6436,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-linux-x64-gnu@1.3.70:
+ resolution: {integrity: sha512-/nCly+V4xfMVwfEUoLLAukxUSot/RcSzsf6GdsGTjFcrp5sZIntAjokYRytm3VT1c2TK321AfBorsi9R5w8Y7Q==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@swc/core-linux-x64-musl@1.3.56:
resolution: {integrity: sha512-r+D34WLAOAlJtfw1gaVWpHRwCncU9nzW9i7w9kSw4HpWYnHJOz54jLGSEmNsrhdTCz1VK2ar+V2ktFUsrlGlDA==}
engines: {node: '>=10'}
@@ -7336,6 +6461,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-linux-x64-musl@1.3.70:
+ resolution: {integrity: sha512-HoOsPJbt361KGKaivAK0qIiYARkhzlxeAfvF5NlnKxkIMOZpQ46Lwj3tR0VWohKbrhS+cYKFlVuDi5XnDkx0XA==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@swc/core-win32-arm64-msvc@1.3.56:
resolution: {integrity: sha512-29Yt75Is6X24z3x8h/xZC1HnDPkPpyLH9mDQiM6Cuc0I9mVr1XSriPEUB2N/awf5IE4SA8c+3IVq1DtKWbkJIw==}
engines: {node: '>=10'}
@@ -7353,6 +6486,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-win32-arm64-msvc@1.3.70:
+ resolution: {integrity: sha512-hm4IBK/IaRil+aj1cWU6f0GyAdHpw/Jr5nyFYLM2c/tt7w2t5hgb8NjzM2iM84lOClrig1fG6edj2vCF1dFzNQ==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@swc/core-win32-ia32-msvc@1.3.56:
resolution: {integrity: sha512-mplp0zbYDrcHtfvkniXlXdB04e2qIjz2Gq/XHKr4Rnc6xVORJjjXF91IemXKpavx2oZYJws+LNJL7UFQ8jyCdQ==}
engines: {node: '>=10'}
@@ -7370,6 +6511,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-win32-ia32-msvc@1.3.70:
+ resolution: {integrity: sha512-5cgKUKIT/9Fp5fCA+zIjYCQ4dSvjFYOeWGZR3QiTXGkC4bGa1Ji9SEPyeIAX0iruUnKjYaZB9RvHK2tNn7RLrQ==}
+ engines: {node: '>=10'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@swc/core-win32-x64-msvc@1.3.56:
resolution: {integrity: sha512-zp8MBnrw/bjdLenO/ifYzHrImSjKunqL0C2IF4LXYNRfcbYFh2NwobsVQMZ20IT0474lKRdlP8Oxdt+bHuXrzA==}
engines: {node: '>=10'}
@@ -7387,6 +6536,14 @@ packages:
requiresBuild: true
optional: true
+ /@swc/core-win32-x64-msvc@1.3.70:
+ resolution: {integrity: sha512-LE8lW46+TQBzVkn2mHBlk8DIElPIZ2dO5P8AbJiARNBAnlqQWu67l9gWM89UiZ2l33J2cI37pHzON3tKnT8f9g==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@swc/core@1.3.69:
resolution: {integrity: sha512-Khc/DE9D5+2tYTHgAIp5DZARbs8kldWg3b0Jp6l8FQLjelcLFmlQWSwKhVZrgv4oIbgZydIp8jInsvTalMHqnQ==}
engines: {node: '>=10'}
@@ -7408,6 +6565,27 @@ packages:
'@swc/core-win32-ia32-msvc': 1.3.69
'@swc/core-win32-x64-msvc': 1.3.69
+ /@swc/core@1.3.70:
+ resolution: {integrity: sha512-LWVWlEDLlOD25PvA2NEz41UzdwXnlDyBiZbe69s3zM0DfCPwZXLUm79uSqH9ItsOjTrXSL5/1+XUL6C/BZwChA==}
+ engines: {node: '>=10'}
+ requiresBuild: true
+ peerDependencies:
+ '@swc/helpers': ^0.5.0
+ peerDependenciesMeta:
+ '@swc/helpers':
+ optional: true
+ optionalDependencies:
+ '@swc/core-darwin-arm64': 1.3.70
+ '@swc/core-darwin-x64': 1.3.70
+ '@swc/core-linux-arm-gnueabihf': 1.3.70
+ '@swc/core-linux-arm64-gnu': 1.3.70
+ '@swc/core-linux-arm64-musl': 1.3.70
+ '@swc/core-linux-x64-gnu': 1.3.70
+ '@swc/core-linux-x64-musl': 1.3.70
+ '@swc/core-win32-arm64-msvc': 1.3.70
+ '@swc/core-win32-ia32-msvc': 1.3.70
+ '@swc/core-win32-x64-msvc': 1.3.70
+
/@swc/jest@0.2.26(@swc/core@1.3.69):
resolution: {integrity: sha512-7lAi7q7ShTO3E5Gt1Xqf3pIhRbERxR1DUxvtVa9WKzIB+HGQ7wZP5sYx86zqnaEoKKGhmOoZ7gyW0IRu8Br5+A==}
engines: {npm: '>= 7.0.0'}
@@ -7419,6 +6597,17 @@ packages:
jsonc-parser: 3.2.0
dev: true
+ /@swc/jest@0.2.26(@swc/core@1.3.70):
+ resolution: {integrity: sha512-7lAi7q7ShTO3E5Gt1Xqf3pIhRbERxR1DUxvtVa9WKzIB+HGQ7wZP5sYx86zqnaEoKKGhmOoZ7gyW0IRu8Br5+A==}
+ engines: {npm: '>= 7.0.0'}
+ peerDependencies:
+ '@swc/core': '*'
+ dependencies:
+ '@jest/create-cache-key-function': 27.5.1
+ '@swc/core': 1.3.70
+ jsonc-parser: 3.2.0
+ dev: true
+
/@swc/wasm@1.2.130:
resolution: {integrity: sha512-rNcJsBxS70+pv8YUWwf5fRlWX6JoY/HJc25HD/F8m6Kv7XhJdqPPMhyX6TKkUBPAG7TWlZYoxa+rHAjPy4Cj3Q==}
requiresBuild: true
@@ -7658,7 +6847,7 @@ packages:
resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==}
dependencies:
'@babel/parser': 7.22.7
- '@babel/types': 7.22.4
+ '@babel/types': 7.22.5
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.20.0
@@ -7667,20 +6856,20 @@ packages:
/@types/babel__generator@7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.22.4
+ '@babel/types': 7.22.5
dev: true
/@types/babel__template@7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
'@babel/parser': 7.22.7
- '@babel/types': 7.22.4
+ '@babel/types': 7.22.5
dev: true
/@types/babel__traverse@7.20.0:
resolution: {integrity: sha512-TBOjqAGf0hmaqRwpii5LLkJLg7c6OMm4nHLmpsUxwk9bBHtoTC6dAHdVWdGv4TBxj2CZOZY8Xfq8WmfoVi7n4Q==}
dependencies:
- '@babel/types': 7.22.4
+ '@babel/types': 7.22.5
dev: true
/@types/bcryptjs@2.4.2:
@@ -7747,6 +6936,12 @@ packages:
resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
dev: true
+ /@types/cross-spawn@6.0.2:
+ resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==}
+ dependencies:
+ '@types/node': 20.4.2
+ dev: true
+
/@types/debug@4.1.7:
resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==}
dependencies:
@@ -7769,6 +6964,10 @@ packages:
resolution: {integrity: sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==}
dev: true
+ /@types/emscripten@1.39.6:
+ resolution: {integrity: sha512-H90aoynNhhkQP6DRweEjJp5vfUVdIj7tdPLsu7pq89vODD/lcugKfZOsfgwpvM6XUewEp2N5dCg1Uf3Qe55Dcg==}
+ dev: true
+
/@types/escape-regexp@0.0.1:
resolution: {integrity: sha512-ogj/ZTIdeFkiuxDwawYuZSIgC6suFGgBeZPr6Xs5lHEcvIXTjXGtH+/n8f1XhZhespaUwJ5LIGRICPji972FLw==}
dev: true
@@ -8034,10 +7233,6 @@ packages:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
dev: true
- /@types/npmlog@4.1.4:
- resolution: {integrity: sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==}
- dev: true
-
/@types/oauth@0.9.1:
resolution: {integrity: sha512-a1iY62/a3yhZ7qH7cNUsxoI3U/0Fe9+RnuFrpTKr+0WVOzbKlSLojShCKe20aOD1Sppv+i8Zlq0pLDuTJnwS4A==}
dependencies:
@@ -8543,7 +7738,7 @@ packages:
'@volar/language-core': 1.9.0
dev: true
- /@vue-macros/common@1.5.0(rollup@3.26.2)(vue@3.3.4):
+ /@vue-macros/common@1.5.0(rollup@3.26.3)(vue@3.3.4):
resolution: {integrity: sha512-/Xtmxigolh4NwyLQfrBv+8PAIhlB3doBH7JcA0WuSMmi5LzGOK3YzDCp5jMzpXB6OoUGmm1ZaDkJcBsEmijFPw==}
engines: {node: '>=16.14.0'}
peerDependencies:
@@ -8553,9 +7748,9 @@ packages:
optional: true
dependencies:
'@babel/types': 7.22.5
- '@rollup/pluginutils': 5.0.2(rollup@3.26.2)
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.3)
'@vue/compiler-sfc': 3.3.4
- ast-kit: 0.6.9(rollup@3.26.2)
+ ast-kit: 0.6.9(rollup@3.26.3)
local-pkg: 0.4.3
magic-string-ast: 0.1.3
vue: 3.3.4
@@ -8563,14 +7758,14 @@ packages:
- rollup
dev: false
- /@vue-macros/reactivity-transform@0.3.14(rollup@3.26.2)(vue@3.3.4):
- resolution: {integrity: sha512-JiC09q/qlj69hLJ20zNFTlI8y45NwMe1bmC6IIr4FJ1/6uth/U9SE/zcVG0TLnAaykiRaU7OMU4qI0wQx8e3OA==}
+ /@vue-macros/reactivity-transform@0.3.15(rollup@3.26.3)(vue@3.3.4):
+ resolution: {integrity: sha512-gDer+sjmKX2wxHNR/epv6RolmRwVuMszoaQ5bZEivrE9LLVEoQwy9RGYVtGR5sAzvSJ2wokb4beHh7f8+l6Rbw==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^2.7.0 || ^3.2.25
dependencies:
'@babel/parser': 7.22.7
- '@vue-macros/common': 1.5.0(rollup@3.26.2)(vue@3.3.4)
+ '@vue-macros/common': 1.5.0(rollup@3.26.3)(vue@3.3.4)
'@vue/compiler-core': 3.3.4
'@vue/shared': 3.3.4
magic-string: 0.30.1
@@ -8702,16 +7897,32 @@ packages:
engines: {node: '>=10.0.0'}
dev: true
- /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.17.18):
+ /@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.17.18
+ esbuild: 0.18.11
tslib: 2.6.0
dev: true
+ /@yarnpkg/fslib@2.10.3:
+ resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==}
+ engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
+ dependencies:
+ '@yarnpkg/libzip': 2.3.0
+ tslib: 1.14.1
+ dev: true
+
+ /@yarnpkg/libzip@2.3.0:
+ resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==}
+ engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
+ dependencies:
+ '@types/emscripten': 1.39.6
+ tslib: 1.14.1
+ dev: true
+
/@zxing/text-encoding@0.9.0:
resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==}
requiresBuild: true
@@ -8913,7 +8124,6 @@ packages:
/ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
- dev: false
/ansi-styles@2.2.1:
resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
@@ -8941,7 +8151,6 @@ packages:
/ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- dev: false
/ansi-wrap@0.1.0:
resolution: {integrity: sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==}
@@ -8986,6 +8195,7 @@ packages:
/aproba@2.0.0:
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
+ dev: false
/arch@2.2.0:
resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
@@ -9029,6 +8239,8 @@ packages:
dependencies:
delegates: 1.0.0
readable-stream: 3.6.0
+ dev: false
+ optional: true
/are-we-there-yet@3.0.1:
resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
@@ -9210,12 +8422,12 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /ast-kit@0.6.9(rollup@3.26.2):
+ /ast-kit@0.6.9(rollup@3.26.3):
resolution: {integrity: sha512-2XZi+wqlluYQcxJ1G8qE/U0IeO5CbxUyv1lnSdD7ByJtd5Z3+1063Q6IHbRaYkka1Kb6WgGqEkBrSMaBtbHuFQ==}
engines: {node: '>=16.14.0'}
dependencies:
'@babel/parser': 7.22.7
- '@rollup/pluginutils': 5.0.2(rollup@3.26.2)
+ '@rollup/pluginutils': 5.0.2(rollup@3.26.3)
pathe: 1.1.1
transitivePeerDependencies:
- rollup
@@ -9424,74 +8636,38 @@ packages:
'@types/babel__traverse': 7.20.0
dev: true
- /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.3):
- resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
+ /babel-plugin-polyfill-corejs2@0.4.4(@babel/core@7.22.1):
+ resolution: {integrity: sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.22.3
- '@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.1):
- resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.3
+ '@babel/compat-data': 7.22.9
'@babel/core': 7.22.1
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.1)
- semver: 6.3.0
+ '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.1)
+ '@nicolo-ribaudo/semver-v6': 6.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.3):
- resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
- core-js-compat: 3.29.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.22.1):
- resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
+ /babel-plugin-polyfill-corejs3@0.8.2(@babel/core@7.22.1):
+ resolution: {integrity: sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.1)
- core-js-compat: 3.29.1
+ '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.1)
+ core-js-compat: 3.31.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.3):
- resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.22.1):
- resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
+ /babel-plugin-polyfill-regenerator@0.5.1(@babel/core@7.22.1):
+ resolution: {integrity: sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.22.1
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.1)
+ '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.1)
transitivePeerDependencies:
- supports-color
dev: true
@@ -9580,11 +8756,11 @@ packages:
resolution: {integrity: sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==}
dev: false
- /better-opn@2.1.1:
- resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==}
- engines: {node: '>8.0.0'}
+ /better-opn@3.0.2:
+ resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==}
+ engines: {node: '>=12.0.0'}
dependencies:
- open: 7.4.2
+ open: 8.4.2
dev: true
/big-integer@1.6.51:
@@ -9768,6 +8944,17 @@ packages:
update-browserslist-db: 1.0.10(browserslist@4.21.5)
dev: true
+ /browserslist@4.21.9:
+ resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001516
+ electron-to-chromium: 1.4.463
+ node-releases: 2.0.13
+ update-browserslist-db: 1.0.11(browserslist@4.21.9)
+ dev: true
+
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
dependencies:
@@ -9831,8 +9018,8 @@ packages:
dependencies:
node-gyp-build: 4.6.0
- /bullmq@4.3.0:
- resolution: {integrity: sha512-0icxNkg1JqS44wnAQW27iNVG6hH0Cfx1XeXBoeZPfWKyqqJgePDbljk0o8iYyTgK/J2I38NGyN7MTGHCnOFVyQ==}
+ /bullmq@4.4.0:
+ resolution: {integrity: sha512-2fpKxT9wQUTaOfAxaVXztYM3krvngi91lG340jz0rHcKADbkl1sSqzELystXFbormW98lhfWo6V72Cqs84biPA==}
dependencies:
cron-parser: 4.8.1
glob: 8.1.0
@@ -10014,6 +9201,10 @@ packages:
resolution: {integrity: sha512-zgAo8D5kbOyUcRAgSmgyuvBkjrGk5CGYG5TYgFdpQv+ywcyEpo1LOWoG8YmoflGnh+V+UsNuKYedsoYs0hzV5A==}
dev: true
+ /caniuse-lite@1.0.30001516:
+ resolution: {integrity: sha512-Wmec9pCBY8CWbmI4HsjBeQLqDTqV91nFVR83DnZpYyRnPI1wePDsTg0bGLPC5VU/3OIZV1fmxEea1b+tFKe86g==}
+ dev: true
+
/canonicalize@1.0.8:
resolution: {integrity: sha512-0CNTVCLZggSh7bc5VkX5WWPWO+cyZbNd07IHIsSXLia/eAq+r836hgk+8BKoEh7949Mda87VUOitx5OddVj64A==}
dev: false
@@ -10476,6 +9667,7 @@ packages:
/color-support@1.1.3:
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
+ dev: false
/color@0.11.4:
resolution: {integrity: sha512-Ajpjd8asqZ6EdxQeqGzU5WBhhTfJ/0cA4Wlbre7e5vXfmDSmda7Ov6jeKoru+b0vHcb1CqvuroTHp5zIWzhVMA==}
@@ -10615,6 +9807,7 @@ packages:
/console-control-strings@1.1.0:
resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
+ dev: false
/constantinople@4.0.1:
resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==}
@@ -10665,10 +9858,10 @@ packages:
is-plain-object: 5.0.0
dev: false
- /core-js-compat@3.29.1:
- resolution: {integrity: sha512-QmchCua884D8wWskMX8tW5ydINzd8oSJVx38lx/pVkFGqztxt73GYre3pm/hyYq8bPf+MW5In4I/uRShFDsbrA==}
+ /core-js-compat@3.31.1:
+ resolution: {integrity: sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==}
dependencies:
- browserslist: 4.21.5
+ browserslist: 4.21.9
dev: true
/core-js@3.29.1:
@@ -11160,6 +10353,7 @@ packages:
/delegates@1.0.0:
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
+ dev: false
/denque@2.1.0:
resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
@@ -11337,7 +10531,6 @@ packages:
/eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- dev: false
/ecc-jsbn@0.1.2:
resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
@@ -11375,6 +10568,10 @@ packages:
/electron-to-chromium@1.4.284:
resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==}
+ /electron-to-chromium@1.4.463:
+ resolution: {integrity: sha512-fT3hvdUWLjDbaTGzyOjng/CQhQJSQP8ThO3XZAoaxHvHo2kUXiRQVMj9M235l8uDFiNPsPa6KHT1p3RaR6ugRw==}
+ dev: true
+
/emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
engines: {node: '>=12'}
@@ -11389,7 +10586,6 @@ packages:
/emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- dev: false
/encode-utf8@1.0.3:
resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==}
@@ -11565,47 +10761,17 @@ packages:
resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
dev: true
- /esbuild-register@3.4.2(esbuild@0.17.18):
+ /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(supports-color@8.1.1)
- esbuild: 0.17.18
+ esbuild: 0.18.11
transitivePeerDependencies:
- supports-color
dev: true
- /esbuild@0.17.18:
- resolution: {integrity: sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.17.18
- '@esbuild/android-arm64': 0.17.18
- '@esbuild/android-x64': 0.17.18
- '@esbuild/darwin-arm64': 0.17.18
- '@esbuild/darwin-x64': 0.17.18
- '@esbuild/freebsd-arm64': 0.17.18
- '@esbuild/freebsd-x64': 0.17.18
- '@esbuild/linux-arm': 0.17.18
- '@esbuild/linux-arm64': 0.17.18
- '@esbuild/linux-ia32': 0.17.18
- '@esbuild/linux-loong64': 0.17.18
- '@esbuild/linux-mips64el': 0.17.18
- '@esbuild/linux-ppc64': 0.17.18
- '@esbuild/linux-riscv64': 0.17.18
- '@esbuild/linux-s390x': 0.17.18
- '@esbuild/linux-x64': 0.17.18
- '@esbuild/netbsd-x64': 0.17.18
- '@esbuild/openbsd-x64': 0.17.18
- '@esbuild/sunos-x64': 0.17.18
- '@esbuild/win32-arm64': 0.17.18
- '@esbuild/win32-ia32': 0.17.18
- '@esbuild/win32-x64': 0.17.18
- dev: true
-
/esbuild@0.18.11:
resolution: {integrity: sha512-i8u6mQF0JKJUlGR3OdFLKldJQMMs8OqM9Cc3UCi9XXziJ9WERM5bfkHaEAy0YAvPRMgqSW55W7xYn84XtEFTtA==}
engines: {node: '>=12'}
@@ -12307,8 +11473,8 @@ packages:
resolution: {integrity: sha512-79ak0JxddO0utAXAQ5ccKhvs6vX2MGyHHMMsmZkBANrq3hXc1CHzvNPHOcvTsVMEPl5I+NT+RO4YKMGehOfSIg==}
dev: false
- /fastify@4.19.2:
- resolution: {integrity: sha512-2unheeIRWFf9/Jjcz7djOpKuXCTzZjlyFfiBwKqpldkHMN2rfTLu/f9pYTdwlhzC9Cdj0S2H12zlug0Kd5uZ1w==}
+ /fastify@4.20.0:
+ resolution: {integrity: sha512-zWWi5KGAb1YZ6fyrnFnA1CA1EZHkGM6YuELgB3QpS3l4lLRy14W1cc16b4KGPH/zQ98WCSdS+T41JkHY3eq1oA==}
dependencies:
'@fastify/ajv-compiler': 3.5.0
'@fastify/error': 3.2.0
@@ -12643,7 +11809,6 @@ packages:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.0.2
- dev: false
/forever-agent@0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
@@ -12825,6 +11990,8 @@ packages:
string-width: 4.2.3
strip-ansi: 6.0.1
wide-align: 1.1.5
+ dev: false
+ optional: true
/gauge@4.0.4:
resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
@@ -12998,16 +12165,6 @@ packages:
glob: 7.2.3
dev: true
- /glob-promise@6.0.2(glob@8.1.0):
- resolution: {integrity: sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==}
- engines: {node: '>=16'}
- peerDependencies:
- glob: ^8.0.3
- dependencies:
- '@types/glob': 8.1.0
- glob: 8.1.0
- dev: true
-
/glob-stream@6.1.0:
resolution: {integrity: sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==}
engines: {node: '>= 0.10'}
@@ -13053,7 +12210,6 @@ packages:
minimatch: 9.0.2
minipass: 5.0.0
path-scurry: 1.9.2
- dev: false
/glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
@@ -13390,6 +12546,7 @@ packages:
/has-unicode@2.0.1:
resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
+ dev: false
/has-value@0.3.1:
resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
@@ -13757,6 +12914,7 @@ packages:
/interpret@1.4.0:
resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
engines: {node: '>= 0.10'}
+ dev: false
/invert-kv@1.0.0:
resolution: {integrity: sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==}
@@ -14315,15 +13473,6 @@ packages:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- /isomorphic-unfetch@3.1.0:
- resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
- dependencies:
- node-fetch: 2.6.11
- unfetch: 4.2.0
- transitivePeerDependencies:
- - encoding
- dev: true
-
/isstream@0.1.2:
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
@@ -14393,7 +13542,6 @@ packages:
'@isaacs/cliui': 8.0.2
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- dev: false
/jake@10.8.5:
resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
@@ -14942,7 +14090,7 @@ packages:
resolution: {integrity: sha512-lJH6tJ77V8Nzd5QWRkFYCLc13a3vADkh3r/Fi8HupZGWk2OVVDfnZP8V/VgQgZ+lzW0kG2UGb5hFgt3V3ndotQ==}
engines: {node: '>=0.1.90'}
- /jscodeshift@0.14.0(@babel/preset-env@7.21.4):
+ /jscodeshift@0.14.0(@babel/preset-env@7.22.9):
resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
hasBin: true
peerDependencies:
@@ -14954,7 +14102,7 @@ packages:
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.1)
'@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.1)
'@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.1)
- '@babel/preset-env': 7.21.4(@babel/core@7.22.1)
+ '@babel/preset-env': 7.22.9(@babel/core@7.22.1)
'@babel/preset-flow': 7.18.6(@babel/core@7.22.1)
'@babel/preset-typescript': 7.21.0(@babel/core@7.22.1)
'@babel/register': 7.21.0(@babel/core@7.22.1)
@@ -15505,7 +14653,6 @@ packages:
/lru-cache@9.1.2:
resolution: {integrity: sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==}
engines: {node: 14 || >=16.14}
- dev: false
/luxon@3.3.0:
resolution: {integrity: sha512-An0UCfG/rSiqtAIiBPO0Y9/zAnHUZxAMiCpTd5h2smgsj7GGmcenvrvww2cqNA8/4A5ZrD1gJpHN2mIHZQF+Mg==}
@@ -15903,7 +15050,6 @@ packages:
/minipass@5.0.0:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- dev: false
/minizlib@1.3.3:
resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==}
@@ -16291,6 +15437,10 @@ packages:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
dev: true
+ /node-releases@2.0.13:
+ resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+ dev: true
+
/node-releases@2.0.8:
resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==}
dev: true
@@ -16406,6 +15556,8 @@ packages:
console-control-strings: 1.1.0
gauge: 3.0.2
set-blocking: 2.0.0
+ dev: false
+ optional: true
/npmlog@6.0.2:
resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
@@ -16592,14 +15744,6 @@ packages:
dependencies:
mimic-fn: 4.0.0
- /open@7.4.2:
- resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
- engines: {node: '>=8'}
- dependencies:
- is-docker: 2.2.1
- is-wsl: 2.2.0
- dev: true
-
/open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
@@ -16942,7 +16086,6 @@ packages:
dependencies:
lru-cache: 9.1.2
minipass: 5.0.0
- dev: false
/path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -18230,6 +17373,7 @@ packages:
engines: {node: '>= 0.10'}
dependencies:
resolve: 1.22.1
+ dev: false
/reconnecting-websocket@4.4.0:
resolution: {integrity: sha512-D2E33ceRPga0NvTDhJmphEgJ7FUYF0v4lr1ki0csq06OdlxKfugGzN0dSkxM/NfqCxYELK4KcaTOUOjTV6Dcng==}
@@ -18611,8 +17755,8 @@ packages:
dependencies:
glob: 7.2.3
- /rollup@3.26.2:
- resolution: {integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==}
+ /rollup@3.26.3:
+ resolution: {integrity: sha512-7Tin0C8l86TkpcMtXvQu6saWH93nhG3dGQ1/+l5V2TDMceTxO7kDiK6GzbfLWNNxqJXm591PcEZUozZm51ogwQ==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
@@ -18758,6 +17902,11 @@ packages:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
+ /semver@6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+ hasBin: true
+ dev: true
+
/semver@7.0.0:
resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
hasBin: true
@@ -18919,16 +18068,6 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /shelljs@0.8.5:
- resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
- engines: {node: '>=4'}
- hasBin: true
- dependencies:
- glob: 7.2.3
- interpret: 1.4.0
- rechoir: 0.6.2
- dev: true
-
/side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
@@ -18951,7 +18090,6 @@ packages:
/signal-exit@4.0.2:
resolution: {integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==}
engines: {node: '>=14'}
- dev: false
/simple-concat@1.0.1:
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
@@ -19405,11 +18543,11 @@ packages:
resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==}
dev: true
- /storybook@7.0.27:
- resolution: {integrity: sha512-hp6lBETyC9uHFH0/RYU7v9Ga+e00VlaOA6/hKOFCoO1AH4/3J5/+Ey/uYslyAjCMIFsrqz7jyJjBzcUG/Ps+6g==}
+ /storybook@7.1.0:
+ resolution: {integrity: sha512-3fnLTeHzK+6cbo3sfanAvVFpi4pauvEaODbHo8I8ui/RNxENQSYHxgCK6ULWets9Zay0cXxCwe3n3G/zeVoCNg==}
hasBin: true
dependencies:
- '@storybook/cli': 7.0.27
+ '@storybook/cli': 7.1.0
transitivePeerDependencies:
- bufferutil
- encoding
@@ -19525,7 +18663,6 @@ packages:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- dev: false
/string.prototype.trimend@1.0.6:
resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
@@ -19588,7 +18725,6 @@ packages:
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
- dev: false
/strip-bom@2.0.0:
resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==}
@@ -19925,6 +19061,10 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
+ /tiny-invariant@1.3.1:
+ resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
+ dev: true
+
/tiny-lru@10.0.1:
resolution: {integrity: sha512-Vst+6kEsWvb17Zpz14sRJV/f8bUWKhqm6Dc+v08iShmIJ/WxqWytHzCTd6m88pS33rE2zpX34TRmOpAJPloNCA==}
engines: {node: '>=6'}
@@ -20024,6 +19164,10 @@ packages:
through2: 2.0.5
dev: false
+ /tocbot@4.21.0:
+ resolution: {integrity: sha512-vXk8htr8mIl3hc2s2mDkaPTBfqmqZA2o0x7eXbxUibdrpEIPdpM0L9hH/RvEvlgSM+ZTgS34sGipk5+VrLJCLA==}
+ dev: true
+
/toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
@@ -20225,6 +19369,11 @@ packages:
engines: {node: '>=12.20'}
dev: true
+ /type-fest@3.13.1:
+ resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
+ engines: {node: '>=14.16'}
+ dev: true
+
/type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
@@ -20399,10 +19548,6 @@ packages:
busboy: 1.6.0
dev: false
- /unfetch@4.2.0:
- resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
- dev: true
-
/unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
@@ -20514,15 +19659,6 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /unplugin@0.10.2:
- resolution: {integrity: sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==}
- dependencies:
- acorn: 8.10.0
- chokidar: 3.5.3
- webpack-sources: 3.2.3
- webpack-virtual-modules: 0.4.6
- dev: true
-
/unplugin@1.3.2:
resolution: {integrity: sha512-Lh7/2SryjXe/IyWqx9K7IKwuKhuOFZEhotiBquOODsv2IVyDkI9lv/XhgfjdXf/xdbv32txmnBNnC/JVTDJlsA==}
dependencies:
@@ -20530,7 +19666,6 @@ packages:
chokidar: 3.5.3
webpack-sources: 3.2.3
webpack-virtual-modules: 0.5.0
- dev: false
/unset-value@1.0.0:
resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
@@ -20571,6 +19706,17 @@ packages:
picocolors: 1.0.0
dev: true
+ /update-browserslist-db@1.0.11(browserslist@4.21.9):
+ resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.21.9
+ escalade: 3.1.1
+ picocolors: 1.0.0
+ dev: true
+
/uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
@@ -20809,7 +19955,7 @@ packages:
'@types/node': 20.4.2
esbuild: 0.18.11
postcss: 8.4.25
- rollup: 3.26.2
+ rollup: 3.26.3
sass: 1.63.6
optionalDependencies:
fsevents: 2.3.2
@@ -20904,7 +20050,7 @@ packages:
resolution: {integrity: sha512-jbOf7ByE3Zvtuk+429Jorl+eIeh2aB2Fx1GUo3xJd1aByJWE8KDlSEa6b11PB1ze8f0sRUBraRDinICCk0KY7g==}
dependencies:
'@babel/parser': 7.22.7
- '@babel/types': 7.22.4
+ '@babel/types': 7.22.5
'@vue/compiler-dom': 3.3.4
'@vue/compiler-sfc': 3.3.4
ast-types: 0.14.2
@@ -21068,13 +20214,8 @@ packages:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- /webpack-virtual-modules@0.4.6:
- resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==}
- dev: true
-
/webpack-virtual-modules@0.5.0:
resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
- dev: false
/whatwg-encoding@2.0.0:
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
@@ -21170,6 +20311,7 @@ packages:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
dependencies:
string-width: 4.2.3
+ dev: false
/with@7.0.2:
resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==}
@@ -21229,7 +20371,6 @@ packages:
ansi-styles: 6.2.1
string-width: 5.1.2
strip-ansi: 7.1.0
- dev: false
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
@@ -21496,7 +20637,7 @@ packages:
sharp: 0.31.3
dev: false
- github.com/misskey-dev/storybook-addon-misskey-theme/cf583db098365b2ccc81a82f63ca9c93bc32b640(@storybook/blocks@7.0.27)(@storybook/components@7.0.27)(@storybook/core-events@7.0.27)(@storybook/manager-api@7.0.27)(@storybook/preview-api@7.0.27)(@storybook/theming@7.0.27)(@storybook/types@7.0.27)(react-dom@18.2.0)(react@18.2.0):
+ github.com/misskey-dev/storybook-addon-misskey-theme/cf583db098365b2ccc81a82f63ca9c93bc32b640(@storybook/blocks@7.1.0)(@storybook/components@7.1.0)(@storybook/core-events@7.1.0)(@storybook/manager-api@7.1.0)(@storybook/preview-api@7.1.0)(@storybook/theming@7.1.0)(@storybook/types@7.1.0)(react-dom@18.2.0)(react@18.2.0):
resolution: {tarball: https://codeload.github.com/misskey-dev/storybook-addon-misskey-theme/tar.gz/cf583db098365b2ccc81a82f63ca9c93bc32b640}
id: github.com/misskey-dev/storybook-addon-misskey-theme/cf583db098365b2ccc81a82f63ca9c93bc32b640
name: storybook-addon-misskey-theme
@@ -21517,13 +20658,13 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/blocks': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/components': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.0.27
- '@storybook/manager-api': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.0.27
- '@storybook/theming': 7.0.27(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.0.27
+ '@storybook/blocks': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.1.0
+ '@storybook/manager-api': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.1.0
+ '@storybook/theming': 7.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.1.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
From 9d145d33cbc0ac31b71a437d6262f5b9e650d017 Mon Sep 17 00:00:00 2001
From: syuilo
Date: Tue, 18 Jul 2023 20:01:09 +0900
Subject: [PATCH 139/184] 13.14.0-beta.6
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index d40b055aa4..a62ef7c185 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "misskey",
- "version": "13.14.0-beta.5",
+ "version": "13.14.0-beta.6",
"codename": "nasubi",
"repository": {
"type": "git",
From b0b0ecb857a27efb3c1d35d3d5cd70504d874b06 Mon Sep 17 00:00:00 2001
From: woxtu
Date: Wed, 19 Jul 2023 07:10:12 +0900
Subject: [PATCH 140/184] Improve number formatting (#11315)
---
packages/frontend/src/components/MkUserInfo.vue | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/packages/frontend/src/components/MkUserInfo.vue b/packages/frontend/src/components/MkUserInfo.vue
index 81c9d3ec4f..5e538cc528 100644
--- a/packages/frontend/src/components/MkUserInfo.vue
+++ b/packages/frontend/src/components/MkUserInfo.vue
@@ -15,13 +15,13 @@
-
{{ i18n.ts.notes }}
{{ user.notesCount }}
+
{{ i18n.ts.notes }}
{{ number(user.notesCount) }}
-
{{ i18n.ts.following }}
{{ user.followingCount }}
+
{{ i18n.ts.following }}
{{ number(user.followingCount) }}
-
{{ i18n.ts.followers }}
{{ user.followersCount }}
+
{{ i18n.ts.followers }}
{{ number(user.followersCount) }}
@@ -31,6 +31,7 @@