diff --git a/components.d.ts b/components.d.ts
index 0af39cc..6f878a1 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -1,5 +1,7 @@
-// generated by unplugin-vue-components
-// We suggest you to commit this file into source control
+/* eslint-disable */
+/* prettier-ignore */
+// @ts-nocheck
+// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
import '@vue/runtime-core'
@@ -12,14 +14,10 @@ declare module '@vue/runtime-core' {
'IconClarity:timesCircleSolid': typeof import('~icons/clarity/times-circle-solid')['default']
'IconClarity:timesLine': typeof import('~icons/clarity/times-line')['default']
'IconFaSolid:ellipsisV': typeof import('~icons/fa-solid/ellipsis-v')['default']
- 'IconIc:baselineContentCopy': typeof import('~icons/ic/baseline-content-copy')['default']
'IconLa:language': typeof import('~icons/la/language')['default']
'IconMaterialSymbols:contentCopyOutline': typeof import('~icons/material-symbols/content-copy-outline')['default']
'IconMdi:checkCircle': typeof import('~icons/mdi/check-circle')['default']
'IconMdi:githubFace': typeof import('~icons/mdi/github-face')['default']
- 'IconSimpleIcons:nuxtdotjs': typeof import('~icons/simple-icons/nuxtdotjs')['default']
- 'IconUil:angleDown': typeof import('~icons/uil/angle-down')['default']
- 'IconUil:apps': typeof import('~icons/uil/apps')['default']
'IconUil:bars': typeof import('~icons/uil/bars')['default']
'IconUil:clock': typeof import('~icons/uil/clock')['default']
'IconUil:laptop': typeof import('~icons/uil/laptop')['default']
diff --git a/components/Anchor.vue b/components/Anchor.vue
index 392cada..0494770 100644
--- a/components/Anchor.vue
+++ b/components/Anchor.vue
@@ -26,6 +26,7 @@ const to = toRef(props, 'to')
tag="a"
:to="to"
:class="`transition-colors duration-300 dark:hover:text-white hover:text-gray-900 hover:underline`"
+ prefetch
>
{{ text }}
diff --git a/components/Builder/Navbar.vue b/components/Builder/Navbar.vue
index 073e6d2..9441884 100644
--- a/components/Builder/Navbar.vue
+++ b/components/Builder/Navbar.vue
@@ -84,6 +84,7 @@ const toggleOptions = (show?: boolean) => {
tag="a"
class="flex-none font-bold mr-3 text-md text-gray-900 w-50 overflow-hidden dark:text-gray-200"
:to="{ name: 'index' }"
+ prefetch
>
home
diff --git a/components/Button.vue b/components/Button.vue
index e3a3df4..ccf2436 100644
--- a/components/Button.vue
+++ b/components/Button.vue
@@ -72,6 +72,7 @@ const onClick = (event: MouseEvent) => {
tag="a"
:to="to"
:class="`${defaultStyle} ${selectedStyle} ${selectedSize}`"
+ prefetch
>
{{ text }}
diff --git a/nuxt.config.ts b/nuxt.config.ts
index a4827f3..f930790 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -9,7 +9,8 @@ export default defineNuxtConfig({
// typescripts
typescript: {
strict: true,
- typeCheck: true,
+ shim: false, // https://nuxt.com.cn/docs/getting-started/installation
+ // typeCheck: true,
},
// css
@@ -25,22 +26,23 @@ export default defineNuxtConfig({
// modules
modules: [
- 'unplugin-icons/nuxt',
'@intlify/nuxt3',
'@pinia/nuxt',
'@nuxt/content',
'@vueuse/nuxt',
'nuxt-windicss',
+ '@nuxtjs/critters',
+ '@nuxtjs/fontaine',
+ [
+ 'unplugin-icons/nuxt',
+ {
+ autoInstall: true,
+ },
+ ],
],
- // experimental features
- experimental: {
- reactivityTransform: false,
- },
-
- // auto import components
- components: true,
-
+ // No sourcemap required in output
+ sourcemap: false,
// vite plugins
vite: {
plugins: [
@@ -78,19 +80,24 @@ export default defineNuxtConfig({
},
// windicss
- windicss: {
- analyze: {
- analysis: {
- interpretUtilities: false,
- },
- server: {
- port: 4000,
- open: false,
- },
+ // windicss: {
+ // analyze: {
+ // analysis: {
+ // interpretUtilities: false,
+ // },
+ // server: {
+ // port: 4000,
+ // open: false,
+ // },
+ // },
+ // scan: true,
+ // },
+
+ nitro: {
+ prerender: {
+ routes: ['/ringrobotx', '/wing', '/about', '/sitemap.xml'],
},
- scan: true,
},
-
// content
content: {
documentDriven: true,
diff --git a/package.json b/package.json
index 9d65ed1..8558970 100644
--- a/package.json
+++ b/package.json
@@ -18,54 +18,57 @@
"postinstall": "husky install",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .eslintignore .",
"lintfix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .eslintignore .",
- "prepare": "husky install",
+ "prepare": "husky install && nuxt prepare",
"clean": "rm -rf .nuxt dist .output",
"generate:locales": "node tools/translator.js ./locales en.yml"
},
"devDependencies": {
- "@babel/core": "^7.20.2",
- "@commitlint/cli": "^17.2.0",
- "@commitlint/config-conventional": "^17.2.0",
- "@headlessui/vue": "^1.7.8",
- "@iconify/json": "^2.1.135",
+ "@babel/core": "^7.21.3",
+ "@commitlint/cli": "^17.4.4",
+ "@commitlint/config-conventional": "^17.4.4",
+ "@headlessui/vue": "^1.7.12",
+ "@iconify-json/clarity": "^1.1.8",
+ "@iconify-json/mdi": "^1.1.50",
"@intlify/nuxt3": "^0.2.4",
- "@nuxt/content": "^2.4.2",
+ "@nuxt/content": "^2.5.2",
"@nuxt/test-utils-edge": "3.1.1-rc.0-27911047.7d812db",
+ "@nuxtjs/critters": "^0.4.0",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
- "@pinia/nuxt": "^0.4.6",
- "@vueuse/core": "^9.11.1",
- "@vueuse/nuxt": "^9.11.1",
- "eslint": "^8.32.0",
- "eslint-config-prettier": "^8.5.0",
- "eslint-plugin-nuxt": "^3.2.0",
+ "@nuxtjs/fontaine": "^0.2.4",
+ "@pinia/nuxt": "^0.4.7",
+ "@vueuse/core": "^9.13.0",
+ "@vueuse/nuxt": "^9.13.0",
+ "eslint": "^8.36.0",
+ "eslint-config-prettier": "^8.7.0",
+ "eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
- "husky": "^8.0.2",
+ "fontaine": "^0.3.1",
+ "husky": "^8.0.3",
"js-yaml": "^4.1.0",
- "lint-staged": "^13.0.3",
- "nuxt": "3.1.1",
+ "lint-staged": "^13.2.0",
+ "nuxt": "3.3.1",
"nuxt-windicss": "^2.6.0",
- "pinia": "^2.0.29",
- "postcss": "8.4.14",
- "postcss-loader": "^7.0.0",
- "prettier": "^2.7.1",
- "sass": "1.53.0",
- "sass-loader": "^13.2.0",
- "serve": "^13.0.2",
- "three": "^0.143.0",
+ "pinia": "^2.0.33",
+ "postcss": "8.4.21",
+ "postcss-loader": "^7.1.0",
+ "prettier": "^2.8.4",
+ "sass": "1.59.3",
+ "sass-loader": "^13.2.1",
+ "serve": "^14.2.0",
+ "sitemap": "^7.1.1",
+ "three": "^0.150.1",
"translate": "^1.4.1",
- "typescript": "^4.9.4",
- "unplugin-icons": "^0.14.14",
- "unplugin-vue-components": "^0.22.9",
- "vite": ">=2.9.0 <3.0.0 || >=3.0.0-0 <3.0.0",
- "vitest": "^0.28.3",
- "vue": "^3.2.41",
- "vue-tsc": "^1.0.9",
- "webpack": ">=5.0.0 <6.0.0"
+ "typescript": "^5.0.2",
+ "unplugin-icons": "^0.15.3",
+ "unplugin-vue-components": "^0.24.1",
+ "vite": ">=4.2.0",
+ "vitest": "^0.29.3",
+ "vue": "^3.2.47"
},
"lint-staged": {
"**/*.{js,ts,vue,html}": [
"pnpm lintfix"
]
}
-}
\ No newline at end of file
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2d95bb8..bfc2537 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,86 +1,92 @@
lockfileVersion: 5.4
specifiers:
- '@babel/core': ^7.20.2
- '@commitlint/cli': ^17.2.0
- '@commitlint/config-conventional': ^17.2.0
- '@headlessui/vue': ^1.7.8
- '@iconify/json': ^2.1.135
+ '@babel/core': ^7.21.3
+ '@commitlint/cli': ^17.4.4
+ '@commitlint/config-conventional': ^17.4.4
+ '@headlessui/vue': ^1.7.12
+ '@iconify-json/clarity': ^1.1.8
+ '@iconify-json/mdi': ^1.1.50
'@intlify/nuxt3': ^0.2.4
- '@nuxt/content': ^2.4.2
+ '@nuxt/content': ^2.5.2
'@nuxt/test-utils-edge': 3.1.1-rc.0-27911047.7d812db
+ '@nuxtjs/critters': ^0.4.0
'@nuxtjs/eslint-config': ^12.0.0
'@nuxtjs/eslint-config-typescript': ^12.0.0
- '@pinia/nuxt': ^0.4.6
- '@vueuse/core': ^9.11.1
- '@vueuse/nuxt': ^9.11.1
- eslint: ^8.32.0
- eslint-config-prettier: ^8.5.0
- eslint-plugin-nuxt: ^3.2.0
+ '@nuxtjs/fontaine': ^0.2.4
+ '@pinia/nuxt': ^0.4.7
+ '@vueuse/core': ^9.13.0
+ '@vueuse/nuxt': ^9.13.0
+ eslint: ^8.36.0
+ eslint-config-prettier: ^8.7.0
+ eslint-plugin-nuxt: ^4.0.0
eslint-plugin-prettier: ^4.2.1
- husky: ^8.0.2
+ fontaine: ^0.3.1
+ husky: ^8.0.3
js-yaml: ^4.1.0
- lint-staged: ^13.0.3
- nuxt: 3.1.1
+ lint-staged: ^13.2.0
+ nuxt: 3.3.1
nuxt-windicss: ^2.6.0
- pinia: ^2.0.29
- postcss: 8.4.14
- postcss-loader: ^7.0.0
- prettier: ^2.7.1
- sass: 1.53.0
- sass-loader: ^13.2.0
- serve: ^13.0.2
- three: ^0.143.0
+ pinia: ^2.0.33
+ postcss: 8.4.21
+ postcss-loader: ^7.1.0
+ prettier: ^2.8.4
+ sass: 1.59.3
+ sass-loader: ^13.2.1
+ serve: ^14.2.0
+ sitemap: ^7.1.1
+ three: ^0.150.1
translate: ^1.4.1
- typescript: ^4.9.4
- unplugin-icons: ^0.14.14
- unplugin-vue-components: ^0.22.9
- vite: '>=2.9.0 <3.0.0 || >=3.0.0-0 <3.0.0'
- vitest: ^0.28.3
- vue: ^3.2.41
- vue-tsc: ^1.0.9
- webpack: '>=5.0.0 <6.0.0'
+ typescript: ^5.0.2
+ unplugin-icons: ^0.15.3
+ unplugin-vue-components: ^0.24.1
+ vite: '>=4.2.0'
+ vitest: ^0.29.3
+ vue: ^3.2.47
devDependencies:
- '@babel/core': 7.20.5
- '@commitlint/cli': 17.3.0
- '@commitlint/config-conventional': 17.3.0
- '@headlessui/vue': 1.7.8_vue@3.2.45
- '@iconify/json': 2.1.150
- '@intlify/nuxt3': 0.2.4_evuriqgx4msnmbxuad5kv3gqji
- '@nuxt/content': 2.4.2
- '@nuxt/test-utils-edge': 3.1.1-rc.0-27911047.7d812db_vue@3.2.45
- '@nuxtjs/eslint-config': 12.0.0_eslint@8.32.0
- '@nuxtjs/eslint-config-typescript': 12.0.0_7uibuqfxkfaozanbtbziikiqje
- '@pinia/nuxt': 0.4.6_prq2uz4lho2pwp6irk4cfkrxwu
- '@vueuse/core': 9.11.1_vue@3.2.45
- '@vueuse/nuxt': 9.11.1_nuxt@3.1.1+vue@3.2.45
- eslint: 8.32.0
- eslint-config-prettier: 8.5.0_eslint@8.32.0
- eslint-plugin-nuxt: 3.2.0_eslint@8.32.0
- eslint-plugin-prettier: 4.2.1_abmlxqmedhmmgoja6jkvoftkhm
- husky: 8.0.2
+ '@babel/core': 7.21.3
+ '@commitlint/cli': 17.4.4
+ '@commitlint/config-conventional': 17.4.4
+ '@headlessui/vue': 1.7.12_vue@3.2.47
+ '@iconify-json/clarity': 1.1.8
+ '@iconify-json/mdi': 1.1.50
+ '@intlify/nuxt3': 0.2.4_vite@4.2.0+vue@3.2.47
+ '@nuxt/content': 2.5.2
+ '@nuxt/test-utils-edge': 3.1.1-rc.0-27911047.7d812db_vue@3.2.47
+ '@nuxtjs/critters': 0.4.0
+ '@nuxtjs/eslint-config': 12.0.0_eslint@8.36.0
+ '@nuxtjs/eslint-config-typescript': 12.0.0_j4766f7ecgqbon3u7zlxn5zszu
+ '@nuxtjs/fontaine': 0.2.4
+ '@pinia/nuxt': 0.4.7_p4srtwdgezcoeovfcc2yxzvaue
+ '@vueuse/core': 9.13.0_vue@3.2.47
+ '@vueuse/nuxt': 9.13.0_nuxt@3.3.1+vue@3.2.47
+ eslint: 8.36.0
+ eslint-config-prettier: 8.7.0_eslint@8.36.0
+ eslint-plugin-nuxt: 4.0.0_eslint@8.36.0
+ eslint-plugin-prettier: 4.2.1_eqzx3hpkgx5nnvxls3azrcc7dm
+ fontaine: 0.3.1
+ husky: 8.0.3
js-yaml: 4.1.0
- lint-staged: 13.1.0
- nuxt: 3.1.1_xsziujdgaekcyduxcggsaejfsa
- nuxt-windicss: 2.6.0_vite@3.0.0-beta.10
- pinia: 2.0.29_prq2uz4lho2pwp6irk4cfkrxwu
- postcss: 8.4.14
- postcss-loader: 7.0.2_yr6womevqv5t3aet2t3y7pv3ua
- prettier: 2.8.1
- sass: 1.53.0
- sass-loader: 13.2.0_sass@1.53.0+webpack@5.75.0
- serve: 13.0.4
- three: 0.143.0
- translate: 1.4.1_@babel+core@7.20.5
- typescript: 4.9.4
- unplugin-icons: 0.14.14
- unplugin-vue-components: 0.22.11_vue@3.2.45
- vite: 3.0.0-beta.10_sass@1.53.0
- vitest: 0.28.3_sass@1.53.0
- vue: 3.2.45
- vue-tsc: 1.0.12_typescript@4.9.4
- webpack: 5.75.0
+ lint-staged: 13.2.0
+ nuxt: 3.3.1_6ve2mgcmoerusihmx5fhibabvi
+ nuxt-windicss: 2.6.0_vite@4.2.0
+ pinia: 2.0.33_p4srtwdgezcoeovfcc2yxzvaue
+ postcss: 8.4.21
+ postcss-loader: 7.1.0_postcss@8.4.21
+ prettier: 2.8.4
+ sass: 1.59.3
+ sass-loader: 13.2.1_sass@1.59.3
+ serve: 14.2.0
+ sitemap: 7.1.1
+ three: 0.150.1
+ translate: 1.4.1_@babel+core@7.21.3
+ typescript: 5.0.2
+ unplugin-icons: 0.15.3
+ unplugin-vue-components: 0.24.1_vue@3.2.47
+ vite: 4.2.0_sass@1.59.3
+ vitest: 0.29.3_sass@1.59.3
+ vue: 3.2.47
packages:
@@ -103,10 +109,6 @@ packages:
resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==}
dev: true
- /@antfu/utils/0.6.3:
- resolution: {integrity: sha512-sEYpyyKUPOew9QsXZ8feRVMzW6DWLviwOl+/ap06UQW02A8Srbc95CPHVm4eUbiBzBgD46eyIT+przv//KSSlQ==}
- dev: true
-
/@antfu/utils/0.7.2:
resolution: {integrity: sha512-vy9fM3pIxZmX07dL+VX1aZe7ynZ+YyB0jY+jE6r3hOK6GNY2t6W8rzpFC4tgpbXUYABkFQwgJq2XYXlxbXAI0g==}
dev: true
@@ -123,20 +125,20 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core/7.20.12:
- resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==}
+ /@babel/core/7.21.3:
+ resolution: {integrity: sha512-qIJONzoa/qiHghnm0l1n4i/6IIziDpzqc36FBs4pzMhDUraHqponwJLiAKm1hGLP3OSB/TVNz6rMwVGpwxxySw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.14
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
- '@babel/helper-module-transforms': 7.20.11
- '@babel/helpers': 7.20.13
- '@babel/parser': 7.20.13
+ '@babel/generator': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helpers': 7.21.0
+ '@babel/parser': 7.21.3
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -146,44 +148,13 @@ packages:
- supports-color
dev: true
- /@babel/core/7.20.5:
- resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.5
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
- '@babel/helper-module-transforms': 7.20.2
- '@babel/helpers': 7.20.6
- '@babel/parser': 7.20.5
- '@babel/template': 7.18.10
- '@babel/traverse': 7.20.5
- '@babel/types': 7.20.5
- convert-source-map: 1.9.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/generator/7.20.14:
- resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.20.7
- '@jridgewell/gen-mapping': 0.3.2
- jsesc: 2.5.2
- dev: true
-
- /@babel/generator/7.20.5:
- resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==}
+ /@babel/generator/7.21.3:
+ resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
'@jridgewell/gen-mapping': 0.3.2
+ '@jridgewell/trace-mapping': 0.3.17
jsesc: 2.5.2
dev: true
@@ -191,7 +162,7 @@ packages:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
@@ -199,46 +170,33 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.20.5
- dev: true
-
- /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5:
- resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/compat-data': 7.20.5
- '@babel/core': 7.20.5
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.4
- semver: 6.3.0
+ '@babel/types': 7.21.3
dev: true
- /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12:
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.3:
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.20.5
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.3
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.4
lru-cache: 5.1.1
semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin/7.20.5_@babel+core@7.20.5:
+ /@babel/helper-create-class-features-plugin/7.20.5_@babel+core@7.21.3:
resolution: {integrity: sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.19.1
@@ -247,24 +205,24 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.5:
+ /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.21.3:
resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.2.2
dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.5:
+ /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.3:
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.20.5
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -283,40 +241,40 @@ packages:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
- /@babel/helper-function-name/7.19.0:
- resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
+ /@babel/helper-function-name/7.21.0:
+ resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.20.5
+ '@babel/template': 7.20.7
+ '@babel/types': 7.21.3
dev: true
/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
/@babel/helper-member-expression-to-functions/7.18.9:
resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
- /@babel/helper-module-transforms/7.20.11:
- resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==}
+ /@babel/helper-module-transforms/7.21.2:
+ resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
@@ -325,24 +283,8 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-module-transforms/7.20.2:
- resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-simple-access': 7.20.2
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.19.1
- '@babel/template': 7.18.10
- '@babel/traverse': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -351,7 +293,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
/@babel/helper-plugin-utils/7.20.2:
@@ -359,17 +301,17 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.5:
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.3:
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -381,8 +323,8 @@ packages:
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -391,21 +333,21 @@ packages:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
/@babel/helper-skip-transparent-expression-wrappers/7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
/@babel/helper-string-parser/7.19.4:
@@ -427,32 +369,21 @@ packages:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-function-name': 7.19.0
- '@babel/template': 7.18.10
- '@babel/traverse': 7.20.5
- '@babel/types': 7.20.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helpers/7.20.13:
- resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==}
- engines: {node: '>=6.9.0'}
- dependencies:
+ '@babel/helper-function-name': 7.21.0
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helpers/7.20.6:
- resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==}
+ /@babel/helpers/7.21.0:
+ resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/traverse': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -466,442 +397,434 @@ packages:
js-tokens: 4.0.0
dev: true
- /@babel/parser/7.20.13:
- resolution: {integrity: sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.20.7
- dev: true
-
- /@babel/parser/7.20.5:
- resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==}
+ /@babel/parser/7.21.3:
+ resolution: {integrity: sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.20.5
+ '@babel/types': 7.21.3
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.21.3:
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.20.5
+ '@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.18.9_@babel+core@7.20.5
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.5:
+ /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.21.3:
resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5
+ '@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-class-properties/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.20.5
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.21.3:
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.5:
+ /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.21.3:
resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.20.5
- '@babel/core': 7.20.5
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.21.3:
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@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.20.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
dev: true
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.5:
+ /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.21.3:
resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
+ '@babel/helper-create-class-features-plugin': 7.20.5_@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.20.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.5:
+ /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.21.3:
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-block-scoping/7.20.5_@babel+core@7.20.5:
+ /@babel/plugin-transform-block-scoping/7.20.5_@babel+core@7.21.3:
resolution: {integrity: sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.5:
+ /@babel/plugin-transform-classes/7.20.2_@babel+core@7.21.3:
resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@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.19.1
@@ -911,412 +834,412 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.21.3:
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.5:
+ /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.21.3:
resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@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.20.5:
+ /@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.20.5
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@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.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@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-for-of/7.18.8_@babel+core@7.20.5:
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.21.3:
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.5:
+ /@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.20.5
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
- '@babel/helper-function-name': 7.19.0
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.21.3:
resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
- '@babel/helper-module-transforms': 7.20.2
+ '@babel/core': 7.21.3
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.21.3:
resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
- '@babel/helper-module-transforms': 7.20.2
+ '@babel/core': 7.21.3
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-simple-access': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.21.3:
resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.20.2
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-identifier': 7.19.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
- '@babel/helper-module-transforms': 7.20.2
+ '@babel/core': 7.21.3
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.5:
+ /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.3:
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.5
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@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.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.19.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.20.5:
+ /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.21.3:
resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.5:
+ /@babel/plugin-transform-spread/7.19.0_@babel+core@7.21.3:
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
+ '@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-sticky-regex/7.18.6_@babel+core@7.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.20.5:
+ /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.21.3:
resolution: {integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.5
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.5
+ '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.5:
+ /@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.20.5
+ '@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.20.5:
+ /@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.20.5
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/preset-env/7.20.2_@babel+core@7.20.5:
+ /@babel/preset-env/7.20.2_@babel+core@7.21.3:
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.20.5
- '@babel/core': 7.20.5
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.5
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.5
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.5
- '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.5
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.5
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.5
- '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.5
- '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.5
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.5
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.5
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.5
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.5
- '@babel/preset-modules': 0.1.5_@babel+core@7.20.5
- '@babel/types': 7.20.5
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.5
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.5
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.5
+ '@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.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-async-generator-functions': 7.20.1_@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.18.6_@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.18.9_@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.2_@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.18.9_@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.20.5_@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.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@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.20.5_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.21.3
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.20.2_@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.18.8_@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.19.6_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-systemjs': 7.19.6_@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.20.5_@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.19.0_@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.21.3
+ 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.26.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.20.5:
+ /@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.20.5
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5
- '@babel/types': 7.20.5
+ '@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.21.3
esutils: 2.0.3
dev: true
@@ -1332,62 +1255,35 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/template/7.18.10:
- resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/parser': 7.20.5
- '@babel/types': 7.20.5
- dev: true
-
/@babel/template/7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.20.13
- '@babel/types': 7.20.7
- dev: true
-
- /@babel/traverse/7.20.13:
- resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.14
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.20.13
- '@babel/types': 7.20.7
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
dev: true
- /@babel/traverse/7.20.5:
- resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==}
+ /@babel/traverse/7.21.3:
+ resolution: {integrity: sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.5
+ '@babel/generator': 7.21.3
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.20.5
- '@babel/types': 7.20.5
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/types/7.20.5:
- resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==}
+ /@babel/types/7.21.3:
+ resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.19.4
@@ -1395,13 +1291,32 @@ packages:
to-fast-properties: 2.0.0
dev: true
- /@babel/types/7.20.7:
- resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==}
- engines: {node: '>=6.9.0'}
+ /@capsizecss/metrics/0.3.0:
+ resolution: {integrity: sha512-QehVN9u96URt4ji/bSQs2F5t6SX2XuW6KLJJvoUqg7RFqZeSFogVoJtcxwxjSJ0SH34il3xid5iyMG7Rle2yYA==}
+ dev: true
+
+ /@capsizecss/metrics/1.1.1:
+ resolution: {integrity: sha512-YFONV2KvBPYr3FCJTMCZ5rkTHbaVCqO37VYJo9HrrzU2aLcWk5JPQln64yMmKtWUj5Pwi1vIqeFqCoYQxd20gg==}
+ dev: true
+
+ /@capsizecss/unpack/0.1.0:
+ resolution: {integrity: sha512-PvnQyCbNuz6VuSBj3DQBRpzh9CPDot4vdRmpgUCXNoKYSu0Ja/OQgHPYJkmySn/H/9V013CizB0oQoa0ycwJpg==}
dependencies:
- '@babel/helper-string-parser': 7.19.4
- '@babel/helper-validator-identifier': 7.19.1
- to-fast-properties: 2.0.0
+ blob-to-buffer: 1.2.9
+ cross-fetch: 3.1.5
+ fontkit: 1.9.0
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /@capsizecss/unpack/1.0.0:
+ resolution: {integrity: sha512-cXPI7IWQrPANXKYZwqZf53q2SuYnDkexpi9KzGNWls1NDK26lZqkE1Ry2XuMo9eGkqcmMSgVI8gJbMEgjX7bTQ==}
+ dependencies:
+ blob-to-buffer: 1.2.9
+ cross-fetch: 3.1.5
+ fontkit: 2.0.2
+ transitivePeerDependencies:
+ - encoding
dev: true
/@cloudflare/kv-asset-handler/0.3.0:
@@ -1410,16 +1325,16 @@ packages:
mime: 3.0.0
dev: true
- /@commitlint/cli/17.3.0:
- resolution: {integrity: sha512-/H0md7TsKflKzVPz226VfXzVafJFO1f9+r2KcFvmBu08V0T56lZU1s8WL7/xlxqLMqBTVaBf7Ixtc4bskdEEZg==}
+ /@commitlint/cli/17.4.4:
+ resolution: {integrity: sha512-HwKlD7CPVMVGTAeFZylVNy14Vm5POVY0WxPkZr7EXLC/os0LH/obs6z4HRvJtH/nHCMYBvUBQhGwnufKfTjd5g==}
engines: {node: '>=v14'}
hasBin: true
dependencies:
- '@commitlint/format': 17.0.0
- '@commitlint/lint': 17.3.0
- '@commitlint/load': 17.3.0
- '@commitlint/read': 17.2.0
- '@commitlint/types': 17.0.0
+ '@commitlint/format': 17.4.4
+ '@commitlint/lint': 17.4.4
+ '@commitlint/load': 17.4.4
+ '@commitlint/read': 17.4.4
+ '@commitlint/types': 17.4.4
execa: 5.1.1
lodash.isfunction: 3.0.9
resolve-from: 5.0.0
@@ -1430,26 +1345,26 @@ packages:
- '@swc/wasm'
dev: true
- /@commitlint/config-conventional/17.3.0:
- resolution: {integrity: sha512-hgI+fN5xF8nhS9uG/V06xyT0nlcyvHHMkq0kwRSr96vl5BFlRGaL2C0/YY4kQagfU087tmj01bJkG9Ek98Wllw==}
+ /@commitlint/config-conventional/17.4.4:
+ resolution: {integrity: sha512-u6ztvxqzi6NuhrcEDR7a+z0yrh11elY66nRrQIpqsqW6sZmpxYkDLtpRH8jRML+mmxYQ8s4qqF06Q/IQx5aJeQ==}
engines: {node: '>=v14'}
dependencies:
conventional-changelog-conventionalcommits: 5.0.0
dev: true
- /@commitlint/config-validator/17.1.0:
- resolution: {integrity: sha512-Q1rRRSU09ngrTgeTXHq6ePJs2KrI+axPTgkNYDWSJIuS1Op4w3J30vUfSXjwn5YEJHklK3fSqWNHmBhmTR7Vdg==}
+ /@commitlint/config-validator/17.4.4:
+ resolution: {integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/types': 17.0.0
+ '@commitlint/types': 17.4.4
ajv: 8.11.2
dev: true
- /@commitlint/ensure/17.3.0:
- resolution: {integrity: sha512-kWbrQHDoW5veIUQx30gXoLOCjWvwC6OOEofhPCLl5ytRPBDAQObMbxTha1Bt2aSyNE/IrJ0s0xkdZ1Gi3wJwQg==}
+ /@commitlint/ensure/17.4.4:
+ resolution: {integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/types': 17.0.0
+ '@commitlint/types': 17.4.4
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
@@ -1457,122 +1372,122 @@ packages:
lodash.upperfirst: 4.3.1
dev: true
- /@commitlint/execute-rule/17.0.0:
- resolution: {integrity: sha512-nVjL/w/zuqjCqSJm8UfpNaw66V9WzuJtQvEnCrK4jDw6qKTmZB+1JQ8m6BQVZbNBcwfYdDNKnhIhqI0Rk7lgpQ==}
+ /@commitlint/execute-rule/17.4.0:
+ resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/format/17.0.0:
- resolution: {integrity: sha512-MZzJv7rBp/r6ZQJDEodoZvdRM0vXu1PfQvMTNWFb8jFraxnISMTnPBWMMjr2G/puoMashwaNM//fl7j8gGV5lA==}
+ /@commitlint/format/17.4.4:
+ resolution: {integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/types': 17.0.0
+ '@commitlint/types': 17.4.4
chalk: 4.1.2
dev: true
- /@commitlint/is-ignored/17.2.0:
- resolution: {integrity: sha512-rgUPUQraHxoMLxiE8GK430HA7/R2vXyLcOT4fQooNrZq9ERutNrP6dw3gdKLkq22Nede3+gEHQYUzL4Wu75ndg==}
+ /@commitlint/is-ignored/17.4.4:
+ resolution: {integrity: sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/types': 17.0.0
- semver: 7.3.7
+ '@commitlint/types': 17.4.4
+ semver: 7.3.8
dev: true
- /@commitlint/lint/17.3.0:
- resolution: {integrity: sha512-VilOTPg0i9A7CCWM49E9bl5jytfTvfTxf9iwbWAWNjxJ/A5mhPKbm3sHuAdwJ87tDk1k4j8vomYfH23iaY+1Rw==}
+ /@commitlint/lint/17.4.4:
+ resolution: {integrity: sha512-qgkCRRFjyhbMDWsti/5jRYVJkgYZj4r+ZmweZObnbYqPUl5UKLWMf9a/ZZisOI4JfiPmRktYRZ2JmqlSvg+ccw==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/is-ignored': 17.2.0
- '@commitlint/parse': 17.2.0
- '@commitlint/rules': 17.3.0
- '@commitlint/types': 17.0.0
+ '@commitlint/is-ignored': 17.4.4
+ '@commitlint/parse': 17.4.4
+ '@commitlint/rules': 17.4.4
+ '@commitlint/types': 17.4.4
dev: true
- /@commitlint/load/17.3.0:
- resolution: {integrity: sha512-u/pV6rCAJrCUN+HylBHLzZ4qj1Ew3+eN9GBPhNi9otGxtOfA8b+8nJSxaNbcC23Ins/kcpjGf9zPSVW7628Umw==}
+ /@commitlint/load/17.4.4:
+ resolution: {integrity: sha512-z6uFIQ7wfKX5FGBe1AkOF4l/ShOQsaa1ml/nLMkbW7R/xF8galGS7Zh0yHvzVp/srtfS0brC+0bUfQfmpMPFVQ==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/config-validator': 17.1.0
- '@commitlint/execute-rule': 17.0.0
- '@commitlint/resolve-extends': 17.3.0
- '@commitlint/types': 17.0.0
- '@types/node': 14.18.34
+ '@commitlint/config-validator': 17.4.4
+ '@commitlint/execute-rule': 17.4.0
+ '@commitlint/resolve-extends': 17.4.4
+ '@commitlint/types': 17.4.4
+ '@types/node': 18.11.12
chalk: 4.1.2
- cosmiconfig: 7.1.0
- cosmiconfig-typescript-loader: 4.2.0_rlet5slz3ltveuzxg6noqqckla
+ cosmiconfig: 8.1.3
+ cosmiconfig-typescript-loader: 4.2.0_5fuam63wbrdkay73qouwsoo2im
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
- ts-node: 10.9.1_ewcgsh5jhk3o7xvttutb4bhery
+ ts-node: 10.9.1_r65g46xrm45gbuklnvp6xevc2y
typescript: 4.9.4
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
dev: true
- /@commitlint/message/17.2.0:
- resolution: {integrity: sha512-/4l2KFKxBOuoEn1YAuuNNlAU05Zt7sNsC9H0mPdPm3chOrT4rcX0pOqrQcLtdMrMkJz0gC7b3SF80q2+LtdL9Q==}
+ /@commitlint/message/17.4.2:
+ resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/parse/17.2.0:
- resolution: {integrity: sha512-vLzLznK9Y21zQ6F9hf8D6kcIJRb2haAK5T/Vt1uW2CbHYOIfNsR/hJs0XnF/J9ctM20Tfsqv4zBitbYvVw7F6Q==}
+ /@commitlint/parse/17.4.4:
+ resolution: {integrity: sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/types': 17.0.0
+ '@commitlint/types': 17.4.4
conventional-changelog-angular: 5.0.13
conventional-commits-parser: 3.2.4
dev: true
- /@commitlint/read/17.2.0:
- resolution: {integrity: sha512-bbblBhrHkjxra3ptJNm0abxu7yeAaxumQ8ZtD6GIVqzURCETCP7Dm0tlVvGRDyXBuqX6lIJxh3W7oyKqllDsHQ==}
+ /@commitlint/read/17.4.4:
+ resolution: {integrity: sha512-B2TvUMJKK+Svzs6eji23WXsRJ8PAD+orI44lVuVNsm5zmI7O8RSGJMvdEZEikiA4Vohfb+HevaPoWZ7PiFZ3zA==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/top-level': 17.0.0
- '@commitlint/types': 17.0.0
- fs-extra: 10.1.0
+ '@commitlint/top-level': 17.4.0
+ '@commitlint/types': 17.4.4
+ fs-extra: 11.1.0
git-raw-commits: 2.0.11
minimist: 1.2.7
dev: true
- /@commitlint/resolve-extends/17.3.0:
- resolution: {integrity: sha512-Lf3JufJlc5yVEtJWC8o4IAZaB8FQAUaVlhlAHRACd0TTFizV2Lk2VH70et23KgvbQNf7kQzHs/2B4QZalBv6Cg==}
+ /@commitlint/resolve-extends/17.4.4:
+ resolution: {integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/config-validator': 17.1.0
- '@commitlint/types': 17.0.0
+ '@commitlint/config-validator': 17.4.4
+ '@commitlint/types': 17.4.4
import-fresh: 3.3.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
resolve-global: 1.0.0
dev: true
- /@commitlint/rules/17.3.0:
- resolution: {integrity: sha512-s2UhDjC5yP2utx3WWqsnZRzjgzAX8BMwr1nltC0u0p8T/nzpkx4TojEfhlsOUj1t7efxzZRjUAV0NxNwdJyk+g==}
+ /@commitlint/rules/17.4.4:
+ resolution: {integrity: sha512-0tgvXnHi/mVcyR8Y8mjTFZIa/FEQXA4uEutXS/imH2v1UNkYDSEMsK/68wiXRpfW1euSgEdwRkvE1z23+yhNrQ==}
engines: {node: '>=v14'}
dependencies:
- '@commitlint/ensure': 17.3.0
- '@commitlint/message': 17.2.0
- '@commitlint/to-lines': 17.0.0
- '@commitlint/types': 17.0.0
+ '@commitlint/ensure': 17.4.4
+ '@commitlint/message': 17.4.2
+ '@commitlint/to-lines': 17.4.0
+ '@commitlint/types': 17.4.4
execa: 5.1.1
dev: true
- /@commitlint/to-lines/17.0.0:
- resolution: {integrity: sha512-nEi4YEz04Rf2upFbpnEorG8iymyH7o9jYIVFBG1QdzebbIFET3ir+8kQvCZuBE5pKCtViE4XBUsRZz139uFrRQ==}
+ /@commitlint/to-lines/17.4.0:
+ resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/top-level/17.0.0:
- resolution: {integrity: sha512-dZrEP1PBJvodNWYPOYiLWf6XZergdksKQaT6i1KSROLdjf5Ai0brLOv5/P+CPxBeoj3vBxK4Ax8H1Pg9t7sHIQ==}
+ /@commitlint/top-level/17.4.0:
+ resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==}
engines: {node: '>=v14'}
dependencies:
find-up: 5.0.0
dev: true
- /@commitlint/types/17.0.0:
- resolution: {integrity: sha512-hBAw6U+SkAT5h47zDMeOu3HSiD0SODw4Aq7rRNh1ceUmL7GyLKYhPbUvlRWqZ65XjBLPHZhFyQlRaPNz8qvUyQ==}
+ /@commitlint/types/17.4.4:
+ resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==}
engines: {node: '>=v14'}
dependencies:
chalk: 4.1.2
@@ -1594,6 +1509,15 @@ packages:
dev: true
optional: true
+ /@esbuild/android-arm/0.17.12:
+ resolution: {integrity: sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/android-arm/0.17.5:
resolution: {integrity: sha512-crmPUzgCmF+qZXfl1YkiFoUta2XAfixR1tEnr/gXIixE+WL8Z0BGqfydP5oox0EUOgQMMRgtATtakyAcClQVqQ==}
engines: {node: '>=12'}
@@ -1612,6 +1536,15 @@ packages:
dev: true
optional: true
+ /@esbuild/android-arm64/0.17.12:
+ resolution: {integrity: sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/android-arm64/0.17.5:
resolution: {integrity: sha512-KHWkDqYAMmKZjY4RAN1PR96q6UOtfkWlTS8uEwWxdLtkRt/0F/csUhXIrVfaSIFxnscIBMPynGfhsMwQDRIBQw==}
engines: {node: '>=12'}
@@ -1630,6 +1563,15 @@ packages:
dev: true
optional: true
+ /@esbuild/android-x64/0.17.12:
+ resolution: {integrity: sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/android-x64/0.17.5:
resolution: {integrity: sha512-8fI/AnIdmWz/+1iza2WrCw8kwXK9wZp/yZY/iS8ioC+U37yJCeppi9EHY05ewJKN64ASoBIseufZROtcFnX5GA==}
engines: {node: '>=12'}
@@ -1648,6 +1590,15 @@ packages:
dev: true
optional: true
+ /@esbuild/darwin-arm64/0.17.12:
+ resolution: {integrity: sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/darwin-arm64/0.17.5:
resolution: {integrity: sha512-EAvaoyIySV6Iif3NQCglUNpnMfHSUgC5ugt2efl3+QDntucJe5spn0udNZjTgNi6tKVqSceOw9tQ32liNZc1Xw==}
engines: {node: '>=12'}
@@ -1666,6 +1617,15 @@ packages:
dev: true
optional: true
+ /@esbuild/darwin-x64/0.17.12:
+ resolution: {integrity: sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/darwin-x64/0.17.5:
resolution: {integrity: sha512-ha7QCJh1fuSwwCgoegfdaljowwWozwTDjBgjD3++WAy/qwee5uUi1gvOg2WENJC6EUyHBOkcd3YmLDYSZ2TPPA==}
engines: {node: '>=12'}
@@ -1684,6 +1644,15 @@ packages:
dev: true
optional: true
+ /@esbuild/freebsd-arm64/0.17.12:
+ resolution: {integrity: sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/freebsd-arm64/0.17.5:
resolution: {integrity: sha512-VbdXJkn2aI2pQ/wxNEjEcnEDwPpxt3CWWMFYmO7CcdFBoOsABRy2W8F3kjbF9F/pecEUDcI3b5i2w+By4VQFPg==}
engines: {node: '>=12'}
@@ -1702,6 +1671,15 @@ packages:
dev: true
optional: true
+ /@esbuild/freebsd-x64/0.17.12:
+ resolution: {integrity: sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/freebsd-x64/0.17.5:
resolution: {integrity: sha512-olgGYND1/XnnWxwhjtY3/ryjOG/M4WfcA6XH8dBTH1cxMeBemMODXSFhkw71Kf4TeZFFTN25YOomaNh0vq2iXg==}
engines: {node: '>=12'}
@@ -1720,6 +1698,15 @@ packages:
dev: true
optional: true
+ /@esbuild/linux-arm/0.17.12:
+ resolution: {integrity: sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/linux-arm/0.17.5:
resolution: {integrity: sha512-YBdCyQwA3OQupi6W2/WO4FnI+NWFWe79cZEtlbqSESOHEg7a73htBIRiE6uHPQe7Yp5E4aALv+JxkRLGEUL7tw==}
engines: {node: '>=12'}
@@ -1738,6 +1725,15 @@ packages:
dev: true
optional: true
+ /@esbuild/linux-arm64/0.17.12:
+ resolution: {integrity: sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/linux-arm64/0.17.5:
resolution: {integrity: sha512-8a0bqSwu3OlLCfu2FBbDNgQyBYdPJh1B9PvNX7jMaKGC9/KopgHs37t+pQqeMLzcyRqG6z55IGNQAMSlCpBuqg==}
engines: {node: '>=12'}
@@ -1756,6 +1752,15 @@ packages:
dev: true
optional: true
+ /@esbuild/linux-ia32/0.17.12:
+ resolution: {integrity: sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/linux-ia32/0.17.5:
resolution: {integrity: sha512-uCwm1r/+NdP7vndctgq3PoZrnmhmnecWAr114GWMRwg2QMFFX+kIWnp7IO220/JLgnXK/jP7VKAFBGmeOYBQYQ==}
engines: {node: '>=12'}
@@ -1765,8 +1770,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64/0.14.54:
- resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
+ /@esbuild/linux-loong64/0.16.17:
+ resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -1774,8 +1779,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64/0.16.17:
- resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==}
+ /@esbuild/linux-loong64/0.17.12:
+ resolution: {integrity: sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -1801,6 +1806,15 @@ packages:
dev: true
optional: true
+ /@esbuild/linux-mips64el/0.17.12:
+ resolution: {integrity: sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/linux-mips64el/0.17.5:
resolution: {integrity: sha512-Hy5Z0YVWyYHdtQ5mfmfp8LdhVwGbwVuq8mHzLqrG16BaMgEmit2xKO+iDakHs+OetEx0EN/2mUzDdfdktI+Nmg==}
engines: {node: '>=12'}
@@ -1819,6 +1833,15 @@ packages:
dev: true
optional: true
+ /@esbuild/linux-ppc64/0.17.12:
+ resolution: {integrity: sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/linux-ppc64/0.17.5:
resolution: {integrity: sha512-5dbQvBLbU/Y3Q4ABc9gi23hww1mQcM7KZ9KBqabB7qhJswYMf8WrDDOSw3gdf3p+ffmijMd28mfVMvFucuECyg==}
engines: {node: '>=12'}
@@ -1837,6 +1860,15 @@ packages:
dev: true
optional: true
+ /@esbuild/linux-riscv64/0.17.12:
+ resolution: {integrity: sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/linux-riscv64/0.17.5:
resolution: {integrity: sha512-fp/KUB/ZPzEWGTEUgz9wIAKCqu7CjH1GqXUO2WJdik1UNBQ7Xzw7myIajpxztE4Csb9504ERiFMxZg5KZ6HlZQ==}
engines: {node: '>=12'}
@@ -1855,6 +1887,15 @@ packages:
dev: true
optional: true
+ /@esbuild/linux-s390x/0.17.12:
+ resolution: {integrity: sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/linux-s390x/0.17.5:
resolution: {integrity: sha512-kRV3yw19YDqHTp8SfHXfObUFXlaiiw4o2lvT1XjsPZ++22GqZwSsYWJLjMi1Sl7j9qDlDUduWDze/nQx0d6Lzw==}
engines: {node: '>=12'}
@@ -1873,6 +1914,15 @@ packages:
dev: true
optional: true
+ /@esbuild/linux-x64/0.17.12:
+ resolution: {integrity: sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/linux-x64/0.17.5:
resolution: {integrity: sha512-vnxuhh9e4pbtABNLbT2ANW4uwQ/zvcHRCm1JxaYkzSehugoFd5iXyC4ci1nhXU13mxEwCnrnTIiiSGwa/uAF1g==}
engines: {node: '>=12'}
@@ -1891,6 +1941,15 @@ packages:
dev: true
optional: true
+ /@esbuild/netbsd-x64/0.17.12:
+ resolution: {integrity: sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/netbsd-x64/0.17.5:
resolution: {integrity: sha512-cigBpdiSx/vPy7doUyImsQQBnBjV5f1M99ZUlaJckDAJjgXWl6y9W17FIfJTy8TxosEF6MXq+fpLsitMGts2nA==}
engines: {node: '>=12'}
@@ -1909,6 +1968,15 @@ packages:
dev: true
optional: true
+ /@esbuild/openbsd-x64/0.17.12:
+ resolution: {integrity: sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/openbsd-x64/0.17.5:
resolution: {integrity: sha512-VdqRqPVIjjZfkf40LrqOaVuhw9EQiAZ/GNCSM2UplDkaIzYVsSnycxcFfAnHdWI8Gyt6dO15KHikbpxwx+xHbw==}
engines: {node: '>=12'}
@@ -1927,6 +1995,15 @@ packages:
dev: true
optional: true
+ /@esbuild/sunos-x64/0.17.12:
+ resolution: {integrity: sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/sunos-x64/0.17.5:
resolution: {integrity: sha512-ItxPaJ3MBLtI4nK+mALLEoUs6amxsx+J1ibnfcYMkqaCqHST1AkF4aENpBehty3czqw64r/XqL+W9WqU6kc2Qw==}
engines: {node: '>=12'}
@@ -1945,6 +2022,15 @@ packages:
dev: true
optional: true
+ /@esbuild/win32-arm64/0.17.12:
+ resolution: {integrity: sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/win32-arm64/0.17.5:
resolution: {integrity: sha512-4u2Q6qsJTYNFdS9zHoAi80spzf78C16m2wla4eJPh4kSbRv+BpXIfl6TmBSWupD8e47B1NrTfrOlEuco7mYQtg==}
engines: {node: '>=12'}
@@ -1963,6 +2049,15 @@ packages:
dev: true
optional: true
+ /@esbuild/win32-ia32/0.17.12:
+ resolution: {integrity: sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/win32-ia32/0.17.5:
resolution: {integrity: sha512-KYlm+Xu9TXsfTWAcocLuISRtqxKp/Y9ZBVg6CEEj0O5J9mn7YvBKzAszo2j1ndyzUPk+op+Tie2PJeN+BnXGqQ==}
engines: {node: '>=12'}
@@ -1981,6 +2076,15 @@ packages:
dev: true
optional: true
+ /@esbuild/win32-x64/0.17.12:
+ resolution: {integrity: sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@esbuild/win32-x64/0.17.5:
resolution: {integrity: sha512-XgA9qWRqby7xdYXuF6KALsn37QGBMHsdhmnpjfZtYxKxbTOwfnDM6MYi2WuUku5poNaX2n9XGVr20zgT/2QwCw==}
engines: {node: '>=12'}
@@ -1990,13 +2094,28 @@ packages:
dev: true
optional: true
- /@eslint/eslintrc/1.4.1:
- resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
+ /@eslint-community/eslint-utils/4.3.0_eslint@8.36.0:
+ resolution: {integrity: sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ dependencies:
+ eslint: 8.36.0
+ eslint-visitor-keys: 3.3.0
+ dev: true
+
+ /@eslint-community/regexpp/4.4.0:
+ resolution: {integrity: sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ dev: true
+
+ /@eslint/eslintrc/2.0.1:
+ resolution: {integrity: sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
- espree: 9.4.1
+ espree: 9.5.0
globals: 13.20.0
ignore: 5.2.4
import-fresh: 3.3.0
@@ -2007,13 +2126,18 @@ packages:
- supports-color
dev: true
- /@headlessui/vue/1.7.8_vue@3.2.45:
- resolution: {integrity: sha512-J83kAz3drFjndXz/AOoxmgzVo/MtSNFFn/K9qhSSJ8EGhmRfwdJLhZ0W4NSrw6A10JxhXDlkjoV0UxOiBLr5iQ==}
+ /@eslint/js/8.36.0:
+ resolution: {integrity: sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: true
+
+ /@headlessui/vue/1.7.12_vue@3.2.47:
+ resolution: {integrity: sha512-IV0k1I2I8Bj37HljFF231Y9cpldfiucf+inMCxA/VPoQT6UTxo0N/rb78CrogBxXNfsPxKmz3y/nlv+eRz6zvg==}
engines: {node: '>=10'}
peerDependencies:
vue: ^3.2.0
dependencies:
- vue: 3.2.45
+ vue: 3.2.47
dev: true
/@humanwhocodes/config-array/0.11.8:
@@ -2036,32 +2160,37 @@ packages:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
- /@iconify/json/2.1.150:
- resolution: {integrity: sha512-63cI0hVpWh/2UIZ6RknSaPT0yujPIpQV16845991X8wBvoaJUahrwCQFzaDW1Kflts57gKwwHTb4pg4LjY8lZg==}
+ /@iconify-json/clarity/1.1.8:
+ resolution: {integrity: sha512-Pf8Y1I5aVN3w56LamWpk17YQ7Gh2NICJYqiVc6A4sU9UmPpJDOAhpd6mVSCeptNv058PROyPoM1KoDFDn7eNKA==}
dependencies:
'@iconify/types': 2.0.0
- pathe: 0.3.9
dev: true
- /@iconify/types/2.0.0:
- resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
+ /@iconify-json/mdi/1.1.50:
+ resolution: {integrity: sha512-SgbT5w5eHCdOG74ZWPz7HlTGk6VsifIJhNi6lAsxj/5Nlqt6Cz4LlQmSa9eecU9p075Jub2aAx/o7YI+GCahRQ==}
+ dependencies:
+ '@iconify/types': 2.0.0
+ dev: true
+
+ /@iconify/types/2.0.0:
+ resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
dev: true
- /@iconify/utils/2.0.2:
- resolution: {integrity: sha512-13B3wJxDLmSNBEIEpKleKSkJVQgdAy9ra3Xsu233i/5qD5yXBGhpOFxTB/k8cqme0xVsMKBPV5vbvq9MgQlX+w==}
+ /@iconify/utils/2.1.5:
+ resolution: {integrity: sha512-6MvDI+I6QMvXn5rK9KQGdpEE4mmLTcuQdLZEiX5N+uZB+vc4Yw9K1OtnOgkl8mp4d9X0UrILREyZgF1NUwUt+Q==}
dependencies:
'@antfu/install-pkg': 0.1.1
- '@antfu/utils': 0.5.2
+ '@antfu/utils': 0.7.2
'@iconify/types': 2.0.0
debug: 4.3.4
- kolorist: 1.6.0
- local-pkg: 0.4.2
+ kolorist: 1.7.0
+ local-pkg: 0.4.3
transitivePeerDependencies:
- supports-color
dev: true
- /@intlify/bundle-utils/3.4.0_vue-i18n@9.2.2:
- resolution: {integrity: sha512-2UQkqiSAOSPEHMGWlybqWm4G2K0X+FyYho5AwXz6QklSX1EY5EDmOSxZmwscn2qmKBnp6OYsme5kUrnN9xrWzQ==}
+ /@intlify/bundle-utils/5.2.0_vue-i18n@9.2.2:
+ resolution: {integrity: sha512-rIfoNUTBoZK6IfaEeuoYMQZSuAXhPyZoy+UsdZj+V4eM632ynN1bGt5ttkpGO8xe0c+esfYslgJxBz//bdu4qg==}
engines: {node: '>= 12'}
peerDependencies:
petite-vue-i18n: '*'
@@ -2074,9 +2203,11 @@ packages:
dependencies:
'@intlify/message-compiler': 9.3.0-beta.16
'@intlify/shared': 9.3.0-beta.16
+ acorn: 8.8.2
+ estree-walker: 2.0.2
jsonc-eslint-parser: 1.4.1
source-map: 0.6.1
- vue-i18n: 9.2.2_vue@3.2.45
+ vue-i18n: 9.2.2_vue@3.2.47
yaml-eslint-parser: 0.3.2
dev: true
@@ -2113,19 +2244,19 @@ packages:
source-map: 0.6.1
dev: true
- /@intlify/nuxt3/0.2.4_evuriqgx4msnmbxuad5kv3gqji:
+ /@intlify/nuxt3/0.2.4_vite@4.2.0+vue@3.2.47:
resolution: {integrity: sha512-t8wMX3L9kfRL7aLGzix1Azb2XllfZNMCNc7d7X8EeSrX2NjCJPJPPtBk3lpNwmVSXiUJOrvlBLVdBLe4qj0t/w==}
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0}
dependencies:
'@intlify/shared': 9.2.2
- '@intlify/vite-plugin-vue-i18n': 4.0.0_tlcbm3baq5of7a4ap2x7tmje4i
- '@intlify/vue-i18n-loader': 5.0.0_vue-i18n@9.2.2+vue@3.2.45
- '@nuxt/kit': 3.1.1
+ '@intlify/vite-plugin-vue-i18n': 4.0.0_vite@4.2.0+vue-i18n@9.2.2
+ '@intlify/vue-i18n-loader': 5.0.0_vue-i18n@9.2.2+vue@3.2.47
+ '@nuxt/kit': 3.3.1
debug: 4.3.4
pathe: 0.2.0
ufo: 0.8.6
- unplugin: 0.6.3_b6bkal6d3amohuonzzah3gcceu
- vue-i18n: 9.2.2_vue@3.2.45
+ unplugin: 0.6.3_vite@4.2.0
+ vue-i18n: 9.2.2_vue@3.2.47
transitivePeerDependencies:
- esbuild
- petite-vue-i18n
@@ -2146,7 +2277,7 @@ packages:
engines: {node: '>= 14'}
dev: true
- /@intlify/vite-plugin-vue-i18n/4.0.0_tlcbm3baq5of7a4ap2x7tmje4i:
+ /@intlify/vite-plugin-vue-i18n/4.0.0_vite@4.2.0+vue-i18n@9.2.2:
resolution: {integrity: sha512-bX7WgJAnYAbhmfvMp17TjCzg4e4T68O7iqAcNo6TOS+oHK0kAJAN9AJfEMTdpDrAwURCw0VwZ0kgMFWDbJkY4g==}
engines: {node: '>= 12'}
peerDependencies:
@@ -2159,14 +2290,14 @@ packages:
vue-i18n:
optional: true
dependencies:
- '@intlify/bundle-utils': 3.4.0_vue-i18n@9.2.2
+ '@intlify/bundle-utils': 5.2.0_vue-i18n@9.2.2
'@intlify/shared': 9.3.0-beta.16
'@rollup/pluginutils': 4.2.1
debug: 4.3.4
fast-glob: 3.2.12
source-map: 0.6.1
- vite: 3.0.0-beta.10_sass@1.53.0
- vue-i18n: 9.2.2_vue@3.2.45
+ vite: 4.2.0_sass@1.59.3
+ vue-i18n: 9.2.2_vue@3.2.47
transitivePeerDependencies:
- supports-color
dev: true
@@ -2179,7 +2310,7 @@ packages:
'@intlify/shared': 9.2.2
dev: true
- /@intlify/vue-i18n-loader/5.0.0_vue-i18n@9.2.2+vue@3.2.45:
+ /@intlify/vue-i18n-loader/5.0.0_vue-i18n@9.2.2+vue@3.2.47:
resolution: {integrity: sha512-rlqWLHrXdchvI9jsI5XA7/3UqE+4pgBD40d+9DWdyRkKeXfMMO9lmkp21jOKC8afWcK0NW5qzYTjp+JEJ6ymZA==}
engines: {node: '>= 12'}
peerDependencies:
@@ -2192,13 +2323,13 @@ packages:
vue-i18n:
optional: true
dependencies:
- '@intlify/bundle-utils': 3.4.0_vue-i18n@9.2.2
+ '@intlify/bundle-utils': 5.2.0_vue-i18n@9.2.2
'@intlify/shared': 9.3.0-beta.16
js-yaml: 4.1.0
json5: 2.2.3
loader-utils: 2.0.4
- vue: 3.2.45
- vue-i18n: 9.2.2_vue@3.2.45
+ vue: 3.2.47
+ vue-i18n: 9.2.2_vue@3.2.47
dev: true
/@ioredis/commands/1.2.0:
@@ -2303,19 +2434,18 @@ packages:
fastq: 1.14.0
dev: true
- /@nuxt/content/2.4.2:
- resolution: {integrity: sha512-Nz2ZcC7R505UY5NQN+WE1pZ4ie8PBBr12qJHFAZqhWCXenzsdb87p48fvr6Zhlj8CyCTQqWg0B2fs7Lyg/CKwg==}
+ /@nuxt/content/2.5.2:
+ resolution: {integrity: sha512-bSO4g2aNk7AT5abAIJtHLTN+FZFYMvwP6MH9oP6XAo/SsIowvFq7g38in3jK/OMDR+dZq3Nt1z8GrMDGipzsfQ==}
dependencies:
- '@nuxt/kit': 3.1.1
+ '@nuxt/kit': 3.2.3
consola: 2.15.3
defu: 6.1.2
destr: 1.2.2
detab: 3.0.2
- html-tags: 3.2.0
json5: 2.2.3
knitwork: 1.0.0
- listhen: 1.0.2
- mdast-util-to-hast: 12.2.6
+ listhen: 1.0.4
+ mdast-util-to-hast: 12.3.0
mdurl: 1.0.1
ohash: 1.0.0
pathe: 1.1.0
@@ -2325,7 +2455,7 @@ packages:
rehype-slug: 5.1.0
rehype-sort-attribute-values: 4.0.0
rehype-sort-attributes: 4.0.0
- remark-emoji: 3.0.2
+ remark-emoji: 3.1.1
remark-gfm: 3.0.1
remark-mdc: 1.1.3
remark-parse: 10.0.1
@@ -2334,15 +2464,22 @@ packages:
scule: 1.0.0
shiki-es: 0.2.0
slugify: 1.6.5
- socket.io-client: 4.5.4
- ufo: 1.0.1
+ socket.io-client: 4.6.1
+ ufo: 1.1.1
unified: 10.1.2
unist-builder: 3.0.1
unist-util-position: 4.0.4
unist-util-visit: 4.1.2
- unstorage: 1.0.1
- ws: 8.12.0
+ unstorage: 1.4.1
+ ws: 8.13.0
transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@planetscale/database'
- bufferutil
- rollup
- supports-color
@@ -2358,22 +2495,22 @@ packages:
engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
dependencies:
'@nuxt/schema': /@nuxt/schema-edge/3.1.1-rc.0-27911047.7d812db
- c12: 1.1.0
+ c12: 1.2.0
consola: 2.15.3
defu: 6.1.2
globby: 13.1.3
hash-sum: 2.0.0
ignore: 5.2.4
- jiti: 1.16.2
+ jiti: 1.18.2
knitwork: 1.0.0
lodash.template: 4.5.0
- mlly: 1.1.0
+ mlly: 1.2.0
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
scule: 1.0.0
semver: 7.3.8
- unctx: 2.1.1
- unimport: 2.0.1
+ unctx: 2.1.2
+ unimport: 2.2.4
untyped: 1.2.2
transitivePeerDependencies:
- rollup
@@ -2385,21 +2522,21 @@ packages:
engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
dependencies:
'@nuxt/schema': 3.0.0
- c12: 1.1.0
+ c12: 1.2.0
consola: 2.15.3
defu: 6.1.2
globby: 13.1.3
hash-sum: 2.0.0
ignore: 5.2.4
- jiti: 1.16.2
+ jiti: 1.18.2
knitwork: 1.0.0
lodash.template: 4.5.0
- mlly: 1.1.0
+ mlly: 1.2.0
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
scule: 1.0.0
semver: 7.3.8
- unctx: 2.1.1
+ unctx: 2.1.2
unimport: 1.0.1
untyped: 1.2.2
transitivePeerDependencies:
@@ -2407,54 +2544,81 @@ packages:
- supports-color
dev: true
- /@nuxt/kit/3.1.1:
- resolution: {integrity: sha512-wmqVCIuD/te6BKf3YiqWyMumKI5JIpkiv0li/1Y3QHnTkoxyIhLkbFgNcQHuBxJ3eMlk2UjAjAqWiqBHTX54vQ==}
- engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ /@nuxt/kit/3.2.3:
+ resolution: {integrity: sha512-wcsVlQLwGkh1cRhAFWHc3uYHdIxFTRNdRUzNyfqoX9DL0Fuga3K75q/PBY0xg1viA9R6F5BMPhc7KDLSWbXtWg==}
+ engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
dependencies:
- '@nuxt/schema': 3.1.1
- c12: 1.1.0
+ '@nuxt/schema': 3.2.3
+ c12: 1.2.0
consola: 2.15.3
defu: 6.1.2
globby: 13.1.3
hash-sum: 2.0.0
ignore: 5.2.4
- jiti: 1.16.2
+ jiti: 1.18.2
knitwork: 1.0.0
lodash.template: 4.5.0
- mlly: 1.1.0
+ mlly: 1.2.0
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
scule: 1.0.0
semver: 7.3.8
- unctx: 2.1.1
- unimport: 2.0.1
+ unctx: 2.1.2
+ unimport: 2.2.4
untyped: 1.2.2
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/kit/3.1.1_rollup@3.12.0:
- resolution: {integrity: sha512-wmqVCIuD/te6BKf3YiqWyMumKI5JIpkiv0li/1Y3QHnTkoxyIhLkbFgNcQHuBxJ3eMlk2UjAjAqWiqBHTX54vQ==}
- engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ /@nuxt/kit/3.3.1:
+ resolution: {integrity: sha512-zb7/2FUIB1g7nl6K6qozUzfG5uu4yrs9TQjZvpASnPBZ/x1EuJX5k3AA71hMMIVBEX9Adxvh9AuhDEHE5W26Zg==}
+ engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
dependencies:
- '@nuxt/schema': 3.1.1_rollup@3.12.0
- c12: 1.1.0
+ '@nuxt/schema': 3.3.1
+ c12: 1.2.0
consola: 2.15.3
defu: 6.1.2
globby: 13.1.3
hash-sum: 2.0.0
ignore: 5.2.4
- jiti: 1.16.2
+ jiti: 1.18.2
knitwork: 1.0.0
lodash.template: 4.5.0
- mlly: 1.1.0
+ mlly: 1.2.0
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
scule: 1.0.0
semver: 7.3.8
- unctx: 2.1.1
- unimport: 2.0.1_rollup@3.12.0
+ unctx: 2.1.2
+ unimport: 3.0.3
+ untyped: 1.2.2
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ dev: true
+
+ /@nuxt/kit/3.3.1_rollup@3.19.1:
+ resolution: {integrity: sha512-zb7/2FUIB1g7nl6K6qozUzfG5uu4yrs9TQjZvpASnPBZ/x1EuJX5k3AA71hMMIVBEX9Adxvh9AuhDEHE5W26Zg==}
+ engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ dependencies:
+ '@nuxt/schema': 3.3.1_rollup@3.19.1
+ c12: 1.2.0
+ consola: 2.15.3
+ defu: 6.1.2
+ globby: 13.1.3
+ hash-sum: 2.0.0
+ ignore: 5.2.4
+ jiti: 1.18.2
+ knitwork: 1.0.0
+ lodash.template: 4.5.0
+ mlly: 1.2.0
+ pathe: 1.1.0
+ pkg-types: 1.0.2
+ scule: 1.0.0
+ semver: 7.3.8
+ unctx: 2.1.2
+ unimport: 3.0.3_rollup@3.19.1
untyped: 1.2.2
transitivePeerDependencies:
- rollup
@@ -2465,18 +2629,18 @@ packages:
resolution: {integrity: sha512-AAyFyacKTRhqMdDcSsJqJHLEBfPt6zTH0XOAkfuXSxw5yi2Ykp67nfm4fX6Q4JzJRJWc00G+Gfg597svI7P9Xg==}
engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
dependencies:
- c12: 1.1.0
+ c12: 1.2.0
create-require: 1.1.1
defu: 6.1.2
- hookable: 5.4.2
- jiti: 1.16.2
+ hookable: 5.5.1
+ jiti: 1.18.2
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
postcss-import-resolver: 2.0.0
scule: 1.0.0
- std-env: 3.3.1
- ufo: 1.0.1
- unimport: 2.0.1
+ std-env: 3.3.2
+ ufo: 1.1.1
+ unimport: 2.2.4
untyped: 1.2.2
transitivePeerDependencies:
- rollup
@@ -2487,16 +2651,16 @@ packages:
resolution: {integrity: sha512-5fwsidhs5NjFzR8sIzHMXO0WFGkI3tCH3ViANn2W4N5qCwoYZ0n1sZBkQ9Esn1VoEed6RsIlTpWrPZPVtqNkGQ==}
engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
dependencies:
- c12: 1.1.0
+ c12: 1.2.0
create-require: 1.1.1
defu: 6.1.2
- jiti: 1.16.2
+ jiti: 1.18.2
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
postcss-import-resolver: 2.0.0
scule: 1.0.0
- std-env: 3.3.1
- ufo: 1.0.1
+ std-env: 3.3.2
+ ufo: 1.1.1
unimport: 1.0.1
untyped: 1.2.2
transitivePeerDependencies:
@@ -2504,57 +2668,79 @@ packages:
- supports-color
dev: true
- /@nuxt/schema/3.1.1:
- resolution: {integrity: sha512-/KuoCDVGrLD9W7vwuYhu4HbdT/BpbrhA4Pm9dGn7Jah40kHDGqUnJxugvMjt+4suq53rLQyTA0LRDWfFxfxAOQ==}
- engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ /@nuxt/schema/3.2.3:
+ resolution: {integrity: sha512-AXzRnBivCwn5RpNFWjUkvOPGPSHl5BM+6GfOpSNglPXi0tiQJ+rawSl7no7BkxGDmQ44Bx9AXwvHTrgjpcuo4g==}
+ engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
dependencies:
- c12: 1.1.0
+ c12: 1.2.0
create-require: 1.1.1
defu: 6.1.2
- hookable: 5.4.2
- jiti: 1.16.2
+ hookable: 5.5.1
+ jiti: 1.18.2
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
postcss-import-resolver: 2.0.0
scule: 1.0.0
- std-env: 3.3.1
- ufo: 1.0.1
- unimport: 2.0.1
+ std-env: 3.3.2
+ ufo: 1.1.1
+ unimport: 2.2.4
untyped: 1.2.2
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/schema/3.1.1_rollup@3.12.0:
- resolution: {integrity: sha512-/KuoCDVGrLD9W7vwuYhu4HbdT/BpbrhA4Pm9dGn7Jah40kHDGqUnJxugvMjt+4suq53rLQyTA0LRDWfFxfxAOQ==}
- engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ /@nuxt/schema/3.3.1:
+ resolution: {integrity: sha512-E8HWzU43rXzqwDTmWduTLHY4xIwRSAUt1LbpuE9IjZ4uJZq5Mbaj4nfhANNsTQGw2c+O+rL81yzAP3i61LEJDw==}
+ engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
dependencies:
- c12: 1.1.0
+ c12: 1.2.0
create-require: 1.1.1
defu: 6.1.2
- hookable: 5.4.2
- jiti: 1.16.2
+ hookable: 5.5.1
+ jiti: 1.18.2
+ pathe: 1.1.0
+ pkg-types: 1.0.2
+ postcss-import-resolver: 2.0.0
+ scule: 1.0.0
+ std-env: 3.3.2
+ ufo: 1.1.1
+ unimport: 3.0.3
+ untyped: 1.2.2
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ dev: true
+
+ /@nuxt/schema/3.3.1_rollup@3.19.1:
+ resolution: {integrity: sha512-E8HWzU43rXzqwDTmWduTLHY4xIwRSAUt1LbpuE9IjZ4uJZq5Mbaj4nfhANNsTQGw2c+O+rL81yzAP3i61LEJDw==}
+ engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ dependencies:
+ c12: 1.2.0
+ create-require: 1.1.1
+ defu: 6.1.2
+ hookable: 5.5.1
+ jiti: 1.18.2
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
postcss-import-resolver: 2.0.0
scule: 1.0.0
- std-env: 3.3.1
- ufo: 1.0.1
- unimport: 2.0.1_rollup@3.12.0
+ std-env: 3.3.2
+ ufo: 1.1.1
+ unimport: 3.0.3_rollup@3.19.1
untyped: 1.2.2
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/telemetry/2.1.9:
- resolution: {integrity: sha512-mUyDqmB8GUJwTHVnwxuapeUHDSsUycOt+ZsA7GB6F8MOBJiVhQl/EeEAWoO2TUs0BPp2SlY9uO6eQihvxyLRqQ==}
+ /@nuxt/telemetry/2.1.10:
+ resolution: {integrity: sha512-FOsfC0i6Ix66M/ZlWV/095JIdfnRR9CRbFvBSpojt2CpbwU1pGMbRiicwYg2f1Wf27LXQRNpNn1OczruBfEWag==}
hasBin: true
dependencies:
- '@nuxt/kit': 3.1.1
+ '@nuxt/kit': 3.3.1
chalk: 5.2.0
- ci-info: 3.7.1
+ ci-info: 3.8.0
consola: 2.15.3
create-require: 1.1.1
defu: 6.1.2
@@ -2564,20 +2750,20 @@ packages:
git-url-parse: 13.1.0
inquirer: 9.1.4
is-docker: 3.0.0
- jiti: 1.16.2
+ jiti: 1.18.2
mri: 1.2.0
- nanoid: 4.0.0
+ nanoid: 4.0.1
node-fetch: 3.3.0
- ofetch: 1.0.0
+ ofetch: 1.0.1
parse-git-config: 3.0.0
- rc9: 2.0.0
- std-env: 3.3.1
+ rc9: 2.0.1
+ std-env: 3.3.2
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/test-utils-edge/3.1.1-rc.0-27911047.7d812db_vue@3.2.45:
+ /@nuxt/test-utils-edge/3.1.1-rc.0-27911047.7d812db_vue@3.2.47:
resolution: {integrity: sha512-SknNzy+GMkSr0u3PCsS5VG33oS5NpEQMfLqu3ICWP32SCtQoYYUkwmkd5sW7JMZf+JcweknOuZQcVaAHHjne9Q==}
engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
peerDependencies:
@@ -2592,56 +2778,59 @@ packages:
jiti: 1.16.2
ofetch: 1.0.0
pathe: 1.1.0
- vue: 3.2.45
+ vue: 3.2.47
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/ui-templates/1.1.0:
- resolution: {integrity: sha512-KffiTNdVaZlkx0tgwopmy627WQclWO0kqFD1R646wawDbNlWkpmwj5qI5qoh2Rx13/O+KkYdc28H3JsQdQmXJw==}
+ /@nuxt/ui-templates/1.1.1:
+ resolution: {integrity: sha512-PjVETP7+iZXAs5Q8O4ivl4t6qjWZMZqwiTVogUXHoHGZZcw7GZW3u3tzfYfE1HbzyYJfr236IXqQ02MeR8Fz2w==}
dev: true
- /@nuxt/vite-builder/3.1.1_o7yoeuejlqnl36sfel6hjhvmna:
- resolution: {integrity: sha512-tTV369sIURut6z+t36ib3J2GbgiazMc4VO9wB372A5hnd+faLtapknswMvzF23M+4z1/5tGaV/kkU/ZrO3V1Ag==}
- engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ /@nuxt/vite-builder/3.3.1_s6tppspsvnnhswul3bz5sealve:
+ resolution: {integrity: sha512-YDPDqMWRcZfI6ou2nfxj+IEaxfZXRoyoeMV917h7LbhmnqMBn1prJzFF+Li8br97emL958XANZ7GVZ9OVXgayA==}
+ engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
peerDependencies:
- vue: ^3.2.45
+ vue: ^3.2.47
dependencies:
- '@nuxt/kit': 3.1.1_rollup@3.12.0
- '@rollup/plugin-replace': 5.0.2_rollup@3.12.0
- '@vitejs/plugin-vue': 4.0.0_vite@4.0.4+vue@3.2.45
- '@vitejs/plugin-vue-jsx': 3.0.0_vite@4.0.4+vue@3.2.45
- autoprefixer: 10.4.13_postcss@8.4.21
+ '@nuxt/kit': 3.3.1_rollup@3.19.1
+ '@rollup/plugin-replace': 5.0.2_rollup@3.19.1
+ '@vitejs/plugin-vue': 4.0.0_vite@4.1.4+vue@3.2.47
+ '@vitejs/plugin-vue-jsx': 3.0.0_vite@4.1.4+vue@3.2.47
+ autoprefixer: 10.4.14_postcss@8.4.21
chokidar: 3.5.3
- cssnano: 5.1.14_postcss@8.4.21
+ clear: 0.1.0
+ cssnano: 5.1.15_postcss@8.4.21
defu: 6.1.2
- esbuild: 0.17.5
+ esbuild: 0.17.12
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.0
fs-extra: 11.1.0
get-port-please: 3.0.1
- h3: 1.1.0
+ h3: 1.6.2
knitwork: 1.0.0
- magic-string: 0.27.0
- mlly: 1.1.0
+ magic-string: 0.30.0
+ mlly: 1.2.0
ohash: 1.0.0
pathe: 1.1.0
perfect-debounce: 0.1.3
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
postcss: 8.4.21
postcss-import: 15.1.0_postcss@8.4.21
postcss-url: 10.1.3_postcss@8.4.21
- rollup: 3.12.0
- rollup-plugin-visualizer: 5.9.0_rollup@3.12.0
- ufo: 1.0.1
- unplugin: 1.0.1
- vite: 4.0.4_sass@1.53.0
- vite-node: 0.28.3_sass@1.53.0
- vite-plugin-checker: 0.5.5_6wv62fpji7whzkophcofqgcbq4
- vue: 3.2.45
- vue-bundle-renderer: 1.0.0
+ rollup: 3.19.1
+ rollup-plugin-visualizer: 5.9.0_rollup@3.19.1
+ std-env: 3.3.2
+ strip-literal: 1.0.1
+ ufo: 1.1.1
+ unplugin: 1.3.1
+ vite: 4.1.4_sass@1.59.3
+ vite-node: 0.29.3_sass@1.59.3
+ vite-plugin-checker: 0.5.6_sdidq2uhycxwhmfb6zmtxua6uu
+ vue: 3.2.47
+ vue-bundle-renderer: 1.0.2
transitivePeerDependencies:
- '@types/node'
- eslint
@@ -2660,37 +2849,48 @@ packages:
- vue-tsc
dev: true
- /@nuxtjs/eslint-config-typescript/12.0.0_7uibuqfxkfaozanbtbziikiqje:
+ /@nuxtjs/critters/0.4.0:
+ resolution: {integrity: sha512-+7RHktQwJcZsnWh6WB9nlX+t2gCv7/tv90DbVrFcXLR1Ew23uKcS5M2Wwq9emFupc1qnNJTk3zXR3GAGvqaRTg==}
+ dependencies:
+ '@nuxt/kit': 3.0.0
+ critters: 0.0.16
+ pathe: 1.0.0
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ dev: true
+
+ /@nuxtjs/eslint-config-typescript/12.0.0_j4766f7ecgqbon3u7zlxn5zszu:
resolution: {integrity: sha512-HJR0ho5MYuOCFjkL+eMX/VXbUwy36J12DUMVy+dj3Qz1GYHwX92Saxap3urFzr8oPkzzFiuOknDivfCeRBWakg==}
peerDependencies:
eslint: ^8.23.0
dependencies:
- '@nuxtjs/eslint-config': 12.0.0_4kfxr3eudyefu6ojtf45erd37a
- '@typescript-eslint/eslint-plugin': 5.46.0_62nxtgteqxu2aowzhf5vm25r7m
- '@typescript-eslint/parser': 5.46.0_7uibuqfxkfaozanbtbziikiqje
- eslint: 8.32.0
- eslint-import-resolver-typescript: 3.5.2_kornzrmzxylufiu5zotgc4cisa
- eslint-plugin-import: 2.26.0_4kfxr3eudyefu6ojtf45erd37a
- eslint-plugin-vue: 9.8.0_eslint@8.32.0
+ '@nuxtjs/eslint-config': 12.0.0_ij73nhtc7gwthe5jk23gpdiq3i
+ '@typescript-eslint/eslint-plugin': 5.46.0_sdnbrbcztfyv77zqbneqeujdf4
+ '@typescript-eslint/parser': 5.46.0_j4766f7ecgqbon3u7zlxn5zszu
+ eslint: 8.36.0
+ eslint-import-resolver-typescript: 3.5.2_6efblkktgpzjjbdhcug3twoi7q
+ eslint-plugin-import: 2.26.0_ij73nhtc7gwthe5jk23gpdiq3i
+ eslint-plugin-vue: 9.8.0_eslint@8.36.0
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
- typescript
dev: true
- /@nuxtjs/eslint-config/12.0.0_4kfxr3eudyefu6ojtf45erd37a:
+ /@nuxtjs/eslint-config/12.0.0_eslint@8.36.0:
resolution: {integrity: sha512-ewenelo75x0eYEUK+9EBXjc/OopQCvdkmYmlZuoHq5kub/vtiRpyZ/autppwokpHUq8tiVyl2ejMakoiHiDTrg==}
peerDependencies:
eslint: ^8.23.0
dependencies:
- eslint: 8.32.0
- eslint-config-standard: 17.0.0_aknt3kx5mck5jnsactbk5g4gdy
- eslint-plugin-import: 2.26.0_4kfxr3eudyefu6ojtf45erd37a
- eslint-plugin-n: 15.6.0_eslint@8.32.0
- eslint-plugin-node: 11.1.0_eslint@8.32.0
- eslint-plugin-promise: 6.1.1_eslint@8.32.0
- eslint-plugin-unicorn: 44.0.2_eslint@8.32.0
- eslint-plugin-vue: 9.8.0_eslint@8.32.0
+ eslint: 8.36.0
+ eslint-config-standard: 17.0.0_xxslxvx2bog7su3vyefgaw5cfq
+ eslint-plugin-import: 2.26.0_eslint@8.36.0
+ eslint-plugin-n: 15.6.0_eslint@8.36.0
+ eslint-plugin-node: 11.1.0_eslint@8.36.0
+ eslint-plugin-promise: 6.1.1_eslint@8.36.0
+ eslint-plugin-unicorn: 44.0.2_eslint@8.36.0
+ eslint-plugin-vue: 9.8.0_eslint@8.36.0
local-pkg: 0.4.2
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -2699,19 +2899,19 @@ packages:
- supports-color
dev: true
- /@nuxtjs/eslint-config/12.0.0_eslint@8.32.0:
+ /@nuxtjs/eslint-config/12.0.0_ij73nhtc7gwthe5jk23gpdiq3i:
resolution: {integrity: sha512-ewenelo75x0eYEUK+9EBXjc/OopQCvdkmYmlZuoHq5kub/vtiRpyZ/autppwokpHUq8tiVyl2ejMakoiHiDTrg==}
peerDependencies:
eslint: ^8.23.0
dependencies:
- eslint: 8.32.0
- eslint-config-standard: 17.0.0_aknt3kx5mck5jnsactbk5g4gdy
- eslint-plugin-import: 2.26.0_eslint@8.32.0
- eslint-plugin-n: 15.6.0_eslint@8.32.0
- eslint-plugin-node: 11.1.0_eslint@8.32.0
- eslint-plugin-promise: 6.1.1_eslint@8.32.0
- eslint-plugin-unicorn: 44.0.2_eslint@8.32.0
- eslint-plugin-vue: 9.8.0_eslint@8.32.0
+ eslint: 8.36.0
+ eslint-config-standard: 17.0.0_xxslxvx2bog7su3vyefgaw5cfq
+ eslint-plugin-import: 2.26.0_ij73nhtc7gwthe5jk23gpdiq3i
+ eslint-plugin-n: 15.6.0_eslint@8.36.0
+ eslint-plugin-node: 11.1.0_eslint@8.36.0
+ eslint-plugin-promise: 6.1.1_eslint@8.36.0
+ eslint-plugin-unicorn: 44.0.2_eslint@8.36.0
+ eslint-plugin-vue: 9.8.0_eslint@8.36.0
local-pkg: 0.4.2
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -2720,11 +2920,25 @@ packages:
- supports-color
dev: true
- /@pinia/nuxt/0.4.6_prq2uz4lho2pwp6irk4cfkrxwu:
- resolution: {integrity: sha512-HjrYEfLdFpmsjhicPJgL36jVhzHWukIQPFFHGTSF84Cplu+f2nY2XHKqe9ToHzE9rLee2RjLOwAzOnXa/I/u6A==}
+ /@nuxtjs/fontaine/0.2.4:
+ resolution: {integrity: sha512-egOlWIQUMxXPAG3ltryF+R9lntSX4ovJu9iJ5IMbFnxo03DXBJMFIJSWhUNL/5jPUHkBoEFolaLZma5UtPpCpQ==}
dependencies:
- '@nuxt/kit': 3.1.1
- pinia: 2.0.29_prq2uz4lho2pwp6irk4cfkrxwu
+ '@nuxt/kit': 3.0.0
+ fontaine: 0.2.3
+ magic-string: 0.27.0
+ pathe: 1.1.0
+ ufo: 1.1.1
+ transitivePeerDependencies:
+ - encoding
+ - rollup
+ - supports-color
+ dev: true
+
+ /@pinia/nuxt/0.4.7_p4srtwdgezcoeovfcc2yxzvaue:
+ resolution: {integrity: sha512-ifgA9PO/jmPlK1e/HtkrZa7OMSL8EUOpo8Z1O5vNLRr/OZ42kKGEaY1NbIoCz6dIf/pbkATTNHJmcrlPCo3zSA==}
+ dependencies:
+ '@nuxt/kit': 3.3.1
+ pinia: 2.0.33_p4srtwdgezcoeovfcc2yxzvaue
transitivePeerDependencies:
- '@vue/composition-api'
- rollup
@@ -2749,7 +2963,7 @@ packages:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
dev: true
- /@rollup/plugin-alias/4.0.3_rollup@3.12.0:
+ /@rollup/plugin-alias/4.0.3_rollup@3.19.1:
resolution: {integrity: sha512-ZuDWE1q4PQDhvm/zc5Prun8sBpLJy41DMptYrS6MhAy9s9kL/doN1613BWfEchGVfKxzliJ3BjbOPizXX38DbQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2758,11 +2972,11 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.12.0
+ rollup: 3.19.1
slash: 4.0.0
dev: true
- /@rollup/plugin-commonjs/24.0.1_rollup@3.12.0:
+ /@rollup/plugin-commonjs/24.0.1_rollup@3.19.1:
resolution: {integrity: sha512-15LsiWRZk4eOGqvrJyu3z3DaBu5BhXIMeWnijSRvd8irrrg9SHpQ1pH+BUK4H6Z9wL9yOxZJMTLU+Au86XHxow==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2771,16 +2985,16 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2_rollup@3.12.0
+ '@rollup/pluginutils': 5.0.2_rollup@3.19.1
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.0.3
is-reference: 1.2.1
magic-string: 0.27.0
- rollup: 3.12.0
+ rollup: 3.19.1
dev: true
- /@rollup/plugin-inject/5.0.3_rollup@3.12.0:
+ /@rollup/plugin-inject/5.0.3_rollup@3.19.1:
resolution: {integrity: sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2789,13 +3003,13 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2_rollup@3.12.0
+ '@rollup/pluginutils': 5.0.2_rollup@3.19.1
estree-walker: 2.0.2
magic-string: 0.27.0
- rollup: 3.12.0
+ rollup: 3.19.1
dev: true
- /@rollup/plugin-json/6.0.0_rollup@3.12.0:
+ /@rollup/plugin-json/6.0.0_rollup@3.19.1:
resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2804,11 +3018,11 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2_rollup@3.12.0
- rollup: 3.12.0
+ '@rollup/pluginutils': 5.0.2_rollup@3.19.1
+ rollup: 3.19.1
dev: true
- /@rollup/plugin-node-resolve/15.0.1_rollup@3.12.0:
+ /@rollup/plugin-node-resolve/15.0.1_rollup@3.19.1:
resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2817,16 +3031,16 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2_rollup@3.12.0
+ '@rollup/pluginutils': 5.0.2_rollup@3.19.1
'@types/resolve': 1.20.2
deepmerge: 4.2.2
is-builtin-module: 3.2.0
is-module: 1.0.0
resolve: 1.22.1
- rollup: 3.12.0
+ rollup: 3.19.1
dev: true
- /@rollup/plugin-replace/5.0.2_rollup@3.12.0:
+ /@rollup/plugin-replace/5.0.2_rollup@3.19.1:
resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2835,12 +3049,12 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.2_rollup@3.12.0
+ '@rollup/pluginutils': 5.0.2_rollup@3.19.1
magic-string: 0.27.0
- rollup: 3.12.0
+ rollup: 3.19.1
dev: true
- /@rollup/plugin-terser/0.4.0_rollup@3.12.0:
+ /@rollup/plugin-terser/0.4.0_rollup@3.19.1:
resolution: {integrity: sha512-Ipcf3LPNerey1q9ZMjiaWHlNPEHNU/B5/uh9zXLltfEQ1lVSLLeZSgAtTPWGyw8Ip1guOeq+mDtdOlEj/wNxQw==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2849,13 +3063,13 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.12.0
+ rollup: 3.19.1
serialize-javascript: 6.0.0
smob: 0.0.6
terser: 5.16.1
dev: true
- /@rollup/plugin-wasm/6.1.2_rollup@3.12.0:
+ /@rollup/plugin-wasm/6.1.2_rollup@3.19.1:
resolution: {integrity: sha512-YdrQ7zfnZ54Y+6raCev3tR1PrhQGxYKSTajGylhyP0oBacouuNo6KcNCk+pYKw9M98jxRWLFFca/udi76IDXzg==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2864,7 +3078,7 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.12.0
+ rollup: 3.19.1
dev: true
/@rollup/pluginutils/4.2.1:
@@ -2889,7 +3103,7 @@ packages:
picomatch: 2.3.1
dev: true
- /@rollup/pluginutils/5.0.2_rollup@3.12.0:
+ /@rollup/pluginutils/5.0.2_rollup@3.19.1:
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2901,13 +3115,25 @@ packages:
'@types/estree': 1.0.0
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 3.12.0
+ rollup: 3.19.1
dev: true
/@socket.io/component-emitter/3.1.0:
resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==}
dev: true
+ /@swc/helpers/0.3.17:
+ resolution: {integrity: sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==}
+ dependencies:
+ tslib: 2.4.1
+ dev: true
+
+ /@swc/helpers/0.4.14:
+ resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
+ dependencies:
+ tslib: 2.4.1
+ dev: true
+
/@trysound/sax/0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
@@ -2945,24 +3171,6 @@ packages:
'@types/ms': 0.7.31
dev: true
- /@types/eslint-scope/3.7.4:
- resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
- dependencies:
- '@types/eslint': 8.4.10
- '@types/estree': 0.0.51
- dev: true
-
- /@types/eslint/8.4.10:
- resolution: {integrity: sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==}
- dependencies:
- '@types/estree': 0.0.51
- '@types/json-schema': 7.0.11
- dev: true
-
- /@types/estree/0.0.51:
- resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- dev: true
-
/@types/estree/1.0.0:
resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
dev: true
@@ -2995,8 +3203,8 @@ packages:
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
dev: true
- /@types/node/14.18.34:
- resolution: {integrity: sha512-hcU9AIQVHmPnmjRK+XUUYlILlr9pQrsqSrwov/JK1pnf3GTQowVBhx54FbvM0AU/VXGH4i3+vgXS5EguR7fysA==}
+ /@types/node/17.0.45:
+ resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
dev: true
/@types/node/18.11.12:
@@ -3007,10 +3215,6 @@ packages:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
dev: true
- /@types/parse-json/4.0.0:
- resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
- dev: true
-
/@types/parse5/6.0.3:
resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
dev: true
@@ -3019,6 +3223,12 @@ packages:
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
dev: true
+ /@types/sax/1.2.4:
+ resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==}
+ dependencies:
+ '@types/node': 18.11.12
+ dev: true
+
/@types/semver/7.3.13:
resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
dev: true
@@ -3031,7 +3241,7 @@ packages:
resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
dev: true
- /@typescript-eslint/eslint-plugin/5.46.0_62nxtgteqxu2aowzhf5vm25r7m:
+ /@typescript-eslint/eslint-plugin/5.46.0_sdnbrbcztfyv77zqbneqeujdf4:
resolution: {integrity: sha512-QrZqaIOzJAjv0sfjY4EjbXUi3ZOFpKfzntx22gPGr9pmFcTjcFw/1sS1LJhEubfAGwuLjNrPV0rH+D1/XZFy7Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3042,23 +3252,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.46.0_7uibuqfxkfaozanbtbziikiqje
+ '@typescript-eslint/parser': 5.46.0_j4766f7ecgqbon3u7zlxn5zszu
'@typescript-eslint/scope-manager': 5.46.0
- '@typescript-eslint/type-utils': 5.46.0_7uibuqfxkfaozanbtbziikiqje
- '@typescript-eslint/utils': 5.46.0_7uibuqfxkfaozanbtbziikiqje
+ '@typescript-eslint/type-utils': 5.46.0_j4766f7ecgqbon3u7zlxn5zszu
+ '@typescript-eslint/utils': 5.46.0_j4766f7ecgqbon3u7zlxn5zszu
debug: 4.3.4
- eslint: 8.32.0
- ignore: 5.2.1
+ eslint: 8.36.0
+ ignore: 5.2.4
natural-compare-lite: 1.4.0
regexpp: 3.2.0
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.9.4
- typescript: 4.9.4
+ tsutils: 3.21.0_typescript@5.0.2
+ typescript: 5.0.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser/5.46.0_7uibuqfxkfaozanbtbziikiqje:
+ /@typescript-eslint/parser/5.46.0_j4766f7ecgqbon3u7zlxn5zszu:
resolution: {integrity: sha512-joNO6zMGUZg+C73vwrKXCd8usnsmOYmgW/w5ZW0pG0RGvqeznjtGDk61EqqTpNrFLUYBW2RSBFrxdAZMqA4OZA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3070,10 +3280,10 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.46.0
'@typescript-eslint/types': 5.46.0
- '@typescript-eslint/typescript-estree': 5.46.0_typescript@4.9.4
+ '@typescript-eslint/typescript-estree': 5.46.0_typescript@5.0.2
debug: 4.3.4
- eslint: 8.32.0
- typescript: 4.9.4
+ eslint: 8.36.0
+ typescript: 5.0.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -3086,7 +3296,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.46.0
dev: true
- /@typescript-eslint/type-utils/5.46.0_7uibuqfxkfaozanbtbziikiqje:
+ /@typescript-eslint/type-utils/5.46.0_j4766f7ecgqbon3u7zlxn5zszu:
resolution: {integrity: sha512-dwv4nimVIAsVS2dTA0MekkWaRnoYNXY26dKz8AN5W3cBFYwYGFQEqm/cG+TOoooKlncJS4RTbFKgcFY/pOiBCg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3096,12 +3306,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.46.0_typescript@4.9.4
- '@typescript-eslint/utils': 5.46.0_7uibuqfxkfaozanbtbziikiqje
+ '@typescript-eslint/typescript-estree': 5.46.0_typescript@5.0.2
+ '@typescript-eslint/utils': 5.46.0_j4766f7ecgqbon3u7zlxn5zszu
debug: 4.3.4
- eslint: 8.32.0
- tsutils: 3.21.0_typescript@4.9.4
- typescript: 4.9.4
+ eslint: 8.36.0
+ tsutils: 3.21.0_typescript@5.0.2
+ typescript: 5.0.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -3111,7 +3321,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.46.0_typescript@4.9.4:
+ /@typescript-eslint/typescript-estree/5.46.0_typescript@5.0.2:
resolution: {integrity: sha512-kDLNn/tQP+Yp8Ro2dUpyyVV0Ksn2rmpPpB0/3MO874RNmXtypMwSeazjEN/Q6CTp8D7ExXAAekPEcCEB/vtJkw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3126,13 +3336,13 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.9.4
- typescript: 4.9.4
+ tsutils: 3.21.0_typescript@5.0.2
+ typescript: 5.0.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.46.0_7uibuqfxkfaozanbtbziikiqje:
+ /@typescript-eslint/utils/5.46.0_j4766f7ecgqbon3u7zlxn5zszu:
resolution: {integrity: sha512-4O+Ps1CRDw+D+R40JYh5GlKLQERXRKW5yIQoNDpmXPJ+C7kaPF9R7GWl+PxGgXjB3PQCqsaaZUpZ9dG4U6DO7g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3142,10 +3352,10 @@ packages:
'@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.46.0
'@typescript-eslint/types': 5.46.0
- '@typescript-eslint/typescript-estree': 5.46.0_typescript@4.9.4
- eslint: 8.32.0
+ '@typescript-eslint/typescript-estree': 5.46.0_typescript@5.0.2
+ eslint: 8.36.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.32.0
+ eslint-utils: 3.0.0_eslint@8.36.0
semver: 7.3.8
transitivePeerDependencies:
- supports-color
@@ -3160,33 +3370,43 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@unhead/dom/1.0.18:
- resolution: {integrity: sha512-zX7w/Z3a1/spyQ3SuxB/0s1Tjx8zu5RzYBBXTtYvGutF8g/ScXreC0c5Vm5F3x4HOPdWG+71Qr/M+k6AxPLHDA==}
+ /@unhead/dom/1.1.23:
+ resolution: {integrity: sha512-Ofa427IF7tMhL/Qw4JzlAbRVBnQjURZONcjhGHVOCoNLU+GAKfbDLBpR2r3kXQFFcv2aDKygoSVyxU6R0cLptw==}
+ dependencies:
+ '@unhead/schema': 1.1.23
+ '@unhead/shared': 1.1.23
+ dev: true
+
+ /@unhead/schema/1.1.23:
+ resolution: {integrity: sha512-ens8dY3ji8xLVutrcLnNmWq4dpBQIzvSHBr6yZqj7mF8RORXYNwJsY0LRAyAgTyv9aD5aEVpQIiz9s4f2+Nncg==}
dependencies:
- '@unhead/schema': 1.0.18
+ hookable: 5.5.1
+ zhead: 2.0.4
dev: true
- /@unhead/schema/1.0.18:
- resolution: {integrity: sha512-LjNxwwQMZTD0b3LlB4/mmCZpO6HP7ZjK5sKuMpy7/+2O9HJO6TefxsDVrJVAitdUfm5Jej9cNEjnL2gJkc2uWg==}
+ /@unhead/shared/1.1.23:
+ resolution: {integrity: sha512-6uFEn/DRainxc3IE+RTMV6AK4Xi8osg7qAUAVMz3KpF0EoHzGbBjVBuSrkf7CnrE9Eg+/QYGLdwTvONJHCcYOA==}
dependencies:
- '@zhead/schema': 1.0.9
- hookable: 5.4.2
+ '@unhead/schema': 1.1.23
dev: true
- /@unhead/ssr/1.0.18:
- resolution: {integrity: sha512-In0bJSLAyN8DdCuNJaoOIrjsK40g904ELR/0Eue9VzyO0fe147dPGfYlwwUrZOqj0JzGtndiQCF/D6bjn76ovw==}
+ /@unhead/ssr/1.1.23:
+ resolution: {integrity: sha512-msxPjkHG2TtgTCRBFjTTTVHPOgGSmNtQCz3zjN1xxY1BRb7NdUN6Yure85qNt+yNUtcQ5C45NmJIxdNDjrJhlQ==}
dependencies:
- '@unhead/schema': 1.0.18
+ '@unhead/schema': 1.1.23
+ '@unhead/shared': 1.1.23
dev: true
- /@unhead/vue/1.0.18_vue@3.2.45:
- resolution: {integrity: sha512-VZ61a2pRtGXI9sj1aba5Qmm35veVvRDIE0Xsog3I0TfwavlwklZcg9bF2eT+GcDnsq1NxNO7uDyrb/+xNAzSxA==}
+ /@unhead/vue/1.1.23_vue@3.2.47:
+ resolution: {integrity: sha512-v693TmDYIZyVkZBW+YGyy4Zgl78gQZby84yXpok+E9tmqg2POQ9oG0ILdPNdlwLfWeSrhb8dTahWb68v608LdA==}
peerDependencies:
vue: '>=2.7 || >=3'
dependencies:
- '@unhead/schema': 1.0.18
- hookable: 5.4.2
- vue: 3.2.45
+ '@unhead/schema': 1.1.23
+ '@unhead/shared': 1.1.23
+ hookable: 5.5.1
+ unhead: 1.1.23
+ vue: 3.2.47
dev: true
/@vercel/nft/0.22.6:
@@ -3196,7 +3416,7 @@ packages:
dependencies:
'@mapbox/node-pre-gyp': 1.0.10
'@rollup/pluginutils': 4.2.1
- acorn: 8.8.1
+ acorn: 8.8.2
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
@@ -3210,117 +3430,76 @@ packages:
- supports-color
dev: true
- /@vitejs/plugin-vue-jsx/3.0.0_vite@4.0.4+vue@3.2.45:
+ /@vitejs/plugin-vue-jsx/3.0.0_vite@4.1.4+vue@3.2.47:
resolution: {integrity: sha512-vurkuzgac5SYuxd2HUZqAFAWGTF10diKBwJNbCvnWijNZfXd+7jMtqjPFbGt7idOJUn584fP1Ar9j/GN2jQ3Ew==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.0.0
vue: ^3.0.0
dependencies:
- '@babel/core': 7.20.5
- '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.5
- '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.20.5
- vite: 4.0.4_sass@1.53.0
- vue: 3.2.45
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.21.3
+ '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.21.3
+ vite: 4.1.4_sass@1.59.3
+ vue: 3.2.47
transitivePeerDependencies:
- supports-color
dev: true
- /@vitejs/plugin-vue/4.0.0_vite@4.0.4+vue@3.2.45:
+ /@vitejs/plugin-vue/4.0.0_vite@4.1.4+vue@3.2.47:
resolution: {integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.0.0
vue: ^3.2.25
dependencies:
- vite: 4.0.4_sass@1.53.0
- vue: 3.2.45
+ vite: 4.1.4_sass@1.59.3
+ vue: 3.2.47
dev: true
- /@vitest/expect/0.28.3:
- resolution: {integrity: sha512-dnxllhfln88DOvpAK1fuI7/xHwRgTgR4wdxHldPaoTaBu6Rh9zK5b//v/cjTkhOfNP/AJ8evbNO8H7c3biwd1g==}
+ /@vitest/expect/0.29.3:
+ resolution: {integrity: sha512-z/0JqBqqrdtrT/wzxNrWC76EpkOHdl+SvuNGxWulLaoluygntYyG5wJul5u/rQs5875zfFz/F+JaDf90SkLUIg==}
dependencies:
- '@vitest/spy': 0.28.3
- '@vitest/utils': 0.28.3
+ '@vitest/spy': 0.29.3
+ '@vitest/utils': 0.29.3
chai: 4.3.7
dev: true
- /@vitest/runner/0.28.3:
- resolution: {integrity: sha512-P0qYbATaemy1midOLkw7qf8jraJszCoEvjQOSlseiXZyEDaZTZ50J+lolz2hWiWv6RwDu1iNseL9XLsG0Jm2KQ==}
+ /@vitest/runner/0.29.3:
+ resolution: {integrity: sha512-XLi8ctbvOWhUWmuvBUSIBf8POEDH4zCh6bOuVxm/KGfARpgmVF1ku+vVNvyq85va+7qXxtl+MFmzyXQ2xzhAvw==}
dependencies:
- '@vitest/utils': 0.28.3
+ '@vitest/utils': 0.29.3
p-limit: 4.0.0
pathe: 1.1.0
dev: true
- /@vitest/spy/0.28.3:
- resolution: {integrity: sha512-jULA6suS6CCr9VZfr7/9x97pZ0hC55prnUNHNrg5/q16ARBY38RsjsfhuUXt6QOwvIN3BhSS0QqPzyh5Di8g6w==}
+ /@vitest/spy/0.29.3:
+ resolution: {integrity: sha512-LLpCb1oOCOZcBm0/Oxbr1DQTuKLRBsSIHyLYof7z4QVE8/v8NcZKdORjMUq645fcfX55+nLXwU/1AQ+c2rND+w==}
dependencies:
tinyspy: 1.0.2
dev: true
- /@vitest/utils/0.28.3:
- resolution: {integrity: sha512-YHiQEHQqXyIbhDqETOJUKx9/psybF7SFFVCNfOvap0FvyUqbzTSDCa3S5lL4C0CLXkwVZttz9xknDoyHMguFRQ==}
+ /@vitest/utils/0.29.3:
+ resolution: {integrity: sha512-hg4Ff8AM1GtUnLpUJlNMxrf9f4lZr/xRJjh3uJ0QFP+vjaW82HAxKrmeBmLnhc8Os2eRf+f+VBu4ts7TafPPkA==}
dependencies:
cli-truncate: 3.1.0
diff: 5.1.0
loupe: 2.3.6
- picocolors: 1.0.0
pretty-format: 27.5.1
dev: true
- /@volar/language-core/1.0.12:
- resolution: {integrity: sha512-I9wylkEq5Fhv4uIxXq4ys+GKVAxKY64DEw1nj8oP36xaOl80r6ogZ9V3BCKJp/npAlFCH7pAkUDSBkSo8v3Tfg==}
- dependencies:
- '@volar/source-map': 1.0.12
- '@vue/reactivity': 3.2.45
- muggle-string: 0.1.0
- dev: true
-
- /@volar/source-map/1.0.12:
- resolution: {integrity: sha512-5npjYmotdIIerchOn9QwGHM7LBNJLWAjPBMrZnvv1MbqTwAxu2H1+MNh/cvLeIcrzNSYui81RZsMaPKTRiiXyg==}
- dependencies:
- muggle-string: 0.1.0
- dev: true
-
- /@volar/typescript/1.0.12:
- resolution: {integrity: sha512-7PR4Fwg3EyuwmagodaGntKxDqzie5Ywiq7evx5UvNIY0BP3yXrCADxBMFYLJykb+ECSE+GbTClsyXTnJQ9xi1Q==}
- dependencies:
- '@volar/language-core': 1.0.12
- dev: true
-
- /@volar/vue-language-core/1.0.12:
- resolution: {integrity: sha512-2JnKRwTJZxAHwFiaQmp79GwyAzf2UPOSnAe6QfOCTQvQ79iNj/zdzDjSzogeuwkCgrG8GHgaMiuWZx4xIXgTIQ==}
- dependencies:
- '@volar/language-core': 1.0.12
- '@volar/source-map': 1.0.12
- '@vue/compiler-dom': 3.2.45
- '@vue/compiler-sfc': 3.2.45
- '@vue/reactivity': 3.2.45
- '@vue/shared': 3.2.45
- minimatch: 5.1.1
- vue-template-compiler: 2.7.14
- dev: true
-
- /@volar/vue-typescript/1.0.12:
- resolution: {integrity: sha512-MhdZmUlvl54w2rsPXEtwbX7dq1Dya7THFcDof7vNaH3PwBxqnDn8SZS1Yoxe3pENuAXNwQskAc2uP9R9LYe36g==}
- dependencies:
- '@volar/typescript': 1.0.12
- '@volar/vue-language-core': 1.0.12
- dev: true
-
/@vue/babel-helper-vue-transform-on/1.0.2:
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
dev: true
- /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.20.5:
+ /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.21.3:
resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==}
dependencies:
'@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.3
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
'@vue/babel-helper-vue-transform-on': 1.0.2
camelcase: 6.3.0
html-tags: 3.2.0
@@ -3330,132 +3509,120 @@ packages:
- supports-color
dev: true
- /@vue/compiler-core/3.2.45:
- resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==}
+ /@vue/compiler-core/3.2.47:
+ resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==}
dependencies:
- '@babel/parser': 7.20.5
- '@vue/shared': 3.2.45
+ '@babel/parser': 7.21.3
+ '@vue/shared': 3.2.47
estree-walker: 2.0.2
source-map: 0.6.1
dev: true
- /@vue/compiler-dom/3.2.45:
- resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==}
+ /@vue/compiler-dom/3.2.47:
+ resolution: {integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==}
dependencies:
- '@vue/compiler-core': 3.2.45
- '@vue/shared': 3.2.45
+ '@vue/compiler-core': 3.2.47
+ '@vue/shared': 3.2.47
dev: true
- /@vue/compiler-sfc/3.2.45:
- resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==}
+ /@vue/compiler-sfc/3.2.47:
+ resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==}
dependencies:
- '@babel/parser': 7.20.5
- '@vue/compiler-core': 3.2.45
- '@vue/compiler-dom': 3.2.45
- '@vue/compiler-ssr': 3.2.45
- '@vue/reactivity-transform': 3.2.45
- '@vue/shared': 3.2.45
+ '@babel/parser': 7.21.3
+ '@vue/compiler-core': 3.2.47
+ '@vue/compiler-dom': 3.2.47
+ '@vue/compiler-ssr': 3.2.47
+ '@vue/reactivity-transform': 3.2.47
+ '@vue/shared': 3.2.47
estree-walker: 2.0.2
magic-string: 0.25.9
- postcss: 8.4.14
+ postcss: 8.4.21
source-map: 0.6.1
dev: true
- /@vue/compiler-ssr/3.2.45:
- resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==}
+ /@vue/compiler-ssr/3.2.47:
+ resolution: {integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==}
dependencies:
- '@vue/compiler-dom': 3.2.45
- '@vue/shared': 3.2.45
+ '@vue/compiler-dom': 3.2.47
+ '@vue/shared': 3.2.47
dev: true
- /@vue/devtools-api/6.4.5:
- resolution: {integrity: sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==}
+ /@vue/devtools-api/6.5.0:
+ resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==}
dev: true
- /@vue/reactivity-transform/3.2.45:
- resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==}
+ /@vue/reactivity-transform/3.2.47:
+ resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==}
dependencies:
- '@babel/parser': 7.20.5
- '@vue/compiler-core': 3.2.45
- '@vue/shared': 3.2.45
+ '@babel/parser': 7.21.3
+ '@vue/compiler-core': 3.2.47
+ '@vue/shared': 3.2.47
estree-walker: 2.0.2
magic-string: 0.25.9
dev: true
- /@vue/reactivity/3.2.45:
- resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==}
+ /@vue/reactivity/3.2.47:
+ resolution: {integrity: sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==}
dependencies:
- '@vue/shared': 3.2.45
+ '@vue/shared': 3.2.47
dev: true
- /@vue/runtime-core/3.2.45:
- resolution: {integrity: sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==}
+ /@vue/runtime-core/3.2.47:
+ resolution: {integrity: sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==}
dependencies:
- '@vue/reactivity': 3.2.45
- '@vue/shared': 3.2.45
+ '@vue/reactivity': 3.2.47
+ '@vue/shared': 3.2.47
dev: true
- /@vue/runtime-dom/3.2.45:
- resolution: {integrity: sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==}
+ /@vue/runtime-dom/3.2.47:
+ resolution: {integrity: sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==}
dependencies:
- '@vue/runtime-core': 3.2.45
- '@vue/shared': 3.2.45
+ '@vue/runtime-core': 3.2.47
+ '@vue/shared': 3.2.47
csstype: 2.6.21
dev: true
- /@vue/server-renderer/3.2.45_vue@3.2.45:
- resolution: {integrity: sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==}
+ /@vue/server-renderer/3.2.47_vue@3.2.47:
+ resolution: {integrity: sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==}
peerDependencies:
- vue: 3.2.45
+ vue: 3.2.47
dependencies:
- '@vue/compiler-ssr': 3.2.45
- '@vue/shared': 3.2.45
- vue: 3.2.45
+ '@vue/compiler-ssr': 3.2.47
+ '@vue/shared': 3.2.47
+ vue: 3.2.47
dev: true
- /@vue/shared/3.2.45:
- resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==}
+ /@vue/shared/3.2.47:
+ resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==}
dev: true
- /@vueuse/core/9.11.1_vue@3.2.45:
- resolution: {integrity: sha512-E/cizD1w9ILkq4axYjZrXLkKaBfzloaby2n3NMjUfd6yI/jkfTVgc6iwy/Cw2e++Ld4LphGbO+3MhzizvwUslQ==}
+ /@vueuse/core/9.13.0_vue@3.2.47:
+ resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
dependencies:
'@types/web-bluetooth': 0.0.16
- '@vueuse/metadata': 9.11.1
- '@vueuse/shared': 9.11.1_vue@3.2.45
- vue-demi: 0.13.11_vue@3.2.45
+ '@vueuse/metadata': 9.13.0
+ '@vueuse/shared': 9.13.0_vue@3.2.47
+ vue-demi: 0.13.11_vue@3.2.47
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: true
- /@vueuse/head/1.0.23_vue@3.2.45:
- resolution: {integrity: sha512-CiC9VWYbvwAqjWDBJH4WfQfBk7NWMZpvmpvIUYsm3X+aa8QHMiDGzR+RFKZSUtykiCGnSZk97yIvo5eJBmSh8A==}
- peerDependencies:
- vue: '>=2.7 || >=3'
- dependencies:
- '@unhead/dom': 1.0.18
- '@unhead/schema': 1.0.18
- '@unhead/ssr': 1.0.18
- '@unhead/vue': 1.0.18_vue@3.2.45
- vue: 3.2.45
- dev: true
-
- /@vueuse/metadata/9.11.1:
- resolution: {integrity: sha512-ABjkrG+VXggNhjfGyw5e/sekxTZfXTwjrYXkkWQmQ7Biyv+Gq9UD6IDNfeGvQZEINI0Qzw6nfuO2UFCd3hlrxQ==}
+ /@vueuse/metadata/9.13.0:
+ resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
dev: true
- /@vueuse/nuxt/9.11.1_nuxt@3.1.1+vue@3.2.45:
- resolution: {integrity: sha512-hiiRzLgsH5nTAb2TChyFc6nykIyTB3MnCEhILg44Ug9ILC3vG/qnHnv3zRtIu4bXNOhDQN5shfnchgGPJFf8PA==}
+ /@vueuse/nuxt/9.13.0_nuxt@3.3.1+vue@3.2.47:
+ resolution: {integrity: sha512-JunH/w6nFIwCyaZ0s+pfrYFMfBzGfhkwmFPz7ogHFmb71Ty/5HINrYOAOZCXpN44X6QH6FiJq/wuLLdvYzqFUw==}
peerDependencies:
nuxt: ^3.0.0
dependencies:
- '@nuxt/kit': 3.1.1
- '@vueuse/core': 9.11.1_vue@3.2.45
- '@vueuse/metadata': 9.11.1
+ '@nuxt/kit': 3.3.1
+ '@vueuse/core': 9.13.0_vue@3.2.47
+ '@vueuse/metadata': 9.13.0
local-pkg: 0.4.3
- nuxt: 3.1.1_xsziujdgaekcyduxcggsaejfsa
- vue-demi: 0.13.11_vue@3.2.45
+ nuxt: 3.3.1_6ve2mgcmoerusihmx5fhibabvi
+ vue-demi: 0.13.11_vue@3.2.47
transitivePeerDependencies:
- '@vue/composition-api'
- rollup
@@ -3463,126 +3630,20 @@ packages:
- vue
dev: true
- /@vueuse/shared/9.11.1_vue@3.2.45:
- resolution: {integrity: sha512-UTZYGAjT96hWn4buf4wstZbeheBVNcKPQuej6qpoSkjF1atdaeCD6kqm9uGL2waHfisSgH9mq0qCRiBOk5C/2w==}
+ /@vueuse/shared/9.13.0_vue@3.2.47:
+ resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
dependencies:
- vue-demi: 0.13.11_vue@3.2.45
+ vue-demi: 0.13.11_vue@3.2.47
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: true
- /@webassemblyjs/ast/1.11.1:
- resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
- dependencies:
- '@webassemblyjs/helper-numbers': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- dev: true
-
- /@webassemblyjs/floating-point-hex-parser/1.11.1:
- resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
- dev: true
-
- /@webassemblyjs/helper-api-error/1.11.1:
- resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
- dev: true
-
- /@webassemblyjs/helper-buffer/1.11.1:
- resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
- dev: true
-
- /@webassemblyjs/helper-numbers/1.11.1:
- resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webassemblyjs/helper-wasm-bytecode/1.11.1:
- resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
- dev: true
-
- /@webassemblyjs/helper-wasm-section/1.11.1:
- resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- dev: true
-
- /@webassemblyjs/ieee754/1.11.1:
- resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
- dependencies:
- '@xtuc/ieee754': 1.2.0
- dev: true
-
- /@webassemblyjs/leb128/1.11.1:
- resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
- dependencies:
- '@xtuc/long': 4.2.2
- dev: true
-
- /@webassemblyjs/utf8/1.11.1:
- resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
- dev: true
-
- /@webassemblyjs/wasm-edit/1.11.1:
- resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/helper-wasm-section': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-opt': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- '@webassemblyjs/wast-printer': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-gen/1.11.1:
- resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-opt/1.11.1:
- resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- dev: true
-
- /@webassemblyjs/wasm-parser/1.11.1:
- resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
- dev: true
-
- /@webassemblyjs/wast-printer/1.11.1:
- resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@xtuc/long': 4.2.2
- dev: true
-
/@windicss/config/1.8.8:
resolution: {integrity: sha512-kNas/zMkwsDFMcJPmHoPDJlQi1MHvYwx8BSxo9JKcbCW7Gaj8Rg2CnEImX5YdT+ZcFQqQ+kUn0Vi/ScsAxhGEw==}
dependencies:
debug: 4.3.4
- jiti: 1.16.2
+ jiti: 1.18.2
windicss: 3.5.6
transitivePeerDependencies:
- supports-color
@@ -3602,20 +3663,8 @@ packages:
- supports-color
dev: true
- /@xtuc/ieee754/1.2.0:
- resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- dev: true
-
- /@xtuc/long/4.2.2:
- resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- dev: true
-
- /@zeit/schemas/2.6.0:
- resolution: {integrity: sha512-uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg==}
- dev: true
-
- /@zhead/schema/1.0.9:
- resolution: {integrity: sha512-MBubVXXEJX86ZBL6CDK0rYi1mC82zuben1MwwAEe98EFN1w4Oy0l2roJaM51MwQEvZ+WTi6o4lCxUShtLQJk8A==}
+ /@zeit/schemas/2.29.0:
+ resolution: {integrity: sha512-g5QiLIfbg3pLuYUJPlisNKY+epQJTcMDsOnVNkscrDP1oi7vmJnzOANYJI/1pZcVJ6umUkBv3aFtlg1UvUHGzA==}
dev: true
/JSONStream/1.3.5:
@@ -3638,14 +3687,6 @@ packages:
negotiator: 0.6.3
dev: true
- /acorn-import-assertions/1.8.0_acorn@8.8.1:
- resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
- peerDependencies:
- acorn: ^8
- dependencies:
- acorn: 8.8.1
- dev: true
-
/acorn-jsx/5.3.2_acorn@7.4.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -3654,12 +3695,12 @@ packages:
acorn: 7.4.1
dev: true
- /acorn-jsx/5.3.2_acorn@8.8.1:
+ /acorn-jsx/5.3.2_acorn@8.8.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.8.1
+ acorn: 8.8.2
dev: true
/acorn-walk/8.2.0:
@@ -3673,8 +3714,8 @@ packages:
hasBin: true
dev: true
- /acorn/8.8.1:
- resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==}
+ /acorn/8.8.2:
+ resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
@@ -3696,14 +3737,6 @@ packages:
indent-string: 4.0.0
dev: true
- /ajv-keywords/3.5.2_ajv@6.12.6:
- resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
- peerDependencies:
- ajv: ^6.9.1
- dependencies:
- ajv: 6.12.6
- dev: true
-
/ajv/6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
@@ -3713,6 +3746,15 @@ packages:
uri-js: 4.4.1
dev: true
+ /ajv/8.11.0:
+ resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+ dev: true
+
/ajv/8.11.2:
resolution: {integrity: sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==}
dependencies:
@@ -3829,14 +3871,14 @@ packages:
readable-stream: 3.6.0
dev: true
- /arg/2.0.0:
- resolution: {integrity: sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w==}
- dev: true
-
/arg/4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
dev: true
+ /arg/5.0.2:
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
+ dev: true
+
/argparse/2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
@@ -3852,7 +3894,7 @@ packages:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.5
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.2.0
is-string: 1.0.7
dev: true
@@ -3893,15 +3935,15 @@ packages:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
dev: true
- /autoprefixer/10.4.13_postcss@8.4.21:
- resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==}
+ /autoprefixer/10.4.14_postcss@8.4.21:
+ resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.21.4
- caniuse-lite: 1.0.30001439
+ browserslist: 4.21.5
+ caniuse-lite: 1.0.30001468
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -3909,38 +3951,43 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.5:
+ /available-typed-arrays/1.0.5:
+ resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.3:
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.20.5
- '@babel/core': 7.20.5
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5
+ '@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-corejs3/0.6.0_@babel+core@7.20.5:
+ /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.20.5
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
core-js-compat: 3.26.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.5:
+ /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.20.5
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -3988,22 +4035,26 @@ packages:
readable-stream: 3.6.0
dev: true
+ /blob-to-buffer/1.2.9:
+ resolution: {integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==}
+ dev: true
+
/boolbase/1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
- /boxen/5.1.2:
- resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
- engines: {node: '>=10'}
+ /boxen/7.0.0:
+ resolution: {integrity: sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg==}
+ engines: {node: '>=14.16'}
dependencies:
ansi-align: 3.0.1
- camelcase: 6.3.0
- chalk: 4.1.2
- cli-boxes: 2.2.1
- string-width: 4.2.3
- type-fest: 0.20.2
- widest-line: 3.1.0
- wrap-ansi: 7.0.0
+ camelcase: 7.0.1
+ chalk: 5.2.0
+ cli-boxes: 3.0.0
+ string-width: 5.1.2
+ type-fest: 2.19.0
+ widest-line: 4.0.1
+ wrap-ansi: 8.0.1
dev: true
/brace-expansion/1.1.11:
@@ -4026,6 +4077,12 @@ packages:
fill-range: 7.0.1
dev: true
+ /brotli/1.3.3:
+ resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==}
+ dependencies:
+ base64-js: 1.5.1
+ dev: true
+
/browserslist/4.21.4:
resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -4037,6 +4094,17 @@ packages:
update-browserslist-db: 1.0.10_browserslist@4.21.4
dev: true
+ /browserslist/4.21.5:
+ resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001468
+ electron-to-chromium: 1.4.284
+ node-releases: 2.0.10
+ update-browserslist-db: 1.0.10_browserslist@4.21.5
+ dev: true
+
/buffer-crc32/0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
dev: true
@@ -4075,17 +4143,17 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /c12/1.1.0:
- resolution: {integrity: sha512-9KRFWEng+TH8sGST4NNdiKzZGw1Z1CHnPGAmNqAyVP7suluROmBjD8hsiR34f94DdlrvtGvvmiGDsoFXlCBWIw==}
+ /c12/1.2.0:
+ resolution: {integrity: sha512-CMznkE0LpNEuD8ILp5QvsQVP+YvcpJnrI/zFeFnosU2PyDtx1wT7tXfZ8S3Tl3l9MTTXbKeuhDYKwgvnAPOx3w==}
dependencies:
- defu: 6.1.1
+ defu: 6.1.2
dotenv: 16.0.3
- giget: 1.0.0
- jiti: 1.16.0
- mlly: 1.0.0
- pathe: 1.0.0
- pkg-types: 1.0.1
- rc9: 2.0.0
+ giget: 1.1.2
+ jiti: 1.18.2
+ mlly: 1.2.0
+ pathe: 1.1.0
+ pkg-types: 1.0.2
+ rc9: 2.0.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -4126,11 +4194,16 @@ packages:
engines: {node: '>=10'}
dev: true
+ /camelcase/7.0.1:
+ resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
+ engines: {node: '>=14.16'}
+ dev: true
+
/caniuse-api/3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.21.4
- caniuse-lite: 1.0.30001439
+ browserslist: 4.21.5
+ caniuse-lite: 1.0.30001468
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: true
@@ -4139,6 +4212,10 @@ packages:
resolution: {integrity: sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==}
dev: true
+ /caniuse-lite/1.0.30001468:
+ resolution: {integrity: sha512-zgAo8D5kbOyUcRAgSmgyuvBkjrGk5CGYG5TYgFdpQv+ywcyEpo1LOWoG8YmoflGnh+V+UsNuKYedsoYs0hzV5A==}
+ dev: true
+
/ccount/2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
dev: true
@@ -4156,13 +4233,11 @@ packages:
type-detect: 4.0.8
dev: true
- /chalk/2.4.1:
- resolution: {integrity: sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==}
- engines: {node: '>=4'}
+ /chalk-template/0.4.0:
+ resolution: {integrity: sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==}
+ engines: {node: '>=12'}
dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
+ chalk: 4.1.2
dev: true
/chalk/2.4.2:
@@ -4182,6 +4257,11 @@ packages:
supports-color: 7.2.0
dev: true
+ /chalk/5.0.1:
+ resolution: {integrity: sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ dev: true
+
/chalk/5.2.0:
resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
@@ -4255,18 +4335,13 @@ packages:
engines: {node: '>=10'}
dev: true
- /chrome-trace-event/1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
- engines: {node: '>=6.0'}
- dev: true
-
/ci-info/3.7.0:
resolution: {integrity: sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==}
engines: {node: '>=8'}
dev: true
- /ci-info/3.7.1:
- resolution: {integrity: sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==}
+ /ci-info/3.8.0:
+ resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
dev: true
@@ -4282,9 +4357,13 @@ packages:
engines: {node: '>=6'}
dev: true
- /cli-boxes/2.2.1:
- resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
- engines: {node: '>=6'}
+ /clear/0.1.0:
+ resolution: {integrity: sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==}
+ dev: true
+
+ /cli-boxes/3.0.0:
+ resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
+ engines: {node: '>=10'}
dev: true
/cli-cursor/3.1.0:
@@ -4327,15 +4406,6 @@ packages:
engines: {node: '>= 12'}
dev: true
- /clipboardy/2.3.0:
- resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==}
- engines: {node: '>=8'}
- dependencies:
- arch: 2.2.0
- execa: 1.0.0
- is-wsl: 2.2.0
- dev: true
-
/clipboardy/3.0.0:
resolution: {integrity: sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -4359,6 +4429,11 @@ packages:
engines: {node: '>=0.8'}
dev: true
+ /clone/2.1.2:
+ resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
+ engines: {node: '>=0.8'}
+ dev: true
+
/cluster-key-slot/1.1.2:
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
engines: {node: '>=0.10.0'}
@@ -4402,6 +4477,11 @@ packages:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
dev: true
+ /commander/10.0.0:
+ resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==}
+ engines: {node: '>=14'}
+ dev: true
+
/commander/2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
dev: true
@@ -4416,11 +4496,6 @@ packages:
engines: {node: '>= 12'}
dev: true
- /commander/9.4.1:
- resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==}
- engines: {node: ^12.20.0 || >=14}
- dev: true
-
/commondir/1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
dev: true
@@ -4449,8 +4524,8 @@ packages:
mime-db: 1.52.0
dev: true
- /compression/1.7.3:
- resolution: {integrity: sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==}
+ /compression/1.7.4:
+ resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
dependencies:
accepts: 1.3.8
@@ -4465,7 +4540,7 @@ packages:
dev: true
/concat-map/0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
dev: true
/connect/3.7.0:
@@ -4541,7 +4616,7 @@ packages:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: true
- /cosmiconfig-typescript-loader/4.2.0_rlet5slz3ltveuzxg6noqqckla:
+ /cosmiconfig-typescript-loader/4.2.0_5fuam63wbrdkay73qouwsoo2im:
resolution: {integrity: sha512-NkANeMnaHrlaSSlpKGyvn2R4rqUDeE/9E5YHx+b4nwo0R8dZyAqcih8/gxpCZvqWP9Vf6xuLpMSzSgdVEIM78g==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
@@ -4550,21 +4625,20 @@ packages:
ts-node: '>=10'
typescript: '>=3'
dependencies:
- '@types/node': 14.18.34
- cosmiconfig: 7.1.0
- ts-node: 10.9.1_ewcgsh5jhk3o7xvttutb4bhery
+ '@types/node': 18.11.12
+ cosmiconfig: 8.1.3
+ ts-node: 10.9.1_r65g46xrm45gbuklnvp6xevc2y
typescript: 4.9.4
dev: true
- /cosmiconfig/7.1.0:
- resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
- engines: {node: '>=10'}
+ /cosmiconfig/8.1.3:
+ resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==}
+ engines: {node: '>=14'}
dependencies:
- '@types/parse-json': 4.0.0
import-fresh: 3.3.0
+ js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- yaml: 1.10.2
dev: true
/crc-32/1.2.2:
@@ -4585,15 +4659,23 @@ packages:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
dev: true
- /cross-spawn/6.0.5:
- resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
- engines: {node: '>=4.8'}
+ /critters/0.0.16:
+ resolution: {integrity: sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==}
dependencies:
- nice-try: 1.0.5
- path-key: 2.0.1
- semver: 5.7.1
- shebang-command: 1.2.0
- which: 1.3.1
+ chalk: 4.1.2
+ css-select: 4.3.0
+ parse5: 6.0.1
+ parse5-htmlparser2-tree-adapter: 6.0.1
+ postcss: 8.4.21
+ pretty-bytes: 5.6.0
+ dev: true
+
+ /cross-fetch/3.1.5:
+ resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
+ dependencies:
+ node-fetch: 2.6.7
+ transitivePeerDependencies:
+ - encoding
dev: true
/cross-spawn/7.0.3:
@@ -4653,8 +4735,8 @@ packages:
hasBin: true
dev: true
- /cssnano-preset-default/5.2.13_postcss@8.4.21:
- resolution: {integrity: sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==}
+ /cssnano-preset-default/5.2.14_postcss@8.4.21:
+ resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
@@ -4663,14 +4745,14 @@ packages:
cssnano-utils: 3.1.0_postcss@8.4.21
postcss: 8.4.21
postcss-calc: 8.2.4_postcss@8.4.21
- postcss-colormin: 5.3.0_postcss@8.4.21
+ postcss-colormin: 5.3.1_postcss@8.4.21
postcss-convert-values: 5.1.3_postcss@8.4.21
postcss-discard-comments: 5.1.2_postcss@8.4.21
postcss-discard-duplicates: 5.1.0_postcss@8.4.21
postcss-discard-empty: 5.1.1_postcss@8.4.21
postcss-discard-overridden: 5.1.0_postcss@8.4.21
postcss-merge-longhand: 5.1.7_postcss@8.4.21
- postcss-merge-rules: 5.1.3_postcss@8.4.21
+ postcss-merge-rules: 5.1.4_postcss@8.4.21
postcss-minify-font-values: 5.1.0_postcss@8.4.21
postcss-minify-gradients: 5.1.1_postcss@8.4.21
postcss-minify-params: 5.1.4_postcss@8.4.21
@@ -4685,7 +4767,7 @@ packages:
postcss-normalize-url: 5.1.0_postcss@8.4.21
postcss-normalize-whitespace: 5.1.1_postcss@8.4.21
postcss-ordered-values: 5.1.3_postcss@8.4.21
- postcss-reduce-initial: 5.1.1_postcss@8.4.21
+ postcss-reduce-initial: 5.1.2_postcss@8.4.21
postcss-reduce-transforms: 5.1.0_postcss@8.4.21
postcss-svgo: 5.1.0_postcss@8.4.21
postcss-unique-selectors: 5.1.1_postcss@8.4.21
@@ -4700,14 +4782,14 @@ packages:
postcss: 8.4.21
dev: true
- /cssnano/5.1.14_postcss@8.4.21:
- resolution: {integrity: sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==}
+ /cssnano/5.1.15_postcss@8.4.21:
+ resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.13_postcss@8.4.21
- lilconfig: 2.0.6
+ cssnano-preset-default: 5.2.14_postcss@8.4.21
+ lilconfig: 2.1.0
postcss: 8.4.21
yaml: 1.10.2
dev: true
@@ -4737,10 +4819,6 @@ packages:
engines: {node: '>= 12'}
dev: true
- /de-indent/1.0.2:
- resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
- dev: true
-
/debug/2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
@@ -4807,6 +4885,28 @@ packages:
type-detect: 4.0.8
dev: true
+ /deep-equal/2.2.0:
+ resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
+ dependencies:
+ call-bind: 1.0.2
+ es-get-iterator: 1.1.3
+ get-intrinsic: 1.1.3
+ is-arguments: 1.1.1
+ is-array-buffer: 3.0.2
+ is-date-object: 1.0.5
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ isarray: 2.0.5
+ object-is: 1.1.5
+ object-keys: 1.1.1
+ object.assign: 4.1.4
+ regexp.prototype.flags: 1.4.3
+ side-channel: 1.0.4
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.1
+ which-typed-array: 1.1.9
+ dev: true
+
/deep-extend/0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
@@ -4840,10 +4940,6 @@ packages:
object-keys: 1.1.1
dev: true
- /defu/6.1.1:
- resolution: {integrity: sha512-aA964RUCsBt0FGoNIlA3uFgo2hO+WWC0fiC6DBps/0SFzkKcYoM/3CzVLIa5xSsrFjdioMdYgAIbwo80qp2MoA==}
- dev: true
-
/defu/6.1.2:
resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
dev: true
@@ -4885,6 +4981,10 @@ packages:
engines: {node: '>=8'}
dev: true
+ /dfa/1.2.0:
+ resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==}
+ dev: true
+
/diff/4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
@@ -5029,13 +5129,13 @@ packages:
once: 1.4.0
dev: true
- /engine.io-client/6.2.3:
- resolution: {integrity: sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==}
+ /engine.io-client/6.4.0:
+ resolution: {integrity: sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==}
dependencies:
'@socket.io/component-emitter': 3.1.0
debug: 4.3.4
engine.io-parser: 5.0.4
- ws: 8.2.3
+ ws: 8.11.0
xmlhttprequest-ssl: 2.0.0
transitivePeerDependencies:
- bufferutil
@@ -5095,20 +5195,20 @@ packages:
es-to-primitive: 1.2.1
function-bind: 1.1.1
function.prototype.name: 1.1.5
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.2.0
get-symbol-description: 1.0.0
gopd: 1.0.1
has: 1.0.3
has-property-descriptors: 1.0.0
has-symbols: 1.0.3
- internal-slot: 1.0.3
+ internal-slot: 1.0.5
is-callable: 1.2.7
is-negative-zero: 2.0.2
is-regex: 1.1.4
is-shared-array-buffer: 1.0.2
is-string: 1.0.7
is-weakref: 1.0.2
- object-inspect: 1.12.2
+ object-inspect: 1.12.3
object-keys: 1.1.1
object.assign: 4.1.4
regexp.prototype.flags: 1.4.3
@@ -5118,8 +5218,18 @@ packages:
unbox-primitive: 1.0.2
dev: true
- /es-module-lexer/0.9.3:
- resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
+ /es-get-iterator/1.1.3:
+ resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.1.3
+ has-symbols: 1.0.3
+ is-arguments: 1.1.1
+ is-map: 2.0.2
+ is-set: 2.0.2
+ is-string: 1.0.7
+ isarray: 2.0.5
+ stop-iteration-iterator: 1.0.0
dev: true
/es-shim-unscopables/1.0.0:
@@ -5137,215 +5247,6 @@ packages:
is-symbol: 1.0.4
dev: true
- /esbuild-android-64/0.14.54:
- resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-android-arm64/0.14.54:
- resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-darwin-64/0.14.54:
- resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-darwin-arm64/0.14.54:
- resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-freebsd-64/0.14.54:
- resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-freebsd-arm64/0.14.54:
- resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-32/0.14.54:
- resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-64/0.14.54:
- resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-arm/0.14.54:
- resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-arm64/0.14.54:
- resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-mips64le/0.14.54:
- resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-ppc64le/0.14.54:
- resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-riscv64/0.14.54:
- resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-linux-s390x/0.14.54:
- resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-netbsd-64/0.14.54:
- resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-openbsd-64/0.14.54:
- resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-sunos-64/0.14.54:
- resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-32/0.14.54:
- resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-64/0.14.54:
- resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild-windows-arm64/0.14.54:
- resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /esbuild/0.14.54:
- resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/linux-loong64': 0.14.54
- esbuild-android-64: 0.14.54
- esbuild-android-arm64: 0.14.54
- esbuild-darwin-64: 0.14.54
- esbuild-darwin-arm64: 0.14.54
- esbuild-freebsd-64: 0.14.54
- esbuild-freebsd-arm64: 0.14.54
- esbuild-linux-32: 0.14.54
- esbuild-linux-64: 0.14.54
- esbuild-linux-arm: 0.14.54
- esbuild-linux-arm64: 0.14.54
- esbuild-linux-mips64le: 0.14.54
- esbuild-linux-ppc64le: 0.14.54
- esbuild-linux-riscv64: 0.14.54
- esbuild-linux-s390x: 0.14.54
- esbuild-netbsd-64: 0.14.54
- esbuild-openbsd-64: 0.14.54
- esbuild-sunos-64: 0.14.54
- esbuild-windows-32: 0.14.54
- esbuild-windows-64: 0.14.54
- esbuild-windows-arm64: 0.14.54
- dev: true
-
/esbuild/0.16.17:
resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==}
engines: {node: '>=12'}
@@ -5376,6 +5277,36 @@ packages:
'@esbuild/win32-x64': 0.16.17
dev: true
+ /esbuild/0.17.12:
+ resolution: {integrity: sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/android-arm': 0.17.12
+ '@esbuild/android-arm64': 0.17.12
+ '@esbuild/android-x64': 0.17.12
+ '@esbuild/darwin-arm64': 0.17.12
+ '@esbuild/darwin-x64': 0.17.12
+ '@esbuild/freebsd-arm64': 0.17.12
+ '@esbuild/freebsd-x64': 0.17.12
+ '@esbuild/linux-arm': 0.17.12
+ '@esbuild/linux-arm64': 0.17.12
+ '@esbuild/linux-ia32': 0.17.12
+ '@esbuild/linux-loong64': 0.17.12
+ '@esbuild/linux-mips64el': 0.17.12
+ '@esbuild/linux-ppc64': 0.17.12
+ '@esbuild/linux-riscv64': 0.17.12
+ '@esbuild/linux-s390x': 0.17.12
+ '@esbuild/linux-x64': 0.17.12
+ '@esbuild/netbsd-x64': 0.17.12
+ '@esbuild/openbsd-x64': 0.17.12
+ '@esbuild/sunos-x64': 0.17.12
+ '@esbuild/win32-arm64': 0.17.12
+ '@esbuild/win32-ia32': 0.17.12
+ '@esbuild/win32-x64': 0.17.12
+ dev: true
+
/esbuild/0.17.5:
resolution: {integrity: sha512-Bu6WLCc9NMsNoMJUjGl3yBzTjVLXdysMltxQWiLAypP+/vQrf+3L1Xe8fCXzxaECus2cEJ9M7pk4yKatEwQMqQ==}
engines: {node: '>=12'}
@@ -5430,16 +5361,16 @@ packages:
engines: {node: '>=12'}
dev: true
- /eslint-config-prettier/8.5.0_eslint@8.32.0:
- resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
+ /eslint-config-prettier/8.7.0_eslint@8.36.0:
+ resolution: {integrity: sha512-HHVXLSlVUhMSmyW4ZzEuvjpwqamgmlfkutD53cYXLikh4pt/modINRcCIApJ84czDxM4GZInwUrromsDdTImTA==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.32.0
+ eslint: 8.36.0
dev: true
- /eslint-config-standard/17.0.0_aknt3kx5mck5jnsactbk5g4gdy:
+ /eslint-config-standard/17.0.0_xxslxvx2bog7su3vyefgaw5cfq:
resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==}
peerDependencies:
eslint: ^8.0.1
@@ -5447,10 +5378,10 @@ packages:
eslint-plugin-n: ^15.0.0
eslint-plugin-promise: ^6.0.0
dependencies:
- eslint: 8.32.0
- eslint-plugin-import: 2.26.0_eslint@8.32.0
- eslint-plugin-n: 15.6.0_eslint@8.32.0
- eslint-plugin-promise: 6.1.1_eslint@8.32.0
+ eslint: 8.36.0
+ eslint-plugin-import: 2.26.0_eslint@8.36.0
+ eslint-plugin-n: 15.6.0_eslint@8.36.0
+ eslint-plugin-promise: 6.1.1_eslint@8.36.0
dev: true
/eslint-import-resolver-node/0.3.6:
@@ -5462,7 +5393,7 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript/3.5.2_kornzrmzxylufiu5zotgc4cisa:
+ /eslint-import-resolver-typescript/3.5.2_6efblkktgpzjjbdhcug3twoi7q:
resolution: {integrity: sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -5471,10 +5402,10 @@ packages:
dependencies:
debug: 4.3.4
enhanced-resolve: 5.12.0
- eslint: 8.32.0
- eslint-plugin-import: 2.26.0_4kfxr3eudyefu6ojtf45erd37a
+ eslint: 8.36.0
+ eslint-plugin-import: 2.26.0_ij73nhtc7gwthe5jk23gpdiq3i
get-tsconfig: 4.2.0
- globby: 13.1.2
+ globby: 13.1.3
is-core-module: 2.11.0
is-glob: 4.0.3
synckit: 0.8.4
@@ -5482,7 +5413,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.7.4_7gr2yud7moko5ggdmscvhh4rd4:
+ /eslint-module-utils/2.7.4_a4o47dlhfqoxckm6b7q3t3e3ji:
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -5504,13 +5435,13 @@ packages:
optional: true
dependencies:
debug: 3.2.7
- eslint: 8.32.0
+ eslint: 8.36.0
eslint-import-resolver-node: 0.3.6
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-module-utils/2.7.4_pmzxb34k2k7gpfiiillnu7xpvi:
+ /eslint-module-utils/2.7.4_thccswt6aiy5jae5ccc5hrwngy:
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -5531,38 +5462,38 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.46.0_7uibuqfxkfaozanbtbziikiqje
+ '@typescript-eslint/parser': 5.46.0_j4766f7ecgqbon3u7zlxn5zszu
debug: 3.2.7
- eslint: 8.32.0
+ eslint: 8.36.0
eslint-import-resolver-node: 0.3.6
- eslint-import-resolver-typescript: 3.5.2_kornzrmzxylufiu5zotgc4cisa
+ eslint-import-resolver-typescript: 3.5.2_6efblkktgpzjjbdhcug3twoi7q
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-es/3.0.1_eslint@8.32.0:
+ /eslint-plugin-es/3.0.1_eslint@8.36.0:
resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==}
engines: {node: '>=8.10.0'}
peerDependencies:
eslint: '>=4.19.1'
dependencies:
- eslint: 8.32.0
+ eslint: 8.36.0
eslint-utils: 2.1.0
regexpp: 3.2.0
dev: true
- /eslint-plugin-es/4.1.0_eslint@8.32.0:
+ /eslint-plugin-es/4.1.0_eslint@8.36.0:
resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==}
engines: {node: '>=8.10.0'}
peerDependencies:
eslint: '>=4.19.1'
dependencies:
- eslint: 8.32.0
+ eslint: 8.36.0
eslint-utils: 2.1.0
regexpp: 3.2.0
dev: true
- /eslint-plugin-import/2.26.0_4kfxr3eudyefu6ojtf45erd37a:
+ /eslint-plugin-import/2.26.0_eslint@8.36.0:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -5572,14 +5503,13 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.46.0_7uibuqfxkfaozanbtbziikiqje
array-includes: 3.1.6
array.prototype.flat: 1.3.1
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.32.0
+ eslint: 8.36.0
eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.4_pmzxb34k2k7gpfiiillnu7xpvi
+ eslint-module-utils: 2.7.4_a4o47dlhfqoxckm6b7q3t3e3ji
has: 1.0.3
is-core-module: 2.11.0
is-glob: 4.0.3
@@ -5593,7 +5523,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-import/2.26.0_eslint@8.32.0:
+ /eslint-plugin-import/2.26.0_ij73nhtc7gwthe5jk23gpdiq3i:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -5603,13 +5533,14 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
+ '@typescript-eslint/parser': 5.46.0_j4766f7ecgqbon3u7zlxn5zszu
array-includes: 3.1.6
array.prototype.flat: 1.3.1
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.32.0
+ eslint: 8.36.0
eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.4_7gr2yud7moko5ggdmscvhh4rd4
+ eslint-module-utils: 2.7.4_thccswt6aiy5jae5ccc5hrwngy
has: 1.0.3
is-core-module: 2.11.0
is-glob: 4.0.3
@@ -5623,50 +5554,50 @@ packages:
- supports-color
dev: true
- /eslint-plugin-n/15.6.0_eslint@8.32.0:
+ /eslint-plugin-n/15.6.0_eslint@8.36.0:
resolution: {integrity: sha512-Hd/F7wz4Mj44Jp0H6Jtty13NcE69GNTY0rVlgTIj1XBnGGVI6UTdDrpE6vqu3AHo07bygq/N+7OH/lgz1emUJw==}
engines: {node: '>=12.22.0'}
peerDependencies:
eslint: '>=7.0.0'
dependencies:
builtins: 5.0.1
- eslint: 8.32.0
- eslint-plugin-es: 4.1.0_eslint@8.32.0
- eslint-utils: 3.0.0_eslint@8.32.0
- ignore: 5.2.1
+ eslint: 8.36.0
+ eslint-plugin-es: 4.1.0_eslint@8.36.0
+ eslint-utils: 3.0.0_eslint@8.36.0
+ ignore: 5.2.4
is-core-module: 2.11.0
minimatch: 3.1.2
resolve: 1.22.1
semver: 7.3.8
dev: true
- /eslint-plugin-node/11.1.0_eslint@8.32.0:
+ /eslint-plugin-node/11.1.0_eslint@8.36.0:
resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
engines: {node: '>=8.10.0'}
peerDependencies:
eslint: '>=5.16.0'
dependencies:
- eslint: 8.32.0
- eslint-plugin-es: 3.0.1_eslint@8.32.0
+ eslint: 8.36.0
+ eslint-plugin-es: 3.0.1_eslint@8.36.0
eslint-utils: 2.1.0
- ignore: 5.2.1
+ ignore: 5.2.4
minimatch: 3.1.2
resolve: 1.22.1
semver: 6.3.0
dev: true
- /eslint-plugin-nuxt/3.2.0_eslint@8.32.0:
- resolution: {integrity: sha512-SWpmJALwagdrlMooajFX9IFxFEKdBxD+e4NFOVw9FGc22HQpNKdiljRHchS/3O5e2R7sPZYv8xdCtoordqIXFQ==}
+ /eslint-plugin-nuxt/4.0.0_eslint@8.36.0:
+ resolution: {integrity: sha512-v3Vwdk8YKe52bAz8eSIDqQuTtfL/T1r9dSl1uhC5SyR5pgLxgKkQdxXVf/Bf6Ax7uyd9rHqiAuYVdqqDb7ILdA==}
dependencies:
- eslint-plugin-vue: 8.7.1_eslint@8.32.0
+ eslint-plugin-vue: 9.8.0_eslint@8.36.0
semver: 7.3.8
- vue-eslint-parser: 8.3.0_eslint@8.32.0
+ vue-eslint-parser: 9.1.0_eslint@8.36.0
transitivePeerDependencies:
- eslint
- supports-color
dev: true
- /eslint-plugin-prettier/4.2.1_abmlxqmedhmmgoja6jkvoftkhm:
+ /eslint-plugin-prettier/4.2.1_eqzx3hpkgx5nnvxls3azrcc7dm:
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5677,22 +5608,22 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.32.0
- eslint-config-prettier: 8.5.0_eslint@8.32.0
- prettier: 2.8.1
+ eslint: 8.36.0
+ eslint-config-prettier: 8.7.0_eslint@8.36.0
+ prettier: 2.8.4
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-promise/6.1.1_eslint@8.32.0:
+ /eslint-plugin-promise/6.1.1_eslint@8.36.0:
resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- eslint: 8.32.0
+ eslint: 8.36.0
dev: true
- /eslint-plugin-unicorn/44.0.2_eslint@8.32.0:
+ /eslint-plugin-unicorn/44.0.2_eslint@8.36.0:
resolution: {integrity: sha512-GLIDX1wmeEqpGaKcnMcqRvMVsoabeF0Ton0EX4Th5u6Kmf7RM9WBl705AXFEsns56ESkEs0uyelLuUTvz9Tr0w==}
engines: {node: '>=14.18'}
peerDependencies:
@@ -5701,50 +5632,33 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
ci-info: 3.7.0
clean-regexp: 1.0.0
- eslint: 8.32.0
- eslint-utils: 3.0.0_eslint@8.32.0
- esquery: 1.4.0
- indent-string: 4.0.0
- is-builtin-module: 3.2.0
- lodash: 4.17.21
- pluralize: 8.0.0
- read-pkg-up: 7.0.1
- regexp-tree: 0.1.24
- safe-regex: 2.1.1
- semver: 7.3.8
- strip-indent: 3.0.0
- dev: true
-
- /eslint-plugin-vue/8.7.1_eslint@8.32.0:
- resolution: {integrity: sha512-28sbtm4l4cOzoO1LtzQPxfxhQABararUb1JtqusQqObJpWX2e/gmVyeYVfepizPFne0Q5cILkYGiBoV36L12Wg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
- dependencies:
- eslint: 8.32.0
- eslint-utils: 3.0.0_eslint@8.32.0
- natural-compare: 1.4.0
- nth-check: 2.1.1
- postcss-selector-parser: 6.0.11
+ eslint: 8.36.0
+ eslint-utils: 3.0.0_eslint@8.36.0
+ esquery: 1.4.0
+ indent-string: 4.0.0
+ is-builtin-module: 3.2.0
+ lodash: 4.17.21
+ pluralize: 8.0.0
+ read-pkg-up: 7.0.1
+ regexp-tree: 0.1.24
+ safe-regex: 2.1.1
semver: 7.3.8
- vue-eslint-parser: 8.3.0_eslint@8.32.0
- transitivePeerDependencies:
- - supports-color
+ strip-indent: 3.0.0
dev: true
- /eslint-plugin-vue/9.8.0_eslint@8.32.0:
+ /eslint-plugin-vue/9.8.0_eslint@8.36.0:
resolution: {integrity: sha512-E/AXwcTzunyzM83C2QqDHxepMzvI2y6x+mmeYHbVDQlKFqmKYvRrhaVixEeeG27uI44p9oKDFiyCRw4XxgtfHA==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
dependencies:
- eslint: 8.32.0
- eslint-utils: 3.0.0_eslint@8.32.0
+ eslint: 8.36.0
+ eslint-utils: 3.0.0_eslint@8.36.0
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.0.11
semver: 7.3.8
- vue-eslint-parser: 9.1.0_eslint@8.32.0
+ vue-eslint-parser: 9.1.0_eslint@8.36.0
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -5773,13 +5687,13 @@ packages:
eslint-visitor-keys: 1.3.0
dev: true
- /eslint-utils/3.0.0_eslint@8.32.0:
+ /eslint-utils/3.0.0_eslint@8.36.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
- eslint: 8.32.0
+ eslint: 8.36.0
eslint-visitor-keys: 2.1.0
dev: true
@@ -5798,12 +5712,15 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/8.32.0:
- resolution: {integrity: sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==}
+ /eslint/8.36.0:
+ resolution: {integrity: sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint/eslintrc': 1.4.1
+ '@eslint-community/eslint-utils': 4.3.0_eslint@8.36.0
+ '@eslint-community/regexpp': 4.4.0
+ '@eslint/eslintrc': 2.0.1
+ '@eslint/js': 8.36.0
'@humanwhocodes/config-array': 0.11.8
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
@@ -5814,10 +5731,9 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-utils: 3.0.0_eslint@8.32.0
eslint-visitor-keys: 3.3.0
- espree: 9.4.1
- esquery: 1.4.0
+ espree: 9.5.0
+ esquery: 1.5.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
@@ -5838,7 +5754,6 @@ packages:
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.1
- regexpp: 3.2.0
strip-ansi: 6.0.1
strip-json-comments: 3.1.1
text-table: 0.2.0
@@ -5855,12 +5770,12 @@ packages:
eslint-visitor-keys: 1.3.0
dev: true
- /espree/9.4.1:
- resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==}
+ /espree/9.5.0:
+ resolution: {integrity: sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.8.1
- acorn-jsx: 5.3.2_acorn@8.8.1
+ acorn: 8.8.2
+ acorn-jsx: 5.3.2_acorn@8.8.2
eslint-visitor-keys: 3.3.0
dev: true
@@ -5871,6 +5786,13 @@ packages:
estraverse: 5.3.0
dev: true
+ /esquery/1.5.0:
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
+
/esrecurse/4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
@@ -5892,10 +5814,6 @@ packages:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
dev: true
- /estree-walker/3.0.1:
- resolution: {integrity: sha512-woY0RUD87WzMBUiZLx8NsYr23N5BKsOMZHhu2hoNRVh6NXGfoiT1KOL8G3UHlJAnEDGmfa5ubNA/AacfG+Kb0g==}
- dev: true
-
/estree-walker/3.0.3:
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
dependencies:
@@ -5916,24 +5834,6 @@ packages:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
dev: true
- /events/3.3.0:
- resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
- engines: {node: '>=0.8.x'}
- dev: true
-
- /execa/1.0.0:
- resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
- engines: {node: '>=6'}
- dependencies:
- cross-spawn: 6.0.5
- get-stream: 4.1.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- p-finally: 1.0.0
- signal-exit: 3.0.7
- strip-eof: 1.0.0
- dev: true
-
/execa/5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
@@ -5964,6 +5864,21 @@ packages:
strip-final-newline: 3.0.0
dev: true
+ /execa/7.1.1:
+ resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==}
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+ dependencies:
+ cross-spawn: 7.0.3
+ get-stream: 6.0.1
+ human-signals: 4.3.1
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.1.0
+ onetime: 6.0.0
+ signal-exit: 3.0.7
+ strip-final-newline: 3.0.0
+ dev: true
+
/extend/3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
dev: true
@@ -5981,9 +5896,9 @@ packages:
resolution: {integrity: sha512-MAU9ci3XdpqOX1aoIoyL2DMzW97P8LYeJxIUkfXhOfsrkH4KLHFaYDwKN0B2l6tqedVJWiTIJtWmxmZfa05vOQ==}
dependencies:
enhanced-resolve: 5.12.0
- mlly: 1.1.0
+ mlly: 1.2.0
pathe: 1.1.0
- ufo: 1.0.1
+ ufo: 1.1.1
dev: true
/fast-deep-equal/3.1.3:
@@ -6117,6 +6032,69 @@ packages:
optional: true
dev: true
+ /fontaine/0.2.3:
+ resolution: {integrity: sha512-qUTZfWEdPqfqAqX+3Oati/M8s/81uproVVQ3cpEcpmmzPB37/bZGwEm/92ZIIwYg/JFkQEpFRjnwg0HTiJ/FGQ==}
+ dependencies:
+ '@capsizecss/metrics': 0.3.0
+ '@capsizecss/unpack': 0.1.0
+ magic-regexp: 0.6.3
+ magic-string: 0.26.7
+ pathe: 0.3.9
+ scule: 0.3.2
+ ufo: 0.8.6
+ unplugin: 0.10.2
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /fontaine/0.3.1:
+ resolution: {integrity: sha512-VUOhc5jsVyRDNpU5buXCiIwY8fQ+TXTYCsHl2M0o4+clv2reQb4AqRnysSfRXMVcFIJWk1SspWthcVpNktgR/Q==}
+ dependencies:
+ '@capsizecss/metrics': 1.1.1
+ '@capsizecss/unpack': 1.0.0
+ magic-regexp: 0.6.3
+ magic-string: 0.30.0
+ pathe: 1.1.0
+ ufo: 1.1.1
+ unplugin: 1.3.1
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /fontkit/1.9.0:
+ resolution: {integrity: sha512-HkW/8Lrk8jl18kzQHvAw9aTHe1cqsyx5sDnxncx652+CIfhawokEPkeM3BoIC+z/Xv7a0yMr0f3pRRwhGH455g==}
+ dependencies:
+ '@swc/helpers': 0.3.17
+ brotli: 1.3.3
+ clone: 2.1.2
+ deep-equal: 2.2.0
+ dfa: 1.2.0
+ restructure: 2.0.1
+ tiny-inflate: 1.0.3
+ unicode-properties: 1.4.1
+ unicode-trie: 2.0.0
+ dev: true
+
+ /fontkit/2.0.2:
+ resolution: {integrity: sha512-jc4k5Yr8iov8QfS6u8w2CnHWVmbOGtdBtOXMze5Y+QD966Rx6PEVWXSEGwXlsDlKtu1G12cJjcsybnqhSk/+LA==}
+ dependencies:
+ '@swc/helpers': 0.4.14
+ brotli: 1.3.3
+ clone: 2.1.2
+ dfa: 1.2.0
+ fast-deep-equal: 3.1.3
+ restructure: 3.0.0
+ tiny-inflate: 1.0.3
+ unicode-properties: 1.4.1
+ unicode-trie: 2.0.0
+ dev: true
+
+ /for-each/0.3.3:
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ dependencies:
+ is-callable: 1.2.7
+ dev: true
+
/formdata-polyfill/4.0.10:
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
engines: {node: '>=12.20.0'}
@@ -6155,10 +6133,6 @@ packages:
universalify: 2.0.0
dev: true
- /fs-memo/1.2.0:
- resolution: {integrity: sha512-YEexkCpL4j03jn5SxaMHqcO6IuWuqm8JFUYhyCep7Ao89JIYmB8xoKhK7zXXJ9cCaNXpyNH5L3QtAmoxjoHW2w==}
- dev: true
-
/fs-minipass/2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
@@ -6233,10 +6207,12 @@ packages:
has-symbols: 1.0.3
dev: true
- /get-port-please/2.6.1:
- resolution: {integrity: sha512-4PDSrL6+cuMM1xs6w36ZIkaKzzE0xzfVBCfebHIJ3FE8iB9oic/ECwPw3iNiD4h1AoJ5XLLBhEviFAVrZsDC5A==}
+ /get-intrinsic/1.2.0:
+ resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
dependencies:
- fs-memo: 1.2.0
+ function-bind: 1.1.1
+ has: 1.0.3
+ has-symbols: 1.0.3
dev: true
/get-port-please/3.0.1:
@@ -6248,13 +6224,6 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /get-stream/4.1.0:
- resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
- engines: {node: '>=6'}
- dependencies:
- pump: 3.0.0
- dev: true
-
/get-stream/6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
@@ -6265,23 +6234,23 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.2.0
dev: true
/get-tsconfig/4.2.0:
resolution: {integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==}
dev: true
- /giget/1.0.0:
- resolution: {integrity: sha512-KWELZn3Nxq5+0So485poHrFriK9Bn3V/x9y+wgqrHkbmnGbjfLmZ685/SVA/ovW+ewoqW0gVI47pI4yW/VNobQ==}
+ /giget/1.1.2:
+ resolution: {integrity: sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==}
hasBin: true
dependencies:
colorette: 2.0.19
- defu: 6.1.1
+ defu: 6.1.2
https-proxy-agent: 5.0.1
mri: 1.2.0
- node-fetch-native: 1.0.1
- pathe: 1.0.0
+ node-fetch-native: 1.0.2
+ pathe: 1.1.0
tar: 6.1.13
transitivePeerDependencies:
- supports-color
@@ -6335,10 +6304,6 @@ packages:
is-glob: 4.0.3
dev: true
- /glob-to-regexp/0.4.1:
- resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- dev: true
-
/glob/7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
@@ -6391,22 +6356,11 @@ packages:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.2.12
- ignore: 5.2.1
+ ignore: 5.2.4
merge2: 1.4.1
slash: 3.0.0
dev: true
- /globby/13.1.2:
- resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- dir-glob: 3.0.1
- fast-glob: 3.2.12
- ignore: 5.2.1
- merge2: 1.4.1
- slash: 4.0.0
- dev: true
-
/globby/13.1.3:
resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -6425,7 +6379,7 @@ packages:
/gopd/1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.2.0
dev: true
/graceful-fs/4.2.10:
@@ -6443,22 +6397,25 @@ packages:
duplexer: 0.1.2
dev: true
- /h3/1.0.1:
- resolution: {integrity: sha512-gDCGpRvjchZW2JBlTqbJ9IOs+mdkXXuwSQkSye+jubHAv/UhdamKqoQvd4RFgyBNjHSId8Y+b10UdTcPlP/V+w==}
+ /h3/1.1.0:
+ resolution: {integrity: sha512-kx3u+RMzY963fU8NNT2ePWgsryAn9DNztPqbHia/M7HgA+rtXKjHjED9/uidcYPmImNwAfJsCachCzh2T3QH2A==}
dependencies:
cookie-es: 0.5.0
destr: 1.2.2
radix3: 1.0.0
- ufo: 1.0.1
+ ufo: 1.1.1
dev: true
- /h3/1.1.0:
- resolution: {integrity: sha512-kx3u+RMzY963fU8NNT2ePWgsryAn9DNztPqbHia/M7HgA+rtXKjHjED9/uidcYPmImNwAfJsCachCzh2T3QH2A==}
+ /h3/1.6.2:
+ resolution: {integrity: sha512-1v/clj/qCzWbuiG+DbpViuOVO789sEYNjlwRjekkmyLGsezIJk30gazbnjcWvF8L/ffUdRz2SwxE5HNgNx+Yjg==}
dependencies:
cookie-es: 0.5.0
+ defu: 6.1.2
destr: 1.2.2
+ iron-webcrypto: 0.6.0
radix3: 1.0.0
- ufo: 1.0.1
+ ufo: 1.1.1
+ uncrypto: 0.1.2
dev: true
/hard-rejection/2.1.0:
@@ -6483,7 +6440,7 @@ packages:
/has-property-descriptors/1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.2.0
dev: true
/has-symbols/1.0.3:
@@ -6604,13 +6561,8 @@ packages:
space-separated-tokens: 2.0.2
dev: true
- /he/1.2.0:
- resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
- hasBin: true
- dev: true
-
- /hookable/5.4.2:
- resolution: {integrity: sha512-6rOvaUiNKy9lET1X0ECnyZ5O5kSV0PJbtA5yZUgdEF7fGJEVwSLSislltyt7nFwVVALYHQJtfGeAR2Y0A0uJkg==}
+ /hookable/5.5.1:
+ resolution: {integrity: sha512-ac50aYjbtRMMZEtTG0qnVaBDA+1lqL9fHzDnxMQlVuO6LZWcBB7NXjIu9H9iImClewNdrit4RiEzi9QpRTgKrg==}
dev: true
/hosted-git-info/2.8.9:
@@ -6689,8 +6641,13 @@ packages:
engines: {node: '>=12.20.0'}
dev: true
- /husky/8.0.2:
- resolution: {integrity: sha512-Tkv80jtvbnkK3mYWxPZePGFpQ/tT3HNSs/sasF9P2YfkMezDl3ON37YN6jUUI4eTg5LcyVynlb6r4eyvOmspvg==}
+ /human-signals/4.3.1:
+ resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
+ engines: {node: '>=14.18.0'}
+ dev: true
+
+ /husky/8.0.3:
+ resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
engines: {node: '>=14'}
hasBin: true
dev: true
@@ -6706,11 +6663,6 @@ packages:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
dev: true
- /ignore/5.2.1:
- resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==}
- engines: {node: '>= 4'}
- dev: true
-
/ignore/5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
@@ -6771,24 +6723,24 @@ packages:
mute-stream: 0.0.8
ora: 6.1.2
run-async: 2.4.1
- rxjs: 7.6.0
+ rxjs: 7.8.0
string-width: 5.1.2
strip-ansi: 7.0.1
through: 2.3.8
wrap-ansi: 8.0.1
dev: true
- /internal-slot/1.0.3:
- resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==}
+ /internal-slot/1.0.5:
+ resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.2.0
has: 1.0.3
side-channel: 1.0.4
dev: true
- /ioredis/5.2.4:
- resolution: {integrity: sha512-qIpuAEt32lZJQ0XyrloCRdlEdUUNGG9i0UOk6zgzK6igyudNWqEBxfH6OlbnOOoBBvr1WB02mm8fR55CnikRng==}
+ /ioredis/5.3.1:
+ resolution: {integrity: sha512-C+IBcMysM6v52pTLItYMeV4Hz7uriGtoJdz7SSBDX6u+zwSYGirLdQh3L7t/OItWITcw3gTFMjJReYUwS4zihg==}
engines: {node: '>=12.22.0'}
dependencies:
'@ioredis/commands': 1.2.0
@@ -6809,6 +6761,10 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
+ /iron-webcrypto/0.6.0:
+ resolution: {integrity: sha512-WYgEQttulX/+JTv1BTJFYY3OsAb+ZnCuA53IjppZMyiRsVdGeEuZ/k4fJrg77Rzn0pp9/PgWtXUF+5HndDA5SQ==}
+ dev: true
+
/is-absolute-url/4.0.1:
resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -6825,6 +6781,22 @@ packages:
is-decimal: 2.0.1
dev: true
+ /is-arguments/1.1.1:
+ resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-array-buffer/3.0.2:
+ resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.0
+ is-typed-array: 1.1.10
+ dev: true
+
/is-arrayish/0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
dev: true
@@ -6927,6 +6899,10 @@ packages:
engines: {node: '>=12'}
dev: true
+ /is-map/2.0.2:
+ resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
+ dev: true
+
/is-module/1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
dev: true
@@ -6968,6 +6944,11 @@ packages:
engines: {node: '>=12'}
dev: true
+ /is-port-reachable/4.0.0:
+ resolution: {integrity: sha512-9UoipoxYmSk6Xy7QFgRv2HDyaysmgSG75TFQs6S+3pDM7ZhKTF/bskZV+0UlABHzKjNVhPjYCLfeZUEg1wXxig==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: true
+
/is-primitive/3.0.1:
resolution: {integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==}
engines: {node: '>=0.10.0'}
@@ -6991,6 +6972,10 @@ packages:
has-tostringtag: 1.0.0
dev: true
+ /is-set/2.0.2:
+ resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
+ dev: true
+
/is-shared-array-buffer/1.0.2:
resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
dependencies:
@@ -7003,11 +6988,6 @@ packages:
protocols: 2.0.1
dev: true
- /is-stream/1.1.0:
- resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/is-stream/2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
@@ -7039,17 +7019,39 @@ packages:
text-extensions: 1.9.0
dev: true
+ /is-typed-array/1.1.10:
+ resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.0
+ dev: true
+
/is-unicode-supported/1.3.0:
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
engines: {node: '>=12'}
dev: true
+ /is-weakmap/2.0.1:
+ resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
+ dev: true
+
/is-weakref/1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
call-bind: 1.0.2
dev: true
+ /is-weakset/2.0.2:
+ resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.0
+ dev: true
+
/is-wsl/2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
@@ -7061,26 +7063,21 @@ packages:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
dev: true
- /isexe/2.0.0:
- resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ /isarray/2.0.5:
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
dev: true
- /jest-worker/27.5.1:
- resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
- engines: {node: '>= 10.13.0'}
- dependencies:
- '@types/node': 18.11.12
- merge-stream: 2.0.0
- supports-color: 8.1.1
+ /isexe/2.0.0:
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
dev: true
- /jiti/1.16.0:
- resolution: {integrity: sha512-L3BJStEf5NAqNuzrpfbN71dp43mYIcBUlCRea/vdyv5dW/AYa1d4bpelko4SHdY3I6eN9Wzyasxirj1/vv5kmg==}
+ /jiti/1.16.2:
+ resolution: {integrity: sha512-OKBOVWmU3FxDt/UH4zSwiKPuc1nihFZiOD722FuJlngvLz2glX1v2/TJIgoA4+mrpnXxHV6dSAoCvPcYQtoG5A==}
hasBin: true
dev: true
- /jiti/1.16.2:
- resolution: {integrity: sha512-OKBOVWmU3FxDt/UH4zSwiKPuc1nihFZiOD722FuJlngvLz2glX1v2/TJIgoA4+mrpnXxHV6dSAoCvPcYQtoG5A==}
+ /jiti/1.18.2:
+ resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==}
hasBin: true
dev: true
@@ -7133,12 +7130,6 @@ packages:
minimist: 1.2.7
dev: true
- /json5/2.2.1:
- resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
- engines: {node: '>=6'}
- hasBin: true
- dev: true
-
/json5/2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
@@ -7183,11 +7174,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /klona/2.0.5:
- resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==}
- engines: {node: '>= 8'}
- dev: true
-
/klona/2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
@@ -7201,6 +7187,10 @@ packages:
resolution: {integrity: sha512-dLkz37Ab97HWMx9KTes3Tbi3D1ln9fCAy2zr2YVExJasDRPGRaKcoE4fycWNtnCAJfjFqe0cnY+f8KT2JePEXQ==}
dev: true
+ /kolorist/1.7.0:
+ resolution: {integrity: sha512-ymToLHqL02udwVdbkowNpzjFd6UzozMtshPQKVi5k1EjKRqKqBrOnE9QbLEb0/pV76SAiIT13hdL8R6suc+f3g==}
+ dev: true
+
/lazystream/1.0.1:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
@@ -7216,8 +7206,8 @@ packages:
type-check: 0.4.0
dev: true
- /lilconfig/2.0.6:
- resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==}
+ /lilconfig/2.1.0:
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
dev: true
@@ -7225,44 +7215,44 @@ packages:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true
- /lint-staged/13.1.0:
- resolution: {integrity: sha512-pn/sR8IrcF/T0vpWLilih8jmVouMlxqXxKuAojmbiGX5n/gDnz+abdPptlj0vYnbfE0SQNl3CY/HwtM0+yfOVQ==}
+ /lint-staged/13.2.0:
+ resolution: {integrity: sha512-GbyK5iWinax5Dfw5obm2g2ccUiZXNGtAS4mCbJ0Lv4rq6iEtfBSjOYdcbOtAIFtM114t0vdpViDDetjVTSd8Vw==}
engines: {node: ^14.13.1 || >=16.0.0}
hasBin: true
dependencies:
+ chalk: 5.2.0
cli-truncate: 3.1.0
- colorette: 2.0.19
- commander: 9.4.1
+ commander: 10.0.0
debug: 4.3.4
- execa: 6.1.0
- lilconfig: 2.0.6
- listr2: 5.0.6
+ execa: 7.1.1
+ lilconfig: 2.1.0
+ listr2: 5.0.8
micromatch: 4.0.5
normalize-path: 3.0.0
- object-inspect: 1.12.2
+ object-inspect: 1.12.3
pidtree: 0.6.0
string-argv: 0.3.1
- yaml: 2.1.3
+ yaml: 2.2.1
transitivePeerDependencies:
- enquirer
- supports-color
dev: true
- /listhen/1.0.1:
- resolution: {integrity: sha512-RBzBGHMCc5wP8J5Vf8WgF4CAJH8dWHi9LaKB7vfzZt54CiH/0dp01rudy2hFD9wCrTM+UfxFVnn5wTIiY+Qhiw==}
+ /listhen/1.0.2:
+ resolution: {integrity: sha512-yXz0NIYfVJDBQK2vlCpD/OjSzYkur2mR44boUtlg0eES4holn7oYZf439y5JxP55EOzFtClZ8eZlMJ8a++FwlQ==}
dependencies:
clipboardy: 3.0.0
colorette: 2.0.19
- defu: 6.1.1
- get-port-please: 2.6.1
+ defu: 6.1.2
+ get-port-please: 3.0.1
http-shutdown: 1.2.2
ip-regex: 5.0.0
node-forge: 1.3.1
- ufo: 1.0.1
+ ufo: 1.1.1
dev: true
- /listhen/1.0.2:
- resolution: {integrity: sha512-yXz0NIYfVJDBQK2vlCpD/OjSzYkur2mR44boUtlg0eES4holn7oYZf439y5JxP55EOzFtClZ8eZlMJ8a++FwlQ==}
+ /listhen/1.0.4:
+ resolution: {integrity: sha512-r94k7kmXHb8e8wpv7+UP/qqhhD+j/9TgX19QKim2cEJuWCLwlTw+5BkCFmYyjhQ7Bt8KdVun/2DcD7MF2Fe3+g==}
dependencies:
clipboardy: 3.0.0
colorette: 2.0.19
@@ -7271,11 +7261,11 @@ packages:
http-shutdown: 1.2.2
ip-regex: 5.0.0
node-forge: 1.3.1
- ufo: 1.0.1
+ ufo: 1.1.1
dev: true
- /listr2/5.0.6:
- resolution: {integrity: sha512-u60KxKBy1BR2uLJNTWNptzWQ1ob/gjMzIJPZffAENzpZqbMZ/5PrXXOomDcevIS/+IB7s1mmCEtSlT2qHWMqag==}
+ /listr2/5.0.8:
+ resolution: {integrity: sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==}
engines: {node: ^14.13.1 || >=16.0.0}
peerDependencies:
enquirer: '>= 2.3.0 < 3'
@@ -7288,16 +7278,11 @@ packages:
log-update: 4.0.0
p-map: 4.0.0
rfdc: 1.3.0
- rxjs: 7.6.0
+ rxjs: 7.8.0
through: 2.3.8
wrap-ansi: 7.0.0
dev: true
- /loader-runner/4.3.0:
- resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
- engines: {node: '>=6.11.5'}
- dev: true
-
/loader-utils/2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
@@ -7465,6 +7450,21 @@ packages:
yallist: 4.0.0
dev: true
+ /lru-cache/7.18.3:
+ resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /magic-regexp/0.6.3:
+ resolution: {integrity: sha512-RQJGOUham95/bqe9KaaQDxSP5txZoySk1omZCY7ZiG6/mqRY1t0w8Mmv9TV3XE0VkAD84pjUXs8jFFNLIzf5ow==}
+ dependencies:
+ estree-walker: 3.0.3
+ magic-string: 0.30.0
+ mlly: 1.2.0
+ ufo: 1.1.1
+ unplugin: 1.3.1
+ dev: true
+
/magic-string/0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
dependencies:
@@ -7485,6 +7485,13 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.14
dev: true
+ /magic-string/0.30.0:
+ resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.4.14
+ dev: true
+
/make-dir/3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
@@ -7525,9 +7532,10 @@ packages:
unist-util-visit: 4.1.2
dev: true
- /mdast-util-find-and-replace/2.2.1:
- resolution: {integrity: sha512-SobxkQXFAdd4b5WmEakmkVoh18icjQRxGy5OWTCzgsLRm1Fu/KCtwD1HIQSsmq5ZRjVH0Ehwg6/Fn3xIUk+nKw==}
+ /mdast-util-find-and-replace/2.2.2:
+ resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==}
dependencies:
+ '@types/mdast': 3.0.10
escape-string-regexp: 5.0.0
unist-util-is: 5.1.1
unist-util-visit-parents: 5.1.1
@@ -7557,7 +7565,7 @@ packages:
dependencies:
'@types/mdast': 3.0.10
ccount: 2.0.1
- mdast-util-find-and-replace: 2.2.1
+ mdast-util-find-and-replace: 2.2.2
micromark-util-character: 1.1.0
dev: true
@@ -7608,15 +7616,14 @@ packages:
- supports-color
dev: true
- /mdast-util-to-hast/12.2.6:
- resolution: {integrity: sha512-Kfo1JNUsi6r6CI7ZOJ6yt/IEKMjMK4nNjQ8C+yc8YBbIlDSp9dmj0zY90ryiu6Vy4CVGv0zi1H4ZoIaYVV8cwA==}
+ /mdast-util-to-hast/12.3.0:
+ resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
dependencies:
'@types/hast': 2.3.4
'@types/mdast': 3.0.10
mdast-util-definitions: 5.1.1
micromark-util-sanitize-uri: 1.1.0
trim-lines: 3.0.1
- unist-builder: 3.0.1
unist-util-generated: 2.0.0
unist-util-position: 4.0.4
unist-util-visit: 4.1.2
@@ -7994,12 +8001,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /minimatch/3.0.4:
- resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
- dependencies:
- brace-expansion: 1.1.11
- dev: true
-
/minimatch/3.0.8:
resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
dependencies:
@@ -8019,6 +8020,13 @@ packages:
brace-expansion: 2.0.1
dev: true
+ /minimatch/7.4.2:
+ resolution: {integrity: sha512-xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA==}
+ engines: {node: '>=10'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
+
/minimist-options/4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
@@ -8054,33 +8062,19 @@ packages:
yallist: 4.0.0
dev: true
- /mkdir/0.0.2:
- resolution: {integrity: sha512-98OnjcWaNEIRUJJe9rFoWlbkQ5n9z8F86wIPCrI961YEViiVybTuJln919WuuSHSnlrqXy0ELKCntoPy8C7lqg==}
- engines: {node: '>=0.4.0'}
- dev: true
-
/mkdirp/1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
dev: true
- /mlly/1.0.0:
- resolution: {integrity: sha512-QL108Hwt+u9bXdWgOI0dhzZfACovn5Aen4Xvc8Jasd9ouRH4NjnrXEiyP3nVvJo91zPlYjVRckta0Nt2zfoR6g==}
- dependencies:
- acorn: 8.8.1
- pathe: 1.0.0
- pkg-types: 1.0.1
- ufo: 1.0.1
- dev: true
-
- /mlly/1.1.0:
- resolution: {integrity: sha512-cwzBrBfwGC1gYJyfcy8TcZU1f+dbH/T+TuOhtYP2wLv/Fb51/uV7HJQfBPtEupZ2ORLRU1EKFS/QfS3eo9+kBQ==}
+ /mlly/1.2.0:
+ resolution: {integrity: sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==}
dependencies:
- acorn: 8.8.1
+ acorn: 8.8.2
pathe: 1.1.0
- pkg-types: 1.0.1
- ufo: 1.0.1
+ pkg-types: 1.0.2
+ ufo: 1.1.1
dev: true
/mri/1.2.0:
@@ -8105,10 +8099,6 @@ packages:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: true
- /muggle-string/0.1.0:
- resolution: {integrity: sha512-Tr1knR3d2mKvvWthlk7202rywKbiOm4rVFLsfAaSIhJ6dt9o47W4S+JMtWhd/PW9Wrdew2/S2fSvhz3E2gkfEg==}
- dev: true
-
/mute-stream/0.0.8:
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
dev: true
@@ -8119,8 +8109,8 @@ packages:
hasBin: true
dev: true
- /nanoid/4.0.0:
- resolution: {integrity: sha512-IgBP8piMxe/gf73RTQx7hmnhwz0aaEXYakvqZyE302IXW3HyVNhdNGC+O2MwMAVhLEnvXlvKtGbtJf6wvHihCg==}
+ /nanoid/4.0.1:
+ resolution: {integrity: sha512-udKGtCCUafD3nQtJg9wBhRP3KMbPglUsgV5JVsXhvyBs/oefqb4sqMEhKBBgqZncYowu58p1prsZQBYvAj/Gww==}
engines: {node: ^14 || ^16 || >=18}
hasBin: true
dev: true
@@ -8142,29 +8132,25 @@ packages:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
dev: true
- /nice-try/1.0.5:
- resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- dev: true
-
- /nitropack/2.1.0:
- resolution: {integrity: sha512-8iA2oM9Ep1Xo+cgsRHWMMcqOW8DR5b0fyD6X0bAfvl0DMygP4/879X10EqATPJtrhaIU8AMW7MmALsnd1SOsOQ==}
+ /nitropack/2.3.1:
+ resolution: {integrity: sha512-8cmPZHDweb7O6TmzQyA/ejkG1dzdJLmir1nVqJBdR7hWC/3xOI3y3ac1o8v0o9hVM7YP0HRIEj1h+FVbYJi2pQ==}
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
hasBin: true
dependencies:
'@cloudflare/kv-asset-handler': 0.3.0
'@netlify/functions': 1.4.0
- '@rollup/plugin-alias': 4.0.3_rollup@3.12.0
- '@rollup/plugin-commonjs': 24.0.1_rollup@3.12.0
- '@rollup/plugin-inject': 5.0.3_rollup@3.12.0
- '@rollup/plugin-json': 6.0.0_rollup@3.12.0
- '@rollup/plugin-node-resolve': 15.0.1_rollup@3.12.0
- '@rollup/plugin-replace': 5.0.2_rollup@3.12.0
- '@rollup/plugin-terser': 0.4.0_rollup@3.12.0
- '@rollup/plugin-wasm': 6.1.2_rollup@3.12.0
- '@rollup/pluginutils': 5.0.2_rollup@3.12.0
+ '@rollup/plugin-alias': 4.0.3_rollup@3.19.1
+ '@rollup/plugin-commonjs': 24.0.1_rollup@3.19.1
+ '@rollup/plugin-inject': 5.0.3_rollup@3.19.1
+ '@rollup/plugin-json': 6.0.0_rollup@3.19.1
+ '@rollup/plugin-node-resolve': 15.0.1_rollup@3.19.1
+ '@rollup/plugin-replace': 5.0.2_rollup@3.19.1
+ '@rollup/plugin-terser': 0.4.0_rollup@3.19.1
+ '@rollup/plugin-wasm': 6.1.2_rollup@3.19.1
+ '@rollup/pluginutils': 5.0.2_rollup@3.19.1
'@vercel/nft': 0.22.6
archiver: 5.3.1
- c12: 1.1.0
+ c12: 1.2.0
chalk: 5.2.0
chokidar: 3.5.3
consola: 2.15.3
@@ -8172,49 +8158,54 @@ packages:
defu: 6.1.2
destr: 1.2.2
dot-prop: 7.2.0
- esbuild: 0.17.5
+ esbuild: 0.17.12
escape-string-regexp: 5.0.0
etag: 1.8.1
fs-extra: 11.1.0
globby: 13.1.3
gzip-size: 7.0.0
- h3: 1.1.0
- hookable: 5.4.2
+ h3: 1.6.2
+ hookable: 5.5.1
http-proxy: 1.18.1
is-primitive: 3.0.1
- jiti: 1.16.2
+ jiti: 1.18.2
klona: 2.0.6
knitwork: 1.0.0
- listhen: 1.0.2
+ listhen: 1.0.4
mime: 3.0.0
- mlly: 1.1.0
+ mlly: 1.2.0
mri: 1.2.0
- node-fetch-native: 1.0.1
- ofetch: 1.0.0
+ node-fetch-native: 1.0.2
+ ofetch: 1.0.1
ohash: 1.0.0
pathe: 1.1.0
perfect-debounce: 0.1.3
- pkg-types: 1.0.1
- pretty-bytes: 6.0.0
+ pkg-types: 1.0.2
+ pretty-bytes: 6.1.0
radix3: 1.0.0
- rollup: 3.12.0
- rollup-plugin-visualizer: 5.9.0_rollup@3.12.0
+ rollup: 3.19.1
+ rollup-plugin-visualizer: 5.9.0_rollup@3.19.1
scule: 1.0.0
semver: 7.3.8
serve-placeholder: 2.0.1
serve-static: 1.15.0
source-map-support: 0.5.21
- std-env: 3.3.1
- ufo: 1.0.1
- unenv: 1.0.2
- unimport: 2.0.1_rollup@3.12.0
- unstorage: 1.0.1
+ std-env: 3.3.2
+ ufo: 1.1.1
+ unenv: 1.2.2
+ unimport: 3.0.3_rollup@3.19.1
+ unstorage: 1.4.1
transitivePeerDependencies:
- - bufferutil
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@planetscale/database'
- debug
- encoding
- supports-color
- - utf-8-validate
dev: true
/node-domexception/1.0.0:
@@ -8228,8 +8219,8 @@ packages:
lodash: 4.17.21
dev: true
- /node-fetch-native/1.0.1:
- resolution: {integrity: sha512-VzW+TAk2wE4X9maiKMlT+GsPU4OMmR1U9CrHSmd3DFLn2IcZ9VJ6M6BBugGfYUnPCLSYxXdZy17M0BEJyhUTwg==}
+ /node-fetch-native/1.0.2:
+ resolution: {integrity: sha512-KIkvH1jl6b3O7es/0ShyCgWLcfXxlBrLBbP3rOr23WArC66IMcU4DeZEeYEOwnopYhawLTn7/y+YtmASe8DFVQ==}
dev: true
/node-fetch/2.6.7:
@@ -8263,6 +8254,10 @@ packages:
hasBin: true
dev: true
+ /node-releases/2.0.10:
+ resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
+ dev: true
+
/node-releases/2.0.6:
resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
dev: true
@@ -8309,13 +8304,6 @@ packages:
engines: {node: '>=10'}
dev: true
- /npm-run-path/2.0.2:
- resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
- engines: {node: '>=4'}
- dependencies:
- path-key: 2.0.1
- dev: true
-
/npm-run-path/4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -8345,15 +8333,15 @@ packages:
boolbase: 1.0.0
dev: true
- /nuxi/3.1.1:
- resolution: {integrity: sha512-ZwqG3dpqF2dlVr1NSPbFbmAzBcbrK3VTJR6KjGPU3cdxJ7JHMjOHNEz983QaKyNnfgETyTVPZVo+viKb2a9VPQ==}
- engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ /nuxi/3.3.1:
+ resolution: {integrity: sha512-GJaJR0NtH05W7xrtFoJ3sX/eUhIMoqWj63QNFekqhrfD8LmXrlWrx9Q8GCFNc3nqk0oIcngJijyGNfWtTtpSxw==}
+ engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
dev: true
- /nuxt-windicss/2.6.0_vite@3.0.0-beta.10:
+ /nuxt-windicss/2.6.0_vite@4.2.0:
resolution: {integrity: sha512-A4RyyDad6QM0XdgTsjmvQRR17jLF1ZnpMUEUdFjbfO9sgDuyTWtlmfCVtBW6wAIPavGZYD49cem75vyI7sD10g==}
dependencies:
'@nuxt/kit': 3.0.0
@@ -8367,7 +8355,7 @@ packages:
pathe: 1.1.0
read-cache: 1.0.0
sirv: 2.0.2
- vite-plugin-windicss: 1.8.8_vite@3.0.0-beta.10
+ vite-plugin-windicss: 1.8.8_vite@4.2.0
windicss: 3.5.6
windicss-analysis: 0.3.5
windicss-webpack-plugin: 1.7.7
@@ -8377,21 +8365,21 @@ packages:
- vite
dev: true
- /nuxt/3.1.1_xsziujdgaekcyduxcggsaejfsa:
- resolution: {integrity: sha512-GVdmV88lR01OX0slxTPyTzwQkge7fxNREkx2QW0Lo66fb6aHcJlRXzFMBCOTjas+Ncng6AalIyIiPREEteGKSg==}
- engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ /nuxt/3.3.1_6ve2mgcmoerusihmx5fhibabvi:
+ resolution: {integrity: sha512-1DTFXEr+FlZO/hyw765cb9a/AiGysHIGLNl8NGJtURwUWC4gd+Z3y5DnL04PE5fVJ08yB/KJwc0t6StijbL8wQ==}
+ engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
hasBin: true
dependencies:
'@nuxt/devalue': 2.0.0
- '@nuxt/kit': 3.1.1
- '@nuxt/schema': 3.1.1
- '@nuxt/telemetry': 2.1.9
- '@nuxt/ui-templates': 1.1.0
- '@nuxt/vite-builder': 3.1.1_o7yoeuejlqnl36sfel6hjhvmna
- '@unhead/ssr': 1.0.18
- '@vue/reactivity': 3.2.45
- '@vue/shared': 3.2.45
- '@vueuse/head': 1.0.23_vue@3.2.45
+ '@nuxt/kit': 3.3.1
+ '@nuxt/schema': 3.3.1
+ '@nuxt/telemetry': 2.1.10
+ '@nuxt/ui-templates': 1.1.1
+ '@nuxt/vite-builder': 3.3.1_s6tppspsvnnhswul3bz5sealve
+ '@unhead/ssr': 1.1.23
+ '@unhead/vue': 1.1.23_vue@3.2.47
+ '@vue/reactivity': 3.2.47
+ '@vue/shared': 3.2.47
chokidar: 3.5.3
cookie-es: 0.5.0
defu: 6.1.2
@@ -8400,36 +8388,40 @@ packages:
estree-walker: 3.0.3
fs-extra: 11.1.0
globby: 13.1.3
- h3: 1.1.0
+ h3: 1.6.2
hash-sum: 2.0.0
- hookable: 5.4.2
- jiti: 1.16.2
+ hookable: 5.5.1
+ jiti: 1.18.2
knitwork: 1.0.0
- magic-string: 0.27.0
- mlly: 1.1.0
- nitropack: 2.1.0
- nuxi: 3.1.1
- ofetch: 1.0.0
+ magic-string: 0.30.0
+ mlly: 1.2.0
+ nitropack: 2.3.1
+ nuxi: 3.3.1
+ ofetch: 1.0.1
ohash: 1.0.0
pathe: 1.1.0
perfect-debounce: 0.1.3
scule: 1.0.0
- strip-literal: 1.0.0
- ufo: 1.0.1
- ultrahtml: 1.2.0
- unctx: 2.1.1
- unenv: 1.0.2
- unhead: 1.0.18
- unimport: 2.0.1
- unplugin: 1.0.1
+ strip-literal: 1.0.1
+ ufo: 1.1.1
+ unctx: 2.1.2
+ unenv: 1.2.2
+ unimport: 3.0.3
+ unplugin: 1.3.1
untyped: 1.2.2
- vue: 3.2.45
- vue-bundle-renderer: 1.0.0
+ vue: 3.2.47
+ vue-bundle-renderer: 1.0.2
vue-devtools-stub: 0.1.0
- vue-router: 4.1.6_vue@3.2.45
+ vue-router: 4.1.6_vue@3.2.47
transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@planetscale/database'
- '@types/node'
- - bufferutil
- debug
- encoding
- eslint
@@ -8444,7 +8436,6 @@ packages:
- supports-color
- terser
- typescript
- - utf-8-validate
- vls
- vti
- vue-tsc
@@ -8455,8 +8446,16 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /object-inspect/1.12.2:
- resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
+ /object-inspect/1.12.3:
+ resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
+ dev: true
+
+ /object-is/1.1.5:
+ resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
dev: true
/object-keys/1.1.1:
@@ -8487,8 +8486,16 @@ packages:
resolution: {integrity: sha512-d40aof8czZFSQKJa4+F7Ch3UC5D631cK1TTUoK+iNEut9NoiCL+u0vykl/puYVUS2df4tIQl5upQcolIcEzQjQ==}
dependencies:
destr: 1.2.2
- node-fetch-native: 1.0.1
- ufo: 1.0.1
+ node-fetch-native: 1.0.2
+ ufo: 1.1.1
+ dev: true
+
+ /ofetch/1.0.1:
+ resolution: {integrity: sha512-icBz2JYfEpt+wZz1FRoGcrMigjNKjzvufE26m9+yUiacRQRHwnNlGRPiDnW4op7WX/MR6aniwS8xw8jyVelF2g==}
+ dependencies:
+ destr: 1.2.2
+ node-fetch-native: 1.0.2
+ ufo: 1.1.1
dev: true
/ohash/1.0.0:
@@ -8575,11 +8582,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /p-finally/1.0.0:
- resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
- engines: {node: '>=4'}
- dev: true
-
/p-limit/2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
@@ -8627,6 +8629,10 @@ packages:
engines: {node: '>=6'}
dev: true
+ /pako/0.2.9:
+ resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
+ dev: true
+
/parent-module/1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -8677,6 +8683,12 @@ packages:
parse-path: 7.0.0
dev: true
+ /parse5-htmlparser2-tree-adapter/6.0.1:
+ resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
+ dependencies:
+ parse5: 6.0.1
+ dev: true
+
/parse5-htmlparser2-tree-adapter/7.0.0:
resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
dependencies:
@@ -8713,11 +8725,6 @@ packages:
resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
dev: true
- /path-key/2.0.1:
- resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
- engines: {node: '>=4'}
- dev: true
-
/path-key/3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
@@ -8785,8 +8792,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /pinia/2.0.29_prq2uz4lho2pwp6irk4cfkrxwu:
- resolution: {integrity: sha512-5z/KpFecq/cIgfeTnulJXldiLcTITRkTe3N58RKYSj0Pc1EdR6oyCdnf5A9jLoVwBqX5LtHhd0kGlpzWvk9oiQ==}
+ /pinia/2.0.33_p4srtwdgezcoeovfcc2yxzvaue:
+ resolution: {integrity: sha512-HOj1yVV2itw6rNIrR2f7+MirGNxhORjrULL8GWgRwXsGSvEqIQ+SE0MYt6cwtpegzCda3i+rVTZM+AM7CG+kRg==}
peerDependencies:
'@vue/composition-api': ^1.4.0
typescript: '>=4.4.4'
@@ -8797,18 +8804,18 @@ packages:
typescript:
optional: true
dependencies:
- '@vue/devtools-api': 6.4.5
- typescript: 4.9.4
- vue: 3.2.45
- vue-demi: 0.13.11_vue@3.2.45
+ '@vue/devtools-api': 6.5.0
+ typescript: 5.0.2
+ vue: 3.2.47
+ vue-demi: 0.13.11_vue@3.2.47
dev: true
- /pkg-types/1.0.1:
- resolution: {integrity: sha512-jHv9HB+Ho7dj6ItwppRDDl0iZRYBD0jsakHXtFgoLr+cHSF6xC+QL54sJmWxyGxOLYSHm0afhXhXcQDQqH9z8g==}
+ /pkg-types/1.0.2:
+ resolution: {integrity: sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==}
dependencies:
jsonc-parser: 3.2.0
- mlly: 1.0.0
- pathe: 1.0.0
+ mlly: 1.2.0
+ pathe: 1.1.0
dev: true
/pluralize/8.0.0:
@@ -8826,13 +8833,13 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-colormin/5.3.0_postcss@8.4.21:
- resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==}
+ /postcss-colormin/5.3.1_postcss@8.4.21:
+ resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.21.5
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.4.21
@@ -8845,7 +8852,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.21.5
postcss: 8.4.21
postcss-value-parser: 4.2.0
dev: true
@@ -8904,18 +8911,17 @@ packages:
resolve: 1.22.1
dev: true
- /postcss-loader/7.0.2_yr6womevqv5t3aet2t3y7pv3ua:
- resolution: {integrity: sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==}
+ /postcss-loader/7.1.0_postcss@8.4.21:
+ resolution: {integrity: sha512-vTD2DJ8vJD0Vr1WzMQkRZWRjcynGh3t7NeoLg+Sb1TeuK7etiZfL/ZwHbaVa3M+Qni7Lj/29voV9IggnIUjlIw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
dependencies:
- cosmiconfig: 7.1.0
- klona: 2.0.5
- postcss: 8.4.14
+ cosmiconfig: 8.1.3
+ klona: 2.0.6
+ postcss: 8.4.21
semver: 7.3.8
- webpack: 5.75.0
dev: true
/postcss-merge-longhand/5.1.7_postcss@8.4.21:
@@ -8929,13 +8935,13 @@ packages:
stylehacks: 5.1.1_postcss@8.4.21
dev: true
- /postcss-merge-rules/5.1.3_postcss@8.4.21:
- resolution: {integrity: sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==}
+ /postcss-merge-rules/5.1.4_postcss@8.4.21:
+ resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.21.5
caniuse-api: 3.0.0
cssnano-utils: 3.1.0_postcss@8.4.21
postcss: 8.4.21
@@ -8970,7 +8976,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.21.5
cssnano-utils: 3.1.0_postcss@8.4.21
postcss: 8.4.21
postcss-value-parser: 4.2.0
@@ -9051,7 +9057,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.21.5
postcss: 8.4.21
postcss-value-parser: 4.2.0
dev: true
@@ -9088,13 +9094,13 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-reduce-initial/5.1.1_postcss@8.4.21:
- resolution: {integrity: sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==}
+ /postcss-reduce-initial/5.1.2_postcss@8.4.21:
+ resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.21.5
caniuse-api: 3.0.0
postcss: 8.4.21
dev: true
@@ -9155,15 +9161,6 @@ packages:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: true
- /postcss/8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.4
- picocolors: 1.0.0
- source-map-js: 1.0.2
- dev: true
-
/postcss/8.4.21:
resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
engines: {node: ^10 || ^12 || >=14}
@@ -9185,14 +9182,19 @@ packages:
fast-diff: 1.2.0
dev: true
- /prettier/2.8.1:
- resolution: {integrity: sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==}
+ /prettier/2.8.4:
+ resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
- /pretty-bytes/6.0.0:
- resolution: {integrity: sha512-6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg==}
+ /pretty-bytes/5.6.0:
+ resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /pretty-bytes/6.1.0:
+ resolution: {integrity: sha512-Rk753HI8f4uivXi4ZCIYdhmG1V+WKzvRMg/X+M42a6t7D07RcmopXJMDNk6N++7Bl75URRGsb40ruvg7Hcp2wQ==}
engines: {node: ^14.13.1 || >=16.0.0}
dev: true
@@ -9221,13 +9223,6 @@ packages:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
dev: true
- /pump/3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
- dev: true
-
/punycode/1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
dev: true
@@ -9281,8 +9276,8 @@ packages:
strip-json-comments: 2.0.1
dev: true
- /rc9/2.0.0:
- resolution: {integrity: sha512-yVeYJHOpJLOhs3V6RKwz7RPPwPurrx3JjwK264sPgvo/lFdhuUrLien7iSvAO6STVkN0gSMk/MehQNHQhflqZw==}
+ /rc9/2.0.1:
+ resolution: {integrity: sha512-9EfjLgNmzP9255YX8bGnILQcmdtOXKtUlFTu8bOZPJVtaUDZ2imswcUdpK51tMjTRQyB7r5RebNijrzuyGXcVA==}
dependencies:
defu: 6.1.2
destr: 1.2.2
@@ -9497,13 +9492,13 @@ packages:
unist-util-visit: 4.1.2
dev: true
- /remark-emoji/3.0.2:
- resolution: {integrity: sha512-hEgxEv2sBtvhT3tNG/tQeeFY3EbslftaOoG14dDZndLo25fWJ6Fbg4ukFbIotOWWrfXyASjXjyHT+6n366k3mg==}
+ /remark-emoji/3.1.1:
+ resolution: {integrity: sha512-kVCTaHzX+/ls67mE8JsGd3ZX511p2FlAPmKhdGpRCb5z6GSwp+3sAIB5oTySIetPh7CtqfGf7JBUt5fyMjgOHw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
emoticon: 4.0.1
+ mdast-util-find-and-replace: 2.2.2
node-emoji: 1.11.0
- unist-util-visit: 4.1.2
dev: true
/remark-gfm/3.0.1:
@@ -9553,7 +9548,7 @@ packages:
dependencies:
'@types/hast': 2.3.4
'@types/mdast': 3.0.10
- mdast-util-to-hast: 12.2.6
+ mdast-util-to-hast: 12.3.0
unified: 10.1.2
dev: true
@@ -9621,6 +9616,14 @@ packages:
signal-exit: 3.0.7
dev: true
+ /restructure/2.0.1:
+ resolution: {integrity: sha512-e0dOpjm5DseomnXx2M5lpdZ5zoHqF1+bqdMJUohoYVVQa7cBdnk7fdmeI6byNWP/kiME72EeTiSypTCVnpLiDg==}
+ dev: true
+
+ /restructure/3.0.0:
+ resolution: {integrity: sha512-Xj8/MEIhhfj9X2rmD9iJ4Gga9EFqVlpMj3vfLnV2r/Mh5jRMryNV+6lWh9GdJtDBcBSPIqzRdfBQ3wDtNFv/uw==}
+ dev: true
+
/reusify/1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -9637,7 +9640,7 @@ packages:
glob: 7.2.3
dev: true
- /rollup-plugin-visualizer/5.9.0_rollup@3.12.0:
+ /rollup-plugin-visualizer/5.9.0_rollup@3.19.1:
resolution: {integrity: sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==}
engines: {node: '>=14'}
hasBin: true
@@ -9649,21 +9652,13 @@ packages:
dependencies:
open: 8.4.0
picomatch: 2.3.1
- rollup: 3.12.0
+ rollup: 3.19.1
source-map: 0.7.4
yargs: 17.6.2
dev: true
- /rollup/2.79.1:
- resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
- engines: {node: '>=10.0.0'}
- hasBin: true
- optionalDependencies:
- fsevents: 2.3.2
- dev: true
-
- /rollup/3.12.0:
- resolution: {integrity: sha512-4MZ8kA2HNYahIjz63rzrMMRvDqQDeS9LoriJvMuV0V6zIGysP36e9t4yObUfwdT9h/szXoHQideICftcdZklWg==}
+ /rollup/3.19.1:
+ resolution: {integrity: sha512-lAbrdN7neYCg/8WaoWn/ckzCtz+jr70GFfYdlf50OF7387HTg+wiuiqJRFYawwSPpqfqDNYqK7smY/ks2iAudg==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
@@ -9681,8 +9676,8 @@ packages:
queue-microtask: 1.2.3
dev: true
- /rxjs/7.6.0:
- resolution: {integrity: sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==}
+ /rxjs/7.8.0:
+ resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
dependencies:
tslib: 2.4.1
dev: true
@@ -9706,7 +9701,7 @@ packages:
resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.2.0
is-regex: 1.1.4
dev: true
@@ -9720,8 +9715,8 @@ packages:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
dev: true
- /sass-loader/13.2.0_sass@1.53.0+webpack@5.75.0:
- resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==}
+ /sass-loader/13.2.1_sass@1.59.3:
+ resolution: {integrity: sha512-VQUrgUa5/waIzMrzyuko3sj5WD9NMsYph91cNICx+OaODbRtLl6To2fswLx8MH2qNxXFqRtpvdPQIa7mE93YOA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
fibers: '>= 3.1.0'
@@ -9739,14 +9734,13 @@ packages:
sass-embedded:
optional: true
dependencies:
- klona: 2.0.5
+ klona: 2.0.6
neo-async: 2.6.2
- sass: 1.53.0
- webpack: 5.75.0
+ sass: 1.59.3
dev: true
- /sass/1.53.0:
- resolution: {integrity: sha512-zb/oMirbKhUgRQ0/GFz8TSAwRq2IlR29vOUJZOx0l8sV+CkHUfHa4u5nqrG+1VceZp7Jfj59SVW9ogdhTvJDcQ==}
+ /sass/1.59.3:
+ resolution: {integrity: sha512-QCq98N3hX1jfTCoUAsF3eyGuXLsY7BCnCEg9qAact94Yc21npG2/mVOqoDvE0fCbWDqiM4WlcJQla0gWG2YlxQ==}
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
@@ -9755,13 +9749,12 @@ packages:
source-map-js: 1.0.2
dev: true
- /schema-utils/3.1.1:
- resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
- engines: {node: '>= 10.13.0'}
- dependencies:
- '@types/json-schema': 7.0.11
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ /sax/1.2.4:
+ resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
+ dev: true
+
+ /scule/0.3.2:
+ resolution: {integrity: sha512-zIvPdjOH8fv8CgrPT5eqtxHQXmPNnV/vHJYffZhE43KZkvULvpCTvOt1HPlFaCZx287INL9qaqrZg34e8NgI4g==}
dev: true
/scule/1.0.0:
@@ -9778,14 +9771,6 @@ packages:
hasBin: true
dev: true
- /semver/7.3.7:
- resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- lru-cache: 6.0.0
- dev: true
-
/semver/7.3.8:
resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
engines: {node: '>=10'}
@@ -9821,14 +9806,14 @@ packages:
randombytes: 2.1.0
dev: true
- /serve-handler/6.1.3:
- resolution: {integrity: sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==}
+ /serve-handler/6.1.5:
+ resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==}
dependencies:
bytes: 3.0.0
content-disposition: 0.5.2
fast-url-parser: 1.1.3
mime-types: 2.1.18
- minimatch: 3.0.4
+ minimatch: 3.1.2
path-is-inside: 1.0.2
path-to-regexp: 2.2.1
range-parser: 1.2.0
@@ -9852,19 +9837,22 @@ packages:
- supports-color
dev: true
- /serve/13.0.4:
- resolution: {integrity: sha512-Lj8rhXmphJCRQVv5qwu0NQZ2h+0MrRyRJxDZu5y3qLH2i/XY6a0FPj/VmjMUdkJb672MBfE8hJ274PU6JzBd0Q==}
+ /serve/14.2.0:
+ resolution: {integrity: sha512-+HOw/XK1bW8tw5iBilBz/mJLWRzM8XM6MPxL4J/dKzdxq1vfdEWSwhaR7/yS8EJp5wzvP92p1qirysJvnEtjXg==}
+ engines: {node: '>= 14'}
hasBin: true
dependencies:
- '@zeit/schemas': 2.6.0
- ajv: 6.12.6
- arg: 2.0.0
- boxen: 5.1.2
- chalk: 2.4.1
- clipboardy: 2.3.0
- compression: 1.7.3
- serve-handler: 6.1.3
- update-check: 1.5.2
+ '@zeit/schemas': 2.29.0
+ ajv: 8.11.0
+ arg: 5.0.2
+ boxen: 7.0.0
+ chalk: 5.0.1
+ chalk-template: 0.4.0
+ clipboardy: 3.0.0
+ compression: 1.7.4
+ is-port-reachable: 4.0.0
+ serve-handler: 6.1.5
+ update-check: 1.5.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -9877,13 +9865,6 @@ packages:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
dev: true
- /shebang-command/1.2.0:
- resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- shebang-regex: 1.0.0
- dev: true
-
/shebang-command/2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -9891,11 +9872,6 @@ packages:
shebang-regex: 3.0.0
dev: true
- /shebang-regex/1.0.0:
- resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/shebang-regex/3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
@@ -9910,7 +9886,7 @@ packages:
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.3
- object-inspect: 1.12.2
+ object-inspect: 1.12.3
dev: true
/siginfo/2.0.0:
@@ -9939,6 +9915,17 @@ packages:
totalist: 3.0.0
dev: true
+ /sitemap/7.1.1:
+ resolution: {integrity: sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==}
+ engines: {node: '>=12.0.0', npm: '>=5.6.0'}
+ hasBin: true
+ dependencies:
+ '@types/node': 17.0.45
+ '@types/sax': 1.2.4
+ arg: 5.0.2
+ sax: 1.2.4
+ dev: true
+
/slash/3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
@@ -9984,13 +9971,13 @@ packages:
resolution: {integrity: sha512-V21+XeNni+tTyiST1MHsa84AQhT1aFZipzPpOFAVB8DkHzwJyjjAmt9bgwnuZiZWnIbMo2duE29wybxv/7HWUw==}
dev: true
- /socket.io-client/4.5.4:
- resolution: {integrity: sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==}
+ /socket.io-client/4.6.1:
+ resolution: {integrity: sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==}
engines: {node: '>=10.0.0'}
dependencies:
'@socket.io/component-emitter': 3.1.0
debug: 4.3.4
- engine.io-client: 6.2.3
+ engine.io-client: 6.4.0
socket.io-parser: 4.2.1
transitivePeerDependencies:
- bufferutil
@@ -10090,8 +10077,15 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /std-env/3.3.1:
- resolution: {integrity: sha512-3H20QlwQsSm2OvAxWIYhs+j01MzzqwMwGiiO1NQaJYZgJZFPuAbf95/DiKRBSTYIJ2FeGUc+B/6mPGcWP9dO3Q==}
+ /std-env/3.3.2:
+ resolution: {integrity: sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==}
+ dev: true
+
+ /stop-iteration-iterator/1.0.0:
+ resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ internal-slot: 1.0.5
dev: true
/string-argv/0.3.1:
@@ -10171,11 +10165,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /strip-eof/1.0.0:
- resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/strip-final-newline/2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
@@ -10203,10 +10192,10 @@ packages:
engines: {node: '>=8'}
dev: true
- /strip-literal/1.0.0:
- resolution: {integrity: sha512-5o4LsH1lzBzO9UFH63AJ2ad2/S2AVx6NtjOcaz+VTT2h1RiRvbipW72z8M/lxEhcPHDBQwpDrnTF7sXy/7OwCQ==}
+ /strip-literal/1.0.1:
+ resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==}
dependencies:
- acorn: 8.8.1
+ acorn: 8.8.2
dev: true
/style-to-object/0.3.0:
@@ -10221,7 +10210,7 @@ packages:
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.21.5
postcss: 8.4.21
postcss-selector-parser: 6.0.11
dev: true
@@ -10240,13 +10229,6 @@ packages:
has-flag: 4.0.0
dev: true
- /supports-color/8.1.1:
- resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
- engines: {node: '>=10'}
- dependencies:
- has-flag: 4.0.0
- dev: true
-
/supports-preserve-symlinks-flag/1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
@@ -10311,37 +10293,13 @@ packages:
yallist: 4.0.0
dev: true
- /terser-webpack-plugin/5.3.6_webpack@5.75.0:
- resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
- dependencies:
- '@jridgewell/trace-mapping': 0.3.17
- jest-worker: 27.5.1
- schema-utils: 3.1.1
- serialize-javascript: 6.0.0
- terser: 5.16.1
- webpack: 5.75.0
- dev: true
-
/terser/5.16.1:
resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==}
engines: {node: '>=10'}
hasBin: true
dependencies:
'@jridgewell/source-map': 0.3.2
- acorn: 8.8.1
+ acorn: 8.8.2
commander: 2.20.3
source-map-support: 0.5.21
dev: true
@@ -10355,8 +10313,8 @@ packages:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: true
- /three/0.143.0:
- resolution: {integrity: sha512-oKcAGYHhJ46TGEuHjodo2n6TY2R6lbvrkp+feKZxqsUL/WkH7GKKaeu6RHeyb2Xjfk2dPLRKLsOP0KM2VgT8Zg==}
+ /three/0.150.1:
+ resolution: {integrity: sha512-5C1MqKUWaHYo13BX0Q64qcdwImgnnjSOFgBscOzAo8MYCzEtqfQqorEKMcajnA3FHy1yVlIe9AmaMQ0OQracNA==}
dev: true
/through/2.3.8:
@@ -10376,6 +10334,10 @@ packages:
globrex: 0.1.2
dev: true
+ /tiny-inflate/1.0.3:
+ resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==}
+ dev: true
+
/tiny-invariant/1.3.1:
resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
dev: true
@@ -10432,10 +10394,10 @@ packages:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
dev: true
- /translate/1.4.1_@babel+core@7.20.5:
+ /translate/1.4.1_@babel+core@7.21.3:
resolution: {integrity: sha512-kQVCT+Xf2Yu6tb2a3711Fm6p0Xh8BeEsy5pO6xPsRo2DwRMuKnjtWHR58gl8YiuuvVSMI78fTXbAfComWV8hFw==}
dependencies:
- '@babel/preset-env': 7.20.2_@babel+core@7.20.5
+ '@babel/preset-env': 7.20.2_@babel+core@7.21.3
node-fetch: 2.6.7
transitivePeerDependencies:
- '@babel/core'
@@ -10456,7 +10418,7 @@ packages:
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
dev: true
- /ts-node/10.9.1_ewcgsh5jhk3o7xvttutb4bhery:
+ /ts-node/10.9.1_r65g46xrm45gbuklnvp6xevc2y:
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -10475,8 +10437,8 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.3
- '@types/node': 14.18.34
- acorn: 8.8.1
+ '@types/node': 18.11.12
+ acorn: 8.8.2
acorn-walk: 8.2.0
arg: 4.1.3
create-require: 1.1.1
@@ -10504,14 +10466,14 @@ packages:
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
dev: true
- /tsutils/3.21.0_typescript@4.9.4:
+ /tsutils/3.21.0_typescript@5.0.2:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 4.9.4
+ typescript: 5.0.2
dev: true
/type-check/0.4.0:
@@ -10567,16 +10529,18 @@ packages:
hasBin: true
dev: true
- /ufo/0.8.6:
- resolution: {integrity: sha512-fk6CmUgwKCfX79EzcDQQpSCMxrHstvbLswFChHS0Vump+kFkw7nJBfTZoC1j0bOGoY9I7R3n2DGek5ajbcYnOw==}
+ /typescript/5.0.2:
+ resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==}
+ engines: {node: '>=12.20'}
+ hasBin: true
dev: true
- /ufo/1.0.1:
- resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==}
+ /ufo/0.8.6:
+ resolution: {integrity: sha512-fk6CmUgwKCfX79EzcDQQpSCMxrHstvbLswFChHS0Vump+kFkw7nJBfTZoC1j0bOGoY9I7R3n2DGek5ajbcYnOw==}
dev: true
- /ultrahtml/1.2.0:
- resolution: {integrity: sha512-vxZM2yNvajRmCj/SknRYGNXk2tqiy6kRNvZjJLaleG3zJbSh/aNkOqD1/CVzypw8tyHyhpzYuwQgMMhUB4ZVNQ==}
+ /ufo/1.1.1:
+ resolution: {integrity: sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==}
dev: true
/unbox-primitive/1.0.2:
@@ -10588,30 +10552,35 @@ packages:
which-boxed-primitive: 1.0.2
dev: true
- /unctx/2.1.1:
- resolution: {integrity: sha512-RffJlpvLOtolWsn0fxXsuSDfwiWcR6cyuykw2e0+zAggvGW1SesXt9WxIWlWpJhwVCZD/WlxxLqKLS50Q0CkWA==}
+ /uncrypto/0.1.2:
+ resolution: {integrity: sha512-kuZwRKV615lEw/Xx3Iz56FKk3nOeOVGaVmw0eg+x4Mne28lCotNFbBhDW7dEBCBKyKbRQiCadEZeNAFPVC5cgw==}
+ dev: true
+
+ /unctx/2.1.2:
+ resolution: {integrity: sha512-KK18aLRKe3OlbPyHbXAkIWSU3xK8GInomXfA7fzDMGFXQ1crX1UWrCzKesVXeUyHIayHUrnTvf87IPCKMyeKTg==}
dependencies:
- acorn: 8.8.1
- estree-walker: 3.0.1
- magic-string: 0.26.7
- unplugin: 1.0.0
+ acorn: 8.8.2
+ estree-walker: 3.0.3
+ magic-string: 0.27.0
+ unplugin: 1.3.1
dev: true
- /unenv/1.0.2:
- resolution: {integrity: sha512-senf7HmOHW3TuVCdhnrJcgVWabKnaU38oTRpppwWF0L6dJyfedY4MCiJeuwtrziqURZHuI2xxUoM90VLwG+e2Q==}
+ /unenv/1.2.2:
+ resolution: {integrity: sha512-SYqIFLFC4wYtLyxD6RyAfoK/dkgvW85BfNdiYvroyfrL4cyLkoigSldSBBiUTgtxwb4pcE0zexw502DghVWeuA==}
dependencies:
defu: 6.1.2
mime: 3.0.0
- node-fetch-native: 1.0.1
+ node-fetch-native: 1.0.2
pathe: 1.1.0
dev: true
- /unhead/1.0.18:
- resolution: {integrity: sha512-lHuOvFcj7ijFM6ceRuPq1+0sOAap8fueJxf+SkuWtfm68oxuLP8ct3C3oRyMT/hyWjzfWgoaECmjmw5x2cHnpg==}
+ /unhead/1.1.23:
+ resolution: {integrity: sha512-nM74sM3+puqhHLC9cbwk0rOsjZR41aP0UJeQcoYVuzFlX0+abECgPkpkSI+/HZsXeRVTGxs9WWmjiFHaG18DrQ==}
dependencies:
- '@unhead/dom': 1.0.18
- '@unhead/schema': 1.0.18
- hookable: 5.4.2
+ '@unhead/dom': 1.1.23
+ '@unhead/schema': 1.1.23
+ '@unhead/shared': 1.1.23
+ hookable: 5.5.1
dev: true
/unicode-canonical-property-names-ecmascript/2.0.0:
@@ -10632,11 +10601,25 @@ packages:
engines: {node: '>=4'}
dev: true
+ /unicode-properties/1.4.1:
+ resolution: {integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==}
+ dependencies:
+ base64-js: 1.5.1
+ unicode-trie: 2.0.0
+ dev: true
+
/unicode-property-aliases-ecmascript/2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
dev: true
+ /unicode-trie/2.0.0:
+ resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==}
+ dependencies:
+ pako: 0.2.9
+ tiny-inflate: 1.0.3
+ dev: true
+
/unified/10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies:
@@ -10657,48 +10640,66 @@ packages:
fast-glob: 3.2.12
local-pkg: 0.4.3
magic-string: 0.26.7
- mlly: 1.1.0
+ mlly: 1.2.0
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
scule: 1.0.0
- strip-literal: 1.0.0
- unplugin: 1.0.1
+ strip-literal: 1.0.1
+ unplugin: 1.3.1
transitivePeerDependencies:
- rollup
dev: true
- /unimport/2.0.1:
- resolution: {integrity: sha512-hMeDspGrEcocahicTr0AQYUGes24FvJtOxk9QEjeEOGv+n1EdpsDiT6z8t209PWhemPg0T5w/ooTVhup2GdrFA==}
+ /unimport/2.2.4:
+ resolution: {integrity: sha512-qMgmeEGqqrrmEtm0dqxMG37J6xBtrriqxq9hILvDb+e6l2F0yTnJomLoCCp0eghLR7bYGeBsUU5Y0oyiUYhViw==}
dependencies:
'@rollup/pluginutils': 5.0.2
escape-string-regexp: 5.0.0
fast-glob: 3.2.12
local-pkg: 0.4.3
magic-string: 0.27.0
- mlly: 1.1.0
+ mlly: 1.2.0
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
scule: 1.0.0
- strip-literal: 1.0.0
- unplugin: 1.0.1
+ strip-literal: 1.0.1
+ unplugin: 1.3.1
transitivePeerDependencies:
- rollup
dev: true
- /unimport/2.0.1_rollup@3.12.0:
- resolution: {integrity: sha512-hMeDspGrEcocahicTr0AQYUGes24FvJtOxk9QEjeEOGv+n1EdpsDiT6z8t209PWhemPg0T5w/ooTVhup2GdrFA==}
+ /unimport/3.0.3:
+ resolution: {integrity: sha512-RzQqQiqepF5P13SwBGCe4pLlRnAQlbFuDAaQlSkXiNJDpN2iymtGMSfa75AcVSejgV05Q2aQYt6UhCiy5GuZ2A==}
dependencies:
- '@rollup/pluginutils': 5.0.2_rollup@3.12.0
+ '@rollup/pluginutils': 5.0.2
escape-string-regexp: 5.0.0
fast-glob: 3.2.12
local-pkg: 0.4.3
- magic-string: 0.27.0
- mlly: 1.1.0
+ magic-string: 0.30.0
+ mlly: 1.2.0
+ pathe: 1.1.0
+ pkg-types: 1.0.2
+ scule: 1.0.0
+ strip-literal: 1.0.1
+ unplugin: 1.3.1
+ transitivePeerDependencies:
+ - rollup
+ dev: true
+
+ /unimport/3.0.3_rollup@3.19.1:
+ resolution: {integrity: sha512-RzQqQiqepF5P13SwBGCe4pLlRnAQlbFuDAaQlSkXiNJDpN2iymtGMSfa75AcVSejgV05Q2aQYt6UhCiy5GuZ2A==}
+ dependencies:
+ '@rollup/pluginutils': 5.0.2_rollup@3.19.1
+ escape-string-regexp: 5.0.0
+ fast-glob: 3.2.12
+ local-pkg: 0.4.3
+ magic-string: 0.30.0
+ mlly: 1.2.0
pathe: 1.1.0
- pkg-types: 1.0.1
+ pkg-types: 1.0.2
scule: 1.0.0
- strip-literal: 1.0.0
- unplugin: 1.0.1
+ strip-literal: 1.0.1
+ unplugin: 1.3.1
transitivePeerDependencies:
- rollup
dev: true
@@ -10762,11 +10763,11 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /unplugin-icons/0.14.14:
- resolution: {integrity: sha512-5apStlsB9AetB7JQ0DpHG+aFNGQOL8yrO+6XbYadywMXwCeLAPDPdSW0gWd8R3aB/rER1PM+LQikXlaakHH1Uw==}
+ /unplugin-icons/0.15.3:
+ resolution: {integrity: sha512-YWgJqv5AahrokeOnta8uX/m1damZA6Rf6zPClgHg2Fa/45iyOe3Lj+Wn/Ba+CSsq9yBffn17YfKfJNyWCNZPvw==}
peerDependencies:
'@svgr/core': '>=5.5.0'
- '@vue/compiler-sfc': ^3.0.2
+ '@vue/compiler-sfc': ^3.0.2 || ^2.7.0
vue-template-compiler: ^2.6.12
vue-template-es2015-compiler: ^1.9.0
peerDependenciesMeta:
@@ -10780,43 +10781,55 @@ packages:
optional: true
dependencies:
'@antfu/install-pkg': 0.1.1
- '@antfu/utils': 0.6.3
- '@iconify/utils': 2.0.2
+ '@antfu/utils': 0.7.2
+ '@iconify/utils': 2.1.5
debug: 4.3.4
- kolorist: 1.6.0
- local-pkg: 0.4.2
- unplugin: 1.0.0
+ kolorist: 1.7.0
+ local-pkg: 0.4.3
+ unplugin: 1.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /unplugin-vue-components/0.22.11_vue@3.2.45:
- resolution: {integrity: sha512-GTzqPl0Ek8fq8qMufjR6hvtnjnSwMpJ1Rg2Ez9AcKZVp1piWoU/Q4FDnI9wHVKX8eenYL0nqAF3ejYAk1TUfqQ==}
+ /unplugin-vue-components/0.24.1_vue@3.2.47:
+ resolution: {integrity: sha512-T3A8HkZoIE1Cja95xNqolwza0yD5IVlgZZ1PVAGvVCx8xthmjsv38xWRCtHtwl+rvZyL9uif42SRkDGw9aCfMA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/parser': ^7.15.8
+ '@nuxt/kit': ^3.2.2
vue: 2 || 3
peerDependenciesMeta:
'@babel/parser':
optional: true
+ '@nuxt/kit':
+ optional: true
dependencies:
'@antfu/utils': 0.7.2
'@rollup/pluginutils': 5.0.2
chokidar: 3.5.3
debug: 4.3.4
fast-glob: 3.2.12
- local-pkg: 0.4.2
- magic-string: 0.26.7
- minimatch: 5.1.1
+ local-pkg: 0.4.3
+ magic-string: 0.30.0
+ minimatch: 7.4.2
resolve: 1.22.1
- unplugin: 1.0.0
- vue: 3.2.45
+ unplugin: 1.3.1
+ vue: 3.2.47
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /unplugin/0.6.3_b6bkal6d3amohuonzzah3gcceu:
+ /unplugin/0.10.2:
+ resolution: {integrity: sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==}
+ dependencies:
+ acorn: 8.8.2
+ chokidar: 3.5.3
+ webpack-sources: 3.2.3
+ webpack-virtual-modules: 0.4.6
+ dev: true
+
+ /unplugin/0.6.3_vite@4.2.0:
resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==}
peerDependencies:
esbuild: '>=0.13'
@@ -10834,56 +10847,67 @@ packages:
optional: true
dependencies:
chokidar: 3.5.3
- vite: 3.0.0-beta.10_sass@1.53.0
- webpack: 5.75.0
- webpack-sources: 3.2.3
- webpack-virtual-modules: 0.4.6
- dev: true
-
- /unplugin/1.0.0:
- resolution: {integrity: sha512-H5UnBUxfhTXBXGo2AwKsl0UaLSHzSNDZNehPQSgdhVfO/t+XAS1Yoj3vmLrrlBrS9ZwtH5tejbX/TCp5DcyCKg==}
- dependencies:
- acorn: 8.8.1
- chokidar: 3.5.3
+ vite: 4.2.0_sass@1.59.3
webpack-sources: 3.2.3
webpack-virtual-modules: 0.4.6
dev: true
- /unplugin/1.0.1:
- resolution: {integrity: sha512-aqrHaVBWW1JVKBHmGo33T5TxeL0qWzfvjWokObHA9bYmN7eNDkwOxmLjhioHl9878qDFMAaT51XNroRyuz7WxA==}
+ /unplugin/1.3.1:
+ resolution: {integrity: sha512-h4uUTIvFBQRxUKS2Wjys6ivoeofGhxzTe2sRWlooyjHXVttcVfV/JiavNd3d4+jty0SVV0dxGw9AkY9MwiaCEw==}
dependencies:
- acorn: 8.8.1
+ acorn: 8.8.2
chokidar: 3.5.3
webpack-sources: 3.2.3
webpack-virtual-modules: 0.5.0
dev: true
- /unstorage/1.0.1:
- resolution: {integrity: sha512-J1c4b8K2KeihHrQtdgl/ybIapArUbPaPb+TyJy/nGSauDwDYqciZsEKdkee568P3c8SSH4TIgnGRHDWMPGw+Lg==}
+ /unstorage/1.4.1:
+ resolution: {integrity: sha512-ETLczXBd7sjJZuA3oIzaYwhMShiGlo7cGx01Ww23x2ehlk6WiRR1YsmjDBipoiGorq8pX1RRoMQFp/n3me7QOg==}
+ peerDependencies:
+ '@azure/app-configuration': ^1.3.1
+ '@azure/cosmos': ^3.17.3
+ '@azure/data-tables': ^13.2.1
+ '@azure/identity': ^3.1.3
+ '@azure/keyvault-secrets': ^4.6.0
+ '@azure/storage-blob': ^12.13.0
+ '@planetscale/database': ^1.6.0
+ peerDependenciesMeta:
+ '@azure/app-configuration':
+ optional: true
+ '@azure/cosmos':
+ optional: true
+ '@azure/data-tables':
+ optional: true
+ '@azure/identity':
+ optional: true
+ '@azure/keyvault-secrets':
+ optional: true
+ '@azure/storage-blob':
+ optional: true
+ '@planetscale/database':
+ optional: true
dependencies:
anymatch: 3.1.3
chokidar: 3.5.3
destr: 1.2.2
- h3: 1.0.1
- ioredis: 5.2.4
- listhen: 1.0.1
- mkdir: 0.0.2
+ h3: 1.6.2
+ ioredis: 5.3.1
+ listhen: 1.0.4
+ lru-cache: 7.18.3
mri: 1.2.0
- ofetch: 1.0.0
- ufo: 1.0.1
- ws: 8.11.0
+ node-fetch-native: 1.0.2
+ ofetch: 1.0.1
+ ufo: 1.1.1
transitivePeerDependencies:
- - bufferutil
- supports-color
- - utf-8-validate
dev: true
/untyped/1.2.2:
resolution: {integrity: sha512-EANYd5L6AdpgfldlgMcmvOOnj092nWhy0ybhc7uhEH12ipytDYz89EOegBQKj8qWL3u1wgYnmFjADhsuCJs5Aw==}
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.3
'@babel/standalone': 7.20.14
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.3
scule: 1.0.0
transitivePeerDependencies:
- supports-color
@@ -10900,8 +10924,19 @@ packages:
picocolors: 1.0.0
dev: true
- /update-check/1.5.2:
- resolution: {integrity: sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ==}
+ /update-browserslist-db/1.0.10_browserslist@4.21.5:
+ resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.21.5
+ escalade: 3.1.1
+ picocolors: 1.0.0
+ dev: true
+
+ /update-check/1.5.4:
+ resolution: {integrity: sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==}
dependencies:
registry-auth-token: 3.3.2
registry-url: 3.1.0
@@ -10972,19 +11007,17 @@ packages:
vfile-message: 3.1.3
dev: true
- /vite-node/0.28.3_ossbc5wwtkmmaxcuzqgxrmf6fe:
- resolution: {integrity: sha512-uJJAOkgVwdfCX8PUQhqLyDOpkBS5+j+FdbsXoPVPDlvVjRkb/W/mLYQPSL6J+t8R0UV8tJSe8c9VyxVQNsDSyg==}
+ /vite-node/0.29.3_sass@1.59.3:
+ resolution: {integrity: sha512-QYzYSA4Yt2IiduEjYbccfZQfxKp+T1Do8/HEpSX/G5WIECTFKJADwLs9c94aQH4o0A+UtCKU61lj1m5KvbxxQA==}
engines: {node: '>=v14.16.0'}
hasBin: true
dependencies:
cac: 6.7.14
debug: 4.3.4
- mlly: 1.1.0
+ mlly: 1.2.0
pathe: 1.1.0
picocolors: 1.0.0
- source-map: 0.6.1
- source-map-support: 0.5.21
- vite: 4.0.4_ossbc5wwtkmmaxcuzqgxrmf6fe
+ vite: 4.2.0_sass@1.59.3
transitivePeerDependencies:
- '@types/node'
- less
@@ -10995,19 +11028,17 @@ packages:
- terser
dev: true
- /vite-node/0.28.3_sass@1.53.0:
- resolution: {integrity: sha512-uJJAOkgVwdfCX8PUQhqLyDOpkBS5+j+FdbsXoPVPDlvVjRkb/W/mLYQPSL6J+t8R0UV8tJSe8c9VyxVQNsDSyg==}
+ /vite-node/0.29.3_ynp6w3242h2cdpoek6cm5ob2f4:
+ resolution: {integrity: sha512-QYzYSA4Yt2IiduEjYbccfZQfxKp+T1Do8/HEpSX/G5WIECTFKJADwLs9c94aQH4o0A+UtCKU61lj1m5KvbxxQA==}
engines: {node: '>=v14.16.0'}
hasBin: true
dependencies:
cac: 6.7.14
debug: 4.3.4
- mlly: 1.1.0
+ mlly: 1.2.0
pathe: 1.1.0
picocolors: 1.0.0
- source-map: 0.6.1
- source-map-support: 0.5.21
- vite: 4.0.4_sass@1.53.0
+ vite: 4.2.0_ynp6w3242h2cdpoek6cm5ob2f4
transitivePeerDependencies:
- '@types/node'
- less
@@ -11018,8 +11049,8 @@ packages:
- terser
dev: true
- /vite-plugin-checker/0.5.5_6wv62fpji7whzkophcofqgcbq4:
- resolution: {integrity: sha512-BLaRlBmiVn3Fg/wR9A0+YNwgXVteFJaH8rCIiIgYQcQ50jc3oVe2m8i0xxG5geq36UttNJsAj7DpDelN7/KjOg==}
+ /vite-plugin-checker/0.5.6_sdidq2uhycxwhmfb6zmtxua6uu:
+ resolution: {integrity: sha512-ftRyON0gORUHDxcDt2BErmsikKSkfvl1i2DoP6Jt2zDO9InfvM6tqO1RkXhSjkaXEhKPea6YOnhFaZxW3BzudQ==}
engines: {node: '>=14.16'}
peerDependencies:
eslint: '>=7'
@@ -11054,7 +11085,7 @@ packages:
chalk: 4.1.2
chokidar: 3.5.3
commander: 8.3.0
- eslint: 8.32.0
+ eslint: 8.36.0
fast-glob: 3.2.12
fs-extra: 11.1.0
lodash.debounce: 4.0.8
@@ -11062,16 +11093,15 @@ packages:
npm-run-path: 4.0.1
strip-ansi: 6.0.1
tiny-invariant: 1.3.1
- typescript: 4.9.4
- vite: 4.0.4_sass@1.53.0
+ typescript: 5.0.2
+ vite: 4.1.4_sass@1.59.3
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.8
vscode-uri: 3.0.6
- vue-tsc: 1.0.12_typescript@4.9.4
dev: true
- /vite-plugin-windicss/1.8.8_vite@3.0.0-beta.10:
+ /vite-plugin-windicss/1.8.8_vite@4.2.0:
resolution: {integrity: sha512-iyu+ZX0NmhNEUaLPv7xtC+EFRBpWMmw0nhd9a9upayfuNG/thwslKiQKmRB7U/dG0k/2oWLvPDvN/B9i7oRgSA==}
peerDependencies:
vite: ^2.0.1 || ^3.0.0
@@ -11079,42 +11109,48 @@ packages:
'@windicss/plugin-utils': 1.8.8
debug: 4.3.4
kolorist: 1.6.0
- vite: 3.0.0-beta.10_sass@1.53.0
+ vite: 4.2.0_sass@1.59.3
windicss: 3.5.6
transitivePeerDependencies:
- supports-color
dev: true
- /vite/3.0.0-beta.10_sass@1.53.0:
- resolution: {integrity: sha512-QtzSQVuhNLDp9j4wNdVT3aDyWyvoAL4QxBU/lnMyEKqTzYrXdqyHpFmfWW/wo/0uTluZKzbsUm89eQq2RxiKMg==}
- engines: {node: '>=14.18.0'}
+ /vite/4.1.4_sass@1.59.3:
+ resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==}
+ engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
+ '@types/node': '>= 14'
less: '*'
sass: '*'
stylus: '*'
+ sugarss: '*'
terser: ^5.4.0
peerDependenciesMeta:
+ '@types/node':
+ optional: true
less:
optional: true
sass:
optional: true
stylus:
optional: true
+ sugarss:
+ optional: true
terser:
optional: true
dependencies:
- esbuild: 0.14.54
- postcss: 8.4.14
+ esbuild: 0.16.17
+ postcss: 8.4.21
resolve: 1.22.1
- rollup: 2.79.1
- sass: 1.53.0
+ rollup: 3.19.1
+ sass: 1.59.3
optionalDependencies:
fsevents: 2.3.2
dev: true
- /vite/4.0.4_ossbc5wwtkmmaxcuzqgxrmf6fe:
- resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==}
+ /vite/4.2.0_sass@1.59.3:
+ resolution: {integrity: sha512-AbDTyzzwuKoRtMIRLGNxhLRuv1FpRgdIw+1y6AQG73Q5+vtecmvzKo/yk8X/vrHDpETRTx01ABijqUHIzBXi0g==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -11138,18 +11174,17 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 18.11.12
- esbuild: 0.16.17
+ esbuild: 0.17.5
postcss: 8.4.21
resolve: 1.22.1
- rollup: 3.12.0
- sass: 1.53.0
+ rollup: 3.19.1
+ sass: 1.59.3
optionalDependencies:
fsevents: 2.3.2
dev: true
- /vite/4.0.4_sass@1.53.0:
- resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==}
+ /vite/4.2.0_ynp6w3242h2cdpoek6cm5ob2f4:
+ resolution: {integrity: sha512-AbDTyzzwuKoRtMIRLGNxhLRuv1FpRgdIw+1y6AQG73Q5+vtecmvzKo/yk8X/vrHDpETRTx01ABijqUHIzBXi0g==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -11173,17 +11208,18 @@ packages:
terser:
optional: true
dependencies:
- esbuild: 0.16.17
+ '@types/node': 18.11.12
+ esbuild: 0.17.5
postcss: 8.4.21
resolve: 1.22.1
- rollup: 3.12.0
- sass: 1.53.0
+ rollup: 3.19.1
+ sass: 1.59.3
optionalDependencies:
fsevents: 2.3.2
dev: true
- /vitest/0.28.3_sass@1.53.0:
- resolution: {integrity: sha512-N41VPNf3VGJlWQizGvl1P5MGyv3ZZA2Zvh+2V8L6tYBAAuqqDK4zExunT1Cdb6dGfZ4gr+IMrnG8d4Z6j9ctPw==}
+ /vitest/0.29.3_sass@1.59.3:
+ resolution: {integrity: sha512-muMsbXnZsrzDGiyqf/09BKQsGeUxxlyLeLK/sFFM4EXdURPQRv8y7dco32DXaRORYP0bvyN19C835dT23mL0ow==}
engines: {node: '>=v14.16.0'}
hasBin: true
peerDependencies:
@@ -11207,11 +11243,11 @@ packages:
'@types/chai': 4.3.4
'@types/chai-subset': 1.3.3
'@types/node': 18.11.12
- '@vitest/expect': 0.28.3
- '@vitest/runner': 0.28.3
- '@vitest/spy': 0.28.3
- '@vitest/utils': 0.28.3
- acorn: 8.8.1
+ '@vitest/expect': 0.29.3
+ '@vitest/runner': 0.29.3
+ '@vitest/spy': 0.29.3
+ '@vitest/utils': 0.29.3
+ acorn: 8.8.2
acorn-walk: 8.2.0
cac: 6.7.14
chai: 4.3.7
@@ -11220,13 +11256,13 @@ packages:
pathe: 1.1.0
picocolors: 1.0.0
source-map: 0.6.1
- std-env: 3.3.1
- strip-literal: 1.0.0
+ std-env: 3.3.2
+ strip-literal: 1.0.1
tinybench: 2.3.1
tinypool: 0.3.1
tinyspy: 1.0.2
- vite: 4.0.4_ossbc5wwtkmmaxcuzqgxrmf6fe
- vite-node: 0.28.3_ossbc5wwtkmmaxcuzqgxrmf6fe
+ vite: 4.2.0_ynp6w3242h2cdpoek6cm5ob2f4
+ vite-node: 0.29.3_ynp6w3242h2cdpoek6cm5ob2f4
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -11277,13 +11313,13 @@ packages:
resolution: {integrity: sha512-fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ==}
dev: true
- /vue-bundle-renderer/1.0.0:
- resolution: {integrity: sha512-43vCqTgaMXfHhtR8/VcxxWD1DgtzyvNc4wNyG5NKCIH19O1z5G9ZCRXTGEA2wifVec5PU82CkRLD2sTK9NkTdA==}
+ /vue-bundle-renderer/1.0.2:
+ resolution: {integrity: sha512-jfFfTlXV7Xp2LxqcdRnBslFLb4C/DBvecTgpUYcDpMd75u326svTmEqa8YX5d1t7Mh9jODKdt8y+/z+8Pegh3g==}
dependencies:
- ufo: 1.0.1
+ ufo: 1.1.1
dev: true
- /vue-demi/0.13.11_vue@3.2.45:
+ /vue-demi/0.13.11_vue@3.2.47:
resolution: {integrity: sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==}
engines: {node: '>=12'}
hasBin: true
@@ -11295,50 +11331,32 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 3.2.45
+ vue: 3.2.47
dev: true
/vue-devtools-stub/0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
dev: true
- /vue-eslint-parser/8.3.0_eslint@8.32.0:
- resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '>=6.0.0'
- dependencies:
- debug: 4.3.4
- eslint: 8.32.0
- eslint-scope: 7.1.1
- eslint-visitor-keys: 3.3.0
- espree: 9.4.1
- esquery: 1.4.0
- lodash: 4.17.21
- semver: 7.3.8
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /vue-eslint-parser/9.1.0_eslint@8.32.0:
+ /vue-eslint-parser/9.1.0_eslint@8.36.0:
resolution: {integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.4
- eslint: 8.32.0
+ eslint: 8.36.0
eslint-scope: 7.1.1
eslint-visitor-keys: 3.3.0
- espree: 9.4.1
- esquery: 1.4.0
+ espree: 9.5.0
+ esquery: 1.5.0
lodash: 4.17.21
semver: 7.3.8
transitivePeerDependencies:
- supports-color
dev: true
- /vue-i18n/9.2.2_vue@3.2.45:
+ /vue-i18n/9.2.2_vue@3.2.47:
resolution: {integrity: sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==}
engines: {node: '>= 14'}
peerDependencies:
@@ -11347,53 +11365,27 @@ packages:
'@intlify/core-base': 9.2.2
'@intlify/shared': 9.2.2
'@intlify/vue-devtools': 9.2.2
- '@vue/devtools-api': 6.4.5
- vue: 3.2.45
+ '@vue/devtools-api': 6.5.0
+ vue: 3.2.47
dev: true
- /vue-router/4.1.6_vue@3.2.45:
+ /vue-router/4.1.6_vue@3.2.47:
resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==}
peerDependencies:
vue: ^3.2.0
dependencies:
- '@vue/devtools-api': 6.4.5
- vue: 3.2.45
- dev: true
-
- /vue-template-compiler/2.7.14:
- resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==}
- dependencies:
- de-indent: 1.0.2
- he: 1.2.0
- dev: true
-
- /vue-tsc/1.0.12_typescript@4.9.4:
- resolution: {integrity: sha512-uWSASSHMfC61eEEOuLwf+eF9ODg0UzBV42/lIkZamxsA3PFZyV/eaq+RpEFP+NRXfL0GeXZUxY6l2dm9xlY07Q==}
- hasBin: true
- peerDependencies:
- typescript: '*'
- dependencies:
- '@volar/vue-language-core': 1.0.12
- '@volar/vue-typescript': 1.0.12
- typescript: 4.9.4
- dev: true
-
- /vue/3.2.45:
- resolution: {integrity: sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==}
- dependencies:
- '@vue/compiler-dom': 3.2.45
- '@vue/compiler-sfc': 3.2.45
- '@vue/runtime-dom': 3.2.45
- '@vue/server-renderer': 3.2.45_vue@3.2.45
- '@vue/shared': 3.2.45
+ '@vue/devtools-api': 6.5.0
+ vue: 3.2.47
dev: true
- /watchpack/2.4.0:
- resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
- engines: {node: '>=10.13.0'}
+ /vue/3.2.47:
+ resolution: {integrity: sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==}
dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
+ '@vue/compiler-dom': 3.2.47
+ '@vue/compiler-sfc': 3.2.47
+ '@vue/runtime-dom': 3.2.47
+ '@vue/server-renderer': 3.2.47_vue@3.2.47
+ '@vue/shared': 3.2.47
dev: true
/wcwidth/1.0.1:
@@ -11428,46 +11420,6 @@ packages:
resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
dev: true
- /webpack/5.75.0:
- resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/eslint-scope': 3.7.4
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.8.1
- acorn-import-assertions: 1.8.0_acorn@8.8.1
- browserslist: 4.21.4
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.12.0
- es-module-lexer: 0.9.3
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.10
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.1.1
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.6_webpack@5.75.0
- watchpack: 2.4.0
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
- dev: true
-
/whatwg-url/5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
@@ -11485,11 +11437,25 @@ packages:
is-symbol: 1.0.4
dev: true
- /which/1.3.1:
- resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
- hasBin: true
+ /which-collection/1.0.1:
+ resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
dependencies:
- isexe: 2.0.0
+ is-map: 2.0.2
+ is-set: 2.0.2
+ is-weakmap: 2.0.1
+ is-weakset: 2.0.2
+ dev: true
+
+ /which-typed-array/1.1.9:
+ resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.0
+ is-typed-array: 1.1.10
dev: true
/which/2.0.2:
@@ -11515,11 +11481,11 @@ packages:
string-width: 4.2.3
dev: true
- /widest-line/3.1.0:
- resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
- engines: {node: '>=8'}
+ /widest-line/4.0.1:
+ resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
+ engines: {node: '>=12'}
dependencies:
- string-width: 4.2.3
+ string-width: 5.1.2
dev: true
/windicss-analysis/0.3.5:
@@ -11607,8 +11573,8 @@ packages:
optional: true
dev: true
- /ws/8.12.0:
- resolution: {integrity: sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==}
+ /ws/8.13.0:
+ resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -11620,19 +11586,6 @@ packages:
optional: true
dev: true
- /ws/8.2.3:
- resolution: {integrity: sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: true
-
/xml-name-validator/4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
@@ -11675,8 +11628,8 @@ packages:
engines: {node: '>= 6'}
dev: true
- /yaml/2.1.3:
- resolution: {integrity: sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg==}
+ /yaml/2.2.1:
+ resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==}
engines: {node: '>= 14'}
dev: true
@@ -11718,6 +11671,10 @@ packages:
engines: {node: '>=12.20'}
dev: true
+ /zhead/2.0.4:
+ resolution: {integrity: sha512-V4R94t3ifk9AURym6OskbKcnowzgp5Z88tkoL/NF67vyryNxC62u6mx5F1Ux4oh4+YN7FFmKYEyWy6m5kfPH6g==}
+ dev: true
+
/zip-stream/4.1.0:
resolution: {integrity: sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==}
engines: {node: '>= 10'}
diff --git a/server/routes/sitemap.xml.ts b/server/routes/sitemap.xml.ts
new file mode 100644
index 0000000..237e758
--- /dev/null
+++ b/server/routes/sitemap.xml.ts
@@ -0,0 +1,21 @@
+// https://content.nuxtjs.org/guide/recipes/sitemap
+import { SitemapStream, streamToPromise } from 'sitemap'
+import { serverQueryContent } from '#content/server'
+
+export default defineEventHandler(async (event) => {
+ // Fetch all documents
+ const docs = await serverQueryContent(event).find()
+ const sitemap = new SitemapStream({
+ hostname: 'https://example.com',
+ })
+
+ for (const doc of docs) {
+ sitemap.write({
+ url: doc._path,
+ changefreq: 'monthly',
+ })
+ }
+ sitemap.end()
+
+ return streamToPromise(sitemap)
+})