diff --git a/.gitignore b/.gitignore
index 6a0653049..bbf0c7f75 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ docs/.vuepress/.temp/
docs/.vuepress/dist/
dist/
.idea/
+.npmrc
diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts
index 553482551..898580797 100644
--- a/docs/.vuepress/config.ts
+++ b/docs/.vuepress/config.ts
@@ -1,8 +1,6 @@
+import { viteBundler } from "@vuepress/bundler-vite";
import { googleAnalyticsPlugin } from "@vuepress/plugin-google-analytics";
import { defineUserConfig } from "vuepress";
-// https://ecosystem.vuejs.press/zh/plugins/redirect.html
-import { redirectPlugin } from "vuepress-plugin-redirect";
-import { addCustomElement, addViteConfig } from "vuepress-shared/node";
import theme from "./theme.js";
@@ -57,38 +55,23 @@ export default defineUserConfig({
googleAnalyticsPlugin({
id: "G-F3LFJCE3RM",
}),
- redirectPlugin({
- defaultLocale: "/en/",
- autoLocale: true,
- switchLocale: "modal",
- localeConfig: {
- "/en/": ["en-US", "en-UK", "en"],
- "/zh/": ["zh-CN", "zh-TW", "zh"],
- "/ru/": [
- "ru-RU",
- "ru-KZ",
- "ru-BY",
- "ru-UA",
- "ru-MD",
- "ru-LV",
- "tt-RU",
- "ru",
- ],
- "/id/": ["id-ID", "id"],
- },
- }),
],
- theme,
-
- shouldPrefetch: false,
-
- extendsBundlerOptions: (config, app) => {
- addViteConfig(config, app, {
+ bundler: viteBundler({
+ viteOptions: {
build: {
chunkSizeWarningLimit: 1500,
},
- });
- addCustomElement(config, app, "ms-store-badge");
- },
+ },
+ vuePluginOptions: {
+ template: {
+ compilerOptions: {
+ isCustomElement: (tag) => tag === "ms-store-badge",
+ },
+ },
+ },
+ }),
+ theme,
+
+ shouldPrefetch: false,
});
diff --git a/docs/.vuepress/navbar/en.ts b/docs/.vuepress/navbar/en.ts
index 41a3de196..d27e5fdab 100644
--- a/docs/.vuepress/navbar/en.ts
+++ b/docs/.vuepress/navbar/en.ts
@@ -2,11 +2,15 @@ import { navbar } from "vuepress-theme-hope";
export const enNavbar = navbar([
"/en/",
- { text: "Document", icon: "iconfont icon-article", link: "/en/menu.html" },
+ {
+ text: "Document",
+ icon: "iconfont icon-article",
+ link: "/en/menu",
+ },
{
text: "Download",
icon: "iconfont icon-install",
- link: "/en/quick-start.html",
+ link: "/en/quick-start",
},
{
text: "Community",
@@ -16,11 +20,12 @@ export const enNavbar = navbar([
{
text: "Help & Support",
icon: "iconfont icon-define",
+ prefix: "/en/",
children: [
{
text: "Update Log",
icon: "iconfont icon-update",
- link: "/en/statements/update-log.html"
+ link: "statements/update-log",
},
{
text: "Service Availability",
@@ -34,25 +39,24 @@ export const enNavbar = navbar([
text: "Uptime Kuma",
icon: "/images/202312/uptime-kuma.svg",
link: "https://status.snapgenshin.cn/status",
- }
- ]
+ },
+ ],
},
{
text: "Question & Feedback",
- children:[
+ children: [
{
text: "FAQ",
icon: "iconfont icon-ask",
- link: "/en/advanced/FAQ.html"
+ link: "advanced/FAQ",
},
{
text: "Report Bug",
icon: "iconfont icon-debug",
- link: "/en/statements/bug-report.html"
+ link: "statements/bug-report",
},
-
- ]
- }
- ]
+ ],
+ },
+ ],
},
]);
diff --git a/docs/.vuepress/navbar/id.ts b/docs/.vuepress/navbar/id.ts
index 08761145a..6dfd4b8fa 100644
--- a/docs/.vuepress/navbar/id.ts
+++ b/docs/.vuepress/navbar/id.ts
@@ -2,7 +2,11 @@ import { navbar } from "vuepress-theme-hope";
export const idNavbar = navbar([
"/id/",
- { text: "Document", icon: "iconfont icon-article", link: "/id/menu.html" },
+ {
+ text: "Document",
+ icon: "iconfont icon-article",
+ link: "/id/menu",
+ },
{
text: "Unduh",
icon: "iconfont icon-install",
@@ -26,7 +30,7 @@ export const idNavbar = navbar([
text: "Uptime Kuma",
icon: "/images/202312/uptime-kuma.svg",
link: "https://status.snapgenshin.cn/status",
- }
- ]
+ },
+ ],
},
]);
diff --git a/docs/.vuepress/navbar/index.ts b/docs/.vuepress/navbar/index.ts
index 0be326fa2..b3602d78f 100644
--- a/docs/.vuepress/navbar/index.ts
+++ b/docs/.vuepress/navbar/index.ts
@@ -1,4 +1,4 @@
export * from "./en.js";
export * from "./zh.js";
export * from "./ru.js";
-export * from "./id.js";
\ No newline at end of file
+export * from "./id.js";
diff --git a/docs/.vuepress/navbar/ru.ts b/docs/.vuepress/navbar/ru.ts
index 44019da65..4f7467189 100644
--- a/docs/.vuepress/navbar/ru.ts
+++ b/docs/.vuepress/navbar/ru.ts
@@ -2,7 +2,11 @@ import { navbar } from "vuepress-theme-hope";
export const ruNavbar = navbar([
"/ru/",
- { text: "Документация", icon: "iconfont icon-article", link: "/ru/menu.html" },
+ {
+ text: "Документация",
+ icon: "iconfont icon-article",
+ link: "/ru/menu",
+ },
{
text: "Скачать",
icon: "iconfont icon-install",
@@ -26,7 +30,7 @@ export const ruNavbar = navbar([
text: "Uptime Kuma",
icon: "/images/202312/uptime-kuma.svg",
link: "https://status.snapgenshin.cn/status",
- }
- ]
+ },
+ ],
},
]);
diff --git a/docs/.vuepress/navbar/zh.ts b/docs/.vuepress/navbar/zh.ts
index a4f0c2475..30874de99 100644
--- a/docs/.vuepress/navbar/zh.ts
+++ b/docs/.vuepress/navbar/zh.ts
@@ -2,11 +2,15 @@ import { navbar } from "vuepress-theme-hope";
export const zhNavbar = navbar([
"/zh/",
- { text: "文档", icon: "iconfont icon-article", link: "/zh/menu.html" },
+ {
+ text: "文档",
+ icon: "iconfont icon-article",
+ link: "/zh/menu",
+ },
{
text: "下载",
icon: "iconfont icon-install",
- link: "/zh/quick-start.html",
+ link: "/zh/quick-start",
},
{
text: "支持我们",
@@ -21,11 +25,12 @@ export const zhNavbar = navbar([
{
text: "帮助与支持",
icon: "iconfont icon-define",
+ prefix: "/zh/",
children: [
{
text: "更新日志",
icon: "iconfont icon-update",
- link: "/zh/statements/update-log.html"
+ link: "statements/update-log",
},
{
text: "服务可用性",
@@ -39,25 +44,24 @@ export const zhNavbar = navbar([
text: "Uptime Kuma",
icon: "/images/202312/uptime-kuma.svg",
link: "https://status.snapgenshin.cn/status",
- }
- ]
+ },
+ ],
},
{
text: "问题与反馈",
- children:[
+ children: [
{
text: "常见问题",
icon: "iconfont icon-ask",
- link: "/zh/advanced/FAQ.html"
+ link: "advanced/FAQ.html",
},
{
text: "反馈问题",
icon: "iconfont icon-debug",
- link: "/zh/statements/bug-report.html"
+ link: "statements/bug-report.html",
},
-
- ]
- }
- ]
+ ],
+ },
+ ],
},
]);
diff --git a/docs/.vuepress/sidebar/en.ts b/docs/.vuepress/sidebar/en.ts
index 679fe41ff..1c3fa87a4 100644
--- a/docs/.vuepress/sidebar/en.ts
+++ b/docs/.vuepress/sidebar/en.ts
@@ -15,33 +15,25 @@ export const enSidebar = sidebar({
icon: "iconfont icon-module",
text: "Game Tools",
children: [
- "dashboard.md",
- "game-launcher.md",
- "wish-export.md",
- "achievements.md",
- "real-time-notes.md",
- "character-data.md",
- "hutao-API.md",
- "develop-plan.md"
- ]
+ "dashboard",
+ "game-launcher",
+ "wish-export",
+ "achievements",
+ "real-time-notes",
+ "character-data",
+ "hutao-API",
+ "develop-plan",
+ ],
},
{
icon: "iconfont icon-study",
text: "Game WIKI",
- children: [
- "character-wiki.md",
- "weapon-wiki.md",
- "monster-wiki.md"
- ]
+ children: ["character-wiki", "weapon-wiki", "monster-wiki"],
},
{
icon: "iconfont icon-setting",
text: "Snap Hutao Features",
- children: [
- "feedback-center.md",
- "hutao-passport.md",
- "hutao-settings.md"
- ]
+ children: ["feedback-center", "hutao-passport", "hutao-settings"],
},
],
},
@@ -68,6 +60,6 @@ export const enSidebar = sidebar({
text: "Dev Logs",
prefix: "blog/",
children: "structure",
- }
+ },
],
});
diff --git a/docs/.vuepress/sidebar/id.ts b/docs/.vuepress/sidebar/id.ts
index 5fff77d72..3c4a98b93 100644
--- a/docs/.vuepress/sidebar/id.ts
+++ b/docs/.vuepress/sidebar/id.ts
@@ -35,6 +35,6 @@ export const idSidebar = sidebar({
text: "Dev Logs",
prefix: "blog/",
children: "structure",
- }
+ },
],
});
diff --git a/docs/.vuepress/sidebar/index.ts b/docs/.vuepress/sidebar/index.ts
index 0be326fa2..b3602d78f 100644
--- a/docs/.vuepress/sidebar/index.ts
+++ b/docs/.vuepress/sidebar/index.ts
@@ -1,4 +1,4 @@
export * from "./en.js";
export * from "./zh.js";
export * from "./ru.js";
-export * from "./id.js";
\ No newline at end of file
+export * from "./id.js";
diff --git a/docs/.vuepress/sidebar/ru.ts b/docs/.vuepress/sidebar/ru.ts
index a7fb7229b..fc9963aef 100644
--- a/docs/.vuepress/sidebar/ru.ts
+++ b/docs/.vuepress/sidebar/ru.ts
@@ -35,6 +35,6 @@ export const ruSidebar = sidebar({
text: "Dev Logs",
prefix: "blog/",
children: "structure",
- }
+ },
],
});
diff --git a/docs/.vuepress/sidebar/zh.ts b/docs/.vuepress/sidebar/zh.ts
index 620cf01f9..1e0ea3bce 100644
--- a/docs/.vuepress/sidebar/zh.ts
+++ b/docs/.vuepress/sidebar/zh.ts
@@ -15,35 +15,27 @@ export const zhSidebar = sidebar({
icon: "iconfont icon-module",
text: "游戏工具",
children: [
- "dashboard.md",
- "game-launcher.md",
- "wish-export.md",
- "achievements.md",
- "real-time-notes.md",
- "character-data.md",
- "hutao-API.md",
- "develop-plan.md"
- ]
+ "dashboard",
+ "game-launcher",
+ "wish-export",
+ "achievements",
+ "real-time-notes",
+ "character-data",
+ "hutao-API",
+ "develop-plan",
+ ],
},
{
icon: "iconfont icon-study",
text: "游戏 WIKI",
- children: [
- "character-wiki.md",
- "weapon-wiki.md",
- "monster-wiki.md"
- ]
+ children: ["character-wiki", "weapon-wiki", "monster-wiki"],
},
{
icon: "iconfont icon-setting",
text: "软件功能",
- children: [
- "feedback-center.md",
- "hutao-passport.md",
- "hutao-settings.md"
- ]
+ children: ["feedback-center", "hutao-passport", "hutao-settings"],
},
- ]
+ ],
},
{
icon: "iconfont icon-advance",
@@ -68,6 +60,6 @@ export const zhSidebar = sidebar({
text: "开发日志",
prefix: "blog/",
children: "structure",
- }
+ },
],
});
diff --git a/docs/.vuepress/styles/index.scss b/docs/.vuepress/styles/index.scss
index a27abc493..06b7d1945 100644
--- a/docs/.vuepress/styles/index.scss
+++ b/docs/.vuepress/styles/index.scss
@@ -91,20 +91,3 @@ html[data-theme="dark"] {
color: #bbbbbb;
}
}
-
-.sponsor-diy-card{
- .vp-tabs{
- border: None;
- }
-
- .vp-tabs-nav{
- background: None;
- border-radius: 0 0 0;
- //display: None;
- }
-
- .vp-tab-nav{
- background: None;
- border-radius: 0 0 0;
- }
-}
diff --git a/docs/.vuepress/theme.ts b/docs/.vuepress/theme.ts
index fb017154f..d9a912931 100644
--- a/docs/.vuepress/theme.ts
+++ b/docs/.vuepress/theme.ts
@@ -311,12 +311,14 @@ export default hopeTheme({
},
pwa: {
+ appendBase: true,
+
favicon: "/favicon.ico",
cacheHTML: false,
- cachePic: true,
- appendBase: true,
+ cacheImage: true,
themeColor: "#f26d6d",
update: "hint",
+
apple: {
icon: "/favicon.ico",
statusBarColor: "black",
@@ -325,6 +327,7 @@ export default hopeTheme({
image: "/favicon.ico",
color: "#ffffff",
},
+
manifest: {
icons: [
{
@@ -360,5 +363,26 @@ export default hopeTheme({
],
},
},
+
+ redirect: {
+ defaultLocale: "/en/",
+ autoLocale: true,
+ switchLocale: "modal",
+ localeConfig: {
+ "/en/": ["en-US", "en-UK", "en"],
+ "/zh/": ["zh-CN", "zh-TW", "zh"],
+ "/ru/": [
+ "ru-RU",
+ "ru-KZ",
+ "ru-BY",
+ "ru-UA",
+ "ru-MD",
+ "ru-LV",
+ "tt-RU",
+ "ru",
+ ],
+ "/id/": ["id-ID", "id"],
+ },
+ },
},
});
diff --git a/docs/en/advanced/Gacha-system-and-export-principal.md b/docs/en/advanced/Gacha-system-and-export-principal.md
index dbc5e226b..735f3d721 100644
--- a/docs/en/advanced/Gacha-system-and-export-principal.md
+++ b/docs/en/advanced/Gacha-system-and-export-principal.md
@@ -60,4 +60,4 @@ Hutao, during import handling, compares the earliest index (ID) existing in loca
### Exporting Wishes
-~~Not yet implemented; under design~~ Already implemented
\ No newline at end of file
+~~Not yet implemented; under design~~ Already implemented
diff --git a/docs/en/advanced/README.md b/docs/en/advanced/README.md
index 925086984..cf85f0444 100644
--- a/docs/en/advanced/README.md
+++ b/docs/en/advanced/README.md
@@ -9,4 +9,4 @@ dir:
# Advanced
-
+
diff --git a/docs/en/blog/README.md b/docs/en/blog/README.md
index d94cd7edb..9dd960a70 100644
--- a/docs/en/blog/README.md
+++ b/docs/en/blog/README.md
@@ -9,4 +9,4 @@ dir:
# Dev Logs
-
+
diff --git a/docs/en/development/README.md b/docs/en/development/README.md
index a24dec674..e8f16ea59 100644
--- a/docs/en/development/README.md
+++ b/docs/en/development/README.md
@@ -10,4 +10,4 @@ dir:
# Open Source Development
-
+
diff --git a/docs/en/features/README.md b/docs/en/features/README.md
index 926907d99..a144f5355 100644
--- a/docs/en/features/README.md
+++ b/docs/en/features/README.md
@@ -10,4 +10,4 @@ dir:
# Features
-
+
diff --git a/docs/en/menu.md b/docs/en/menu.md
index ec9dc4d6e..da33d360f 100644
--- a/docs/en/menu.md
+++ b/docs/en/menu.md
@@ -8,4 +8,4 @@ icon: iconfont icon-workingDirectory
# Site Menu
-
+
diff --git a/docs/en/statements/README.md b/docs/en/statements/README.md
index f50c1b815..1d25f0107 100644
--- a/docs/en/statements/README.md
+++ b/docs/en/statements/README.md
@@ -12,4 +12,4 @@ dir:
**Snap Hutao project does NOT support, participate in, or cooperate with any project related to Genshin Impact's private server and cheating program.**
-
+
diff --git a/docs/id/advanced/Gacha-system-and-export-principal.md b/docs/id/advanced/Gacha-system-and-export-principal.md
index c3cbdd8c4..c1cfbef65 100644
--- a/docs/id/advanced/Gacha-system-and-export-principal.md
+++ b/docs/id/advanced/Gacha-system-and-export-principal.md
@@ -7,7 +7,7 @@ order: 8
comment: false
---
-# Sistem Gacha dan Prinsip Expor
+# Sistem Gacha dan Prinsip Expor
Sistem Gacha di Hutao mengalami redesain total dalam hal arsitektur dibandingkan dengan Snap Genshin.
@@ -60,4 +60,4 @@ Saat Hutao memproses impor, ia akan membandingkan indeks (ID) yang paling awal y
### Ekspor Catatan Gacha
-~~Belum diimplementasikan, sedang dalam perancangan~~ Sudah diimplementasikan
\ No newline at end of file
+~~Belum diimplementasikan, sedang dalam perancangan~~ Sudah diimplementasikan
diff --git a/docs/id/advanced/README.md b/docs/id/advanced/README.md
index b92ce9adb..6a6e16e10 100644
--- a/docs/id/advanced/README.md
+++ b/docs/id/advanced/README.md
@@ -9,4 +9,4 @@ dir:
# Lanjutan
-
+
diff --git a/docs/id/advanced/get-stoken-cookie-from-the-third-party.md b/docs/id/advanced/get-stoken-cookie-from-the-third-party.md
index a3b87a92d..3e8313198 100644
--- a/docs/id/advanced/get-stoken-cookie-from-the-third-party.md
+++ b/docs/id/advanced/get-stoken-cookie-from-the-third-party.md
@@ -48,4 +48,4 @@ Pengguna iOS dapat mengunduh aplikasi perekam lalu lintas Stream dari App Store
- Contoh formatnya: `stuid=****;stoken=v2****;mid=****;`
- Kirim Stoken yang telah Anda salin ke komputer yang telah terpasang Toolbox Hutao.
- Di tempat masuk akun Toolbox Hutao, ketuk `Manual Input`
-- Masukkan cookie yang Anda peroleh sebelumnya, sekarang Anda bisa masuk.
\ No newline at end of file
+- Masukkan cookie yang Anda peroleh sebelumnya, sekarang Anda bisa masuk.
diff --git a/docs/id/advanced/known-issue.md b/docs/id/advanced/known-issue.md
index 9b74ed16e..2920dd73b 100644
--- a/docs/id/advanced/known-issue.md
+++ b/docs/id/advanced/known-issue.md
@@ -10,9 +10,9 @@ order: 3
Anda dapat melihat semua masalah di [Halaman Issue GitHub](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aissue)
-| Kategori | Tanda |
-| ----------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
-| [Semua Masalah BUG yang Dibuka](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aissue+label%3ABUG+is%3Aopen) | Diberi label `BUG` |
-| [Semua Masalah Permintaan Fitur yang Dibuka](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aopen+is%3Aissue+label%3A%E5%8A%9F%E8%83%BD) | Diberi label `功能` (Fitur) |
-| [Masalah yang Telah Diperbaiki dan Diselesaikan](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aissue+label%3A%E5%B7%B2%E4%BF%AE%E5%A4%8D) | Diberi label `已修复` (Diperbaiki) |
+| Kategori | Tanda |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- |
+| [Semua Masalah BUG yang Dibuka](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aissue+label%3ABUG+is%3Aopen) | Diberi label `BUG` |
+| [Semua Masalah Permintaan Fitur yang Dibuka](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aopen+is%3Aissue+label%3A%E5%8A%9F%E8%83%BD) | Diberi label `功能` (Fitur) |
+| [Masalah yang Telah Diperbaiki dan Diselesaikan](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aissue+label%3A%E5%B7%B2%E4%BF%AE%E5%A4%8D) | Diberi label `已修复` (Diperbaiki) |
| [Masalah yang Akan Diperbaiki pada Versi Berikutnya](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aissue+label%3A%E7%AD%89%E5%BE%85%E5%8F%91%E5%B8%83) | Diberi label `等待发布` (Siap untuk Dipublikasikan) |
diff --git a/docs/id/advanced/uninstall.md b/docs/id/advanced/uninstall.md
index 6a0b4d2e5..9bd14d7ab 100644
--- a/docs/id/advanced/uninstall.md
+++ b/docs/id/advanced/uninstall.md
@@ -29,4 +29,4 @@ comment: false
- Cari atau temukan `Snap Hutao`
- Klik kanan, lalu pilih `Uninstall`
- Hapus folder data (Jika ingin menghapus sepenuhnya)
- - Buka dan hapus `%userprofile%/Documents/Hutao`
\ No newline at end of file
+ - Buka dan hapus `%userprofile%/Documents/Hutao`
diff --git a/docs/id/blog/README.md b/docs/id/blog/README.md
index d94cd7edb..9dd960a70 100644
--- a/docs/id/blog/README.md
+++ b/docs/id/blog/README.md
@@ -9,4 +9,4 @@ dir:
# Dev Logs
-
+
diff --git a/docs/id/blog/version-1-9-0-breaking-changes.md b/docs/id/blog/version-1-9-0-breaking-changes.md
index fa7337d4a..d8ab51170 100644
--- a/docs/id/blog/version-1-9-0-breaking-changes.md
+++ b/docs/id/blog/version-1-9-0-breaking-changes.md
@@ -30,9 +30,9 @@ Snap Hutao versi 1.9.0 dijadwalkan akan rilis pada akhir pekan sebelum Natal 202
Langsung menginstal paket ini akan menyebabkan masalah tergantung pada versi sistem Anda karena konflik nama paket dan tanda tangan.
-| Versi Sistem | Masalah yang Diharapkan |
-| :----------: | :--------------------------------------------------------------------------------------------------------------------------------------: |
-| Windows 10 | Tidak dapat diinstal; konflik tanda tangan dan nama paket |
+| Versi Sistem | Masalah yang Diharapkan |
+| :----------: | :----------------------------------------------------------------------------------------------------------------------------------: |
+| Windows 10 | Tidak dapat diinstal; konflik tanda tangan dan nama paket |
| Windows 11 | Instalasi berhasil;
Koeksistensi dengan versi Snap Hutao lama dengan nama yang sama menyebabkan kesalahan waktu jalannya program |
Karena masalah di atas, Anda perlu menghapus versi Snap Hutao lama terlebih dahulu dan kemudian menginstal paket versi 1.9.0.
diff --git a/docs/id/community.md b/docs/id/community.md
index 1ec6d316c..cd7afd766 100644
--- a/docs/id/community.md
+++ b/docs/id/community.md
@@ -25,4 +25,4 @@ Sebagai perangkat lunak sumber terbuka, kekuatan komunitas adalah bagian penting
## Discord
-Tautan undangan: [https://discord.gg/Yb8bykaUKp](https://discord.gg/Yb8bykaUKp)
\ No newline at end of file
+Tautan undangan: [https://discord.gg/Yb8bykaUKp](https://discord.gg/Yb8bykaUKp)
diff --git a/docs/id/development/README.md b/docs/id/development/README.md
index a24dec674..e8f16ea59 100644
--- a/docs/id/development/README.md
+++ b/docs/id/development/README.md
@@ -10,4 +10,4 @@ dir:
# Open Source Development
-
+
diff --git a/docs/id/development/contribute.md b/docs/id/development/contribute.md
index 4acfb0098..fc4d991f4 100644
--- a/docs/id/development/contribute.md
+++ b/docs/id/development/contribute.md
@@ -40,4 +40,4 @@ Setelah kode diperbarui di cabang `develop` dan `main`, skrip CI Azure Pipeline
Anda perlu menginstal sertifikat [Snap.Hutao.CI.cer](https://github.com/DGP-Studio/Snap.Hutao/releases/download/2023.10.3.1/Snap.Hutao.CI.cer) ke mesin lokal Anda, dan kemudian instal paket msix di rilis tersebut.
-\*Jika rilis terbaru tidak berisi file terlampir, itu berarti paket masih dalam proses pengunggahan.
\ No newline at end of file
+\*Jika rilis terbaru tidak berisi file terlampir, itu berarti paket masih dalam proses pengunggahan.
diff --git a/docs/id/development/platform.md b/docs/id/development/platform.md
index 983d1fa2d..04674523f 100644
--- a/docs/id/development/platform.md
+++ b/docs/id/development/platform.md
@@ -49,4 +49,4 @@ dengan fitur yang berbeda-beda. Untuk memfasilitasi hal ini, Snap Hutao telah me
Sejak itu, standar ini telah mendapatkan pengakuan lebih dari pengembang, mengarah pada promosi standar tambahan.
Banyak pengembang sekarang berkumpul di bawah [organisasi UIGF](https://github.com/UIGF-org). Tujuan kami adalah
untuk menjaga organisasi ini, memungkinkan pengembang untuk terhubung dengan lebih banyak pengguna, menerima umpan
-balik, membuat kemajuan teknis, dan menciptakan alat Genshin Impact open source yang luar biasa.
\ No newline at end of file
+balik, membuat kemajuan teknis, dan menciptakan alat Genshin Impact open source yang luar biasa.
diff --git a/docs/id/features/README.md b/docs/id/features/README.md
index 0bd52956a..0b7d21a78 100644
--- a/docs/id/features/README.md
+++ b/docs/id/features/README.md
@@ -10,4 +10,4 @@ dir:
# Fitur
-
\ No newline at end of file
+
diff --git a/docs/id/features/achievements.md b/docs/id/features/achievements.md
index a4d5db2a1..33bed7d23 100644
--- a/docs/id/features/achievements.md
+++ b/docs/id/features/achievements.md
@@ -25,4 +25,4 @@ Snap Hutao menyediakan fitur manajemen pencapaian lokal, pengguna dapat melihat
- [YaeAchievement](https://github.com/HolographicHat/YaeAchievement)
-- [椰羊 cocogoat](https://cocogoat.work/)
\ No newline at end of file
+- [椰羊 cocogoat](https://cocogoat.work/)
diff --git a/docs/id/features/character-data.md b/docs/id/features/character-data.md
index 4d7a83c3e..dfee6ee03 100644
--- a/docs/id/features/character-data.md
+++ b/docs/id/features/character-data.md
@@ -91,4 +91,4 @@ untuk setiap karakter.
- Gambar yang diekspor disimpan di clipboard Anda, dan Anda dapat menempelkannya di mana pun Anda butuhkan
- Contoh gambar yang diekspor ditunjukkan di bawah ini
-
\ No newline at end of file
+
diff --git a/docs/id/features/character-wiki.md b/docs/id/features/character-wiki.md
index 11730799b..d5feb606f 100644
--- a/docs/id/features/character-wiki.md
+++ b/docs/id/features/character-wiki.md
@@ -37,4 +37,4 @@ Karakter WIKI adalah fitur WIKI bawaan Snap Hutao yang digunakan untuk mencari i
- Di halaman WIKI karakter, Anda dapat memilih karakter dan klik `Rencana Pengembangan` di kanan atas untuk menambahkannya ke Rencana Pengembangan Anda
- Rencana baru akan menetapkan level dasar sebagai `1`
- - Jika Anda ingin membuat Rencana Pengembangan baru berdasarkan karakter yang sudah Anda miliki, Anda dapat mencoba fitur [Karakter Saya](character-data.html)
\ No newline at end of file
+ - Jika Anda ingin membuat Rencana Pengembangan baru berdasarkan karakter yang sudah Anda miliki, Anda dapat mencoba fitur [Karakter Saya](character-data.html)
diff --git a/docs/id/features/hutao-API.md b/docs/id/features/hutao-API.md
index cf1b97485..69f13859c 100644
--- a/docs/id/features/hutao-API.md
+++ b/docs/id/features/hutao-API.md
@@ -115,5 +115,4 @@ link: https://yuanshen.xin/
[^first]: Ketika karakter yang sama muncul di lantai yang sama tetapi berbeda level, waktu penampilan hanya dihitung sekali.
[^first-2]: Ketika karakter yang sama muncul di lantai yang sama tetapi berbeda level, waktu penampilan hanya dihitung sekali.
[^second]: Data konstelasi karakter adalah set data terpisah dari database catatan Spiral Abyss
-[^third]:
- Setelah memiliki karakter ini, karakter akan dihitung ke dalam database bahkan jika tidak muncul di Spiral Abyss; Setelah mengunggah statistik Abyss Anda, semua karakter yang dikumpulkan akan disertakan
\ No newline at end of file
+[^third]: Setelah memiliki karakter ini, karakter akan dihitung ke dalam database bahkan jika tidak muncul di Spiral Abyss; Setelah mengunggah statistik Abyss Anda, semua karakter yang dikumpulkan akan disertakan
diff --git a/docs/id/features/hutao-settings.md b/docs/id/features/hutao-settings.md
index ff7ef1cfb..99d0b0cf8 100644
--- a/docs/id/features/hutao-settings.md
+++ b/docs/id/features/hutao-settings.md
@@ -117,4 +117,4 @@ Berhasil mengonfigurasi pengaturan ini akan membantu Snap Hutao melewati verifik
- Menjalankan operasi ini akan menghapus semua data pengguna di Snap Hutao
- Klik pada bidang ini untuk beroperasi, Anda akan diminta untuk konfirmasi
- Dalam sebagian besar skenario, Anda tidak perlu menggunakan bidang ini
-```
\ No newline at end of file
+```
diff --git a/docs/id/features/mhy-account-switch.md b/docs/id/features/mhy-account-switch.md
index ab185a07b..5ed212c69 100644
--- a/docs/id/features/mhy-account-switch.md
+++ b/docs/id/features/mhy-account-switch.md
@@ -44,4 +44,4 @@ Anda dapat menemukan entri untuk login ke akun MiYouShe dan HoYoLAB Anda:
- **Saat Anda masuk ke akun MiHoYo BBS Anda di Snap Hutao, data hanya diproses oleh server resmi MiHoYo dan program Snap Hutao lokal,
tidak ada server pihak ketiga (termasuk server Snap Hutao) yang terlibat dalam proses ini.**
-:::
\ No newline at end of file
+:::
diff --git a/docs/id/features/monster-wiki.md b/docs/id/features/monster-wiki.md
index 6c662fb70..b64a69456 100644
--- a/docs/id/features/monster-wiki.md
+++ b/docs/id/features/monster-wiki.md
@@ -21,4 +21,4 @@ Monster WIKI adalah basis data WIKI tersemat yang digunakan untuk mencari tahu s
- Kemampuan monster
- HP dasar monster, ATK dasar, DEF dasar
- HP, ATK, dan DEF monster pada setiap tingkat **beralih ke**
- - Item yang dijatuhkan
\ No newline at end of file
+ - Item yang dijatuhkan
diff --git a/docs/id/features/real-time-notes.md b/docs/id/features/real-time-notes.md
index 71d1110d7..1e14d4e33 100644
--- a/docs/id/features/real-time-notes.md
+++ b/docs/id/features/real-time-notes.md
@@ -63,4 +63,4 @@ verifikasi, maka akun Anda dapat digunakan untuk memperbarui data.
## Hapus Akun Catatan Langsung Harian
- Sorot kursor di atas formulir akun Catatan Langsung yang perlu dihapus
-- Klik tombol hapus di atasnya, dan Anda dapat menghapus akun yang sesuai
\ No newline at end of file
+- Klik tombol hapus di atasnya, dan Anda dapat menghapus akun yang sesuai
diff --git a/docs/id/features/setup.md b/docs/id/features/setup.md
index d1212c5b9..ab510fbe6 100644
--- a/docs/id/features/setup.md
+++ b/docs/id/features/setup.md
@@ -50,4 +50,4 @@ Gambar di atas adalah hasil yang diharapkan dalam langkah ini.
Pada langkah ini, Snap Hutao akan mengunduh secara otomatis sumber daya gambar statis yang diperlukan.
Setelah unduhan selesai, Snap Hutao akan menutup antarmuka pengaturan awal dan secara otomatis memuat program utama.
-:::
\ No newline at end of file
+:::
diff --git a/docs/id/features/weapon-wiki.md b/docs/id/features/weapon-wiki.md
index bba4a60f1..7557df9b4 100644
--- a/docs/id/features/weapon-wiki.md
+++ b/docs/id/features/weapon-wiki.md
@@ -26,4 +26,4 @@ Senjata WIKI adalah fitur WIKI bawaan Snap Hutao yang digunakan untuk mencari in
- Data pemurnian senjata
- Nilai numerik senjata pada setiap level pemurnian
- Bahan naik level senjata
- - Data senjata **paling banyak digunakan oleh karakter** yang disediakan oleh Basis Data Hutao
\ No newline at end of file
+ - Data senjata **paling banyak digunakan oleh karakter** yang disediakan oleh Basis Data Hutao
diff --git a/docs/id/menu.md b/docs/id/menu.md
index 62f6fc069..76b007a5c 100644
--- a/docs/id/menu.md
+++ b/docs/id/menu.md
@@ -8,4 +8,4 @@ icon: iconfont icon-workingDirectory
# Site Menu
-
+
diff --git a/docs/id/side-load.md b/docs/id/side-load.md
index 2a5e6e84f..485bdf910 100644
--- a/docs/id/side-load.md
+++ b/docs/id/side-load.md
@@ -19,4 +19,4 @@
- Ulangi langkah-langkah dari `Instalasi Hutao` di atas
- Jika Anda mengalami kegagalan instalasi atau situasi yang tidak biasa, ikuti langkah-langkah berikut
- Hapus terlebih dahulu aplikasi `Hutao` yang sudah terpasang
- - Kemudian ulangi langkah-langkah dari `Instalasi Hutao` di atas
\ No newline at end of file
+ - Kemudian ulangi langkah-langkah dari `Instalasi Hutao` di atas
diff --git a/docs/id/star-request.md b/docs/id/star-request.md
index 80ebccf60..8195f1388 100644
--- a/docs/id/star-request.md
+++ b/docs/id/star-request.md
@@ -6,4 +6,4 @@
- Beri peringkat pada Aplikasi kami di [Microsoft Store](ms-windows-store://review/?ProductId=9PH4NXJ2JN52)
- Promosikan proyek kami dalam jaringan Anda
- 
\ No newline at end of file
+ 
diff --git a/docs/id/statements/README.md b/docs/id/statements/README.md
index f50c1b815..1d25f0107 100644
--- a/docs/id/statements/README.md
+++ b/docs/id/statements/README.md
@@ -12,4 +12,4 @@ dir:
**Snap Hutao project does NOT support, participate in, or cooperate with any project related to Genshin Impact's private server and cheating program.**
-
+
diff --git a/docs/id/statements/bug-report.md b/docs/id/statements/bug-report.md
index 8f272546e..2b4d123dd 100644
--- a/docs/id/statements/bug-report.md
+++ b/docs/id/statements/bug-report.md
@@ -37,4 +37,4 @@ Jika Anda membutuhkan contoh isu yang bagus, Anda dapat melihatnya [di sini](htt
Jika Anda merasa dokumen Snap Hutao kekurangan informasi atau mengandung kesalahan, Anda dapat memulai isu di proyek Snap.Hutao.Docs
-- Kirim isu Anda di GitHub:[DGP-Studio/Snap.Hutao.Docs](https://github.com/DGP-Studio/Snap.Hutao.Docs/issues/new/choose)
\ No newline at end of file
+- Kirim isu Anda di GitHub:[DGP-Studio/Snap.Hutao.Docs](https://github.com/DGP-Studio/Snap.Hutao.Docs/issues/new/choose)
diff --git a/docs/id/statements/privacy-notice.md b/docs/id/statements/privacy-notice.md
index 062427b26..7ebbc6ff1 100644
--- a/docs/id/statements/privacy-notice.md
+++ b/docs/id/statements/privacy-notice.md
@@ -57,4 +57,4 @@ Proyek Snap Hutao memiliki domain-domain berikut, mereka dapat dipercaya dalam l
- Kami hanya menggunakan domain ini untuk kontak email publik
- snapgenshin.cn
- hutao.ao
-- snaphutao.com
\ No newline at end of file
+- snaphutao.com
diff --git a/docs/id/statements/tos.md b/docs/id/statements/tos.md
index 1b7fd8595..5adeef088 100644
--- a/docs/id/statements/tos.md
+++ b/docs/id/statements/tos.md
@@ -28,15 +28,15 @@ order: 4
4. Selama pengguna menggunakan proyek yang dikembangkan oleh tim, tim tidak memberikan jaminan yang tidak terjadi di bawah keadaan sebagai berikut:
- - Pengguna tidak dapat menggunakan atau memperbarui secara normal karena kondisi jaringan, jalur komunikasi, dan alasan teknis lainnya;
- - Hasil negatif yang disebabkan oleh penggunaan "plug-in dalam perangkat lunak ini yang dikembangkan oleh pihak ketiga," "versi yang dimodifikasi dari perangkat lunak ini yang dikompilasi oleh pihak ketiga," dan "perangkat lunak yang dikompilasi dengan menggunakan kode proyek yang dibuat oleh tim pengembangan ini."
+ - Pengguna tidak dapat menggunakan atau memperbarui secara normal karena kondisi jaringan, jalur komunikasi, dan alasan teknis lainnya;
+ - Hasil negatif yang disebabkan oleh penggunaan "plug-in dalam perangkat lunak ini yang dikembangkan oleh pihak ketiga," "versi yang dimodifikasi dari perangkat lunak ini yang dikompilasi oleh pihak ketiga," dan "perangkat lunak yang dikompilasi dengan menggunakan kode proyek yang dibuat oleh tim pengembangan ini."
5. Pengguna mengakui bahwa setiap proyek yang dikembangkan oleh tim memerlukan pemicu pengguna aktif untuk setiap unggahan informasi, kecuali untuk laporan unggahan yang diperlukan atau informasi terkait dalam penerimaan pasif perangkat lunak atau proyek terkait lainnya.
- - Pengguna mengakui bahwa setiap proyek yang dikembangkan oleh tim sepenuhnya menghormati dan melindungi "hak privasi pribadi" semua pengguna. Kode proyek juga sepenuhnya terbuka, dan pengguna tidak memiliki alasan subjektif untuk menuduh tim pengembangan atau anggota tim "melanggar hak privasi."
- - Informasi pribadi pengguna tidak akan dibagikan atau ditransfer ke pihak ketiga oleh setiap proyek yang dikembangkan oleh tim, kecuali dengan otorisasi pengguna sebelumnya atau informasi pribadi yang dibagikan dan ditransfer telah di-identifikasi ulang dan pihak ketiga tidak dapat mengidentifikasi ulang orang yang merupakan subyek informasi tersebut.
- - Setiap proyek yang dikembangkan oleh tim berisi tautan ke situs lain. Saat mengunjungi tautan pihak ketiga, harap baca dengan cermat perjanjian pengguna dan pernyataan situs pihak ketiga tersebut. Tim kami tidak bertanggung jawab atas konten, syarat privasi, dan perjanjian penggunaan situs pihak ketiga.
- - Saat menggunakan setiap proyek yang dikembangkan oleh tim, kami tidak dapat menjamin bahwa informasi yang Anda kirimkan akan disimpan dengan berhasil. Anda perlu menyimpan dengan benar dan menjaga informasi yang Anda kirimkan. Beberapa proyek yang dikembangkan oleh tim menyediakan penyimpanan untuk "data yang diotorisasi," namun ada berbagai faktor force majeure dalam proses penyimpanan. Tim kami tidak dapat menjamin untuk menyimpan informasi yang disimpan oleh pengguna secara tak terbatas. Harap cadangkan informasi penting Anda sendiri.
+ - Pengguna mengakui bahwa setiap proyek yang dikembangkan oleh tim sepenuhnya menghormati dan melindungi "hak privasi pribadi" semua pengguna. Kode proyek juga sepenuhnya terbuka, dan pengguna tidak memiliki alasan subjektif untuk menuduh tim pengembangan atau anggota tim "melanggar hak privasi."
+ - Informasi pribadi pengguna tidak akan dibagikan atau ditransfer ke pihak ketiga oleh setiap proyek yang dikembangkan oleh tim, kecuali dengan otorisasi pengguna sebelumnya atau informasi pribadi yang dibagikan dan ditransfer telah di-identifikasi ulang dan pihak ketiga tidak dapat mengidentifikasi ulang orang yang merupakan subyek informasi tersebut.
+ - Setiap proyek yang dikembangkan oleh tim berisi tautan ke situs lain. Saat mengunjungi tautan pihak ketiga, harap baca dengan cermat perjanjian pengguna dan pernyataan situs pihak ketiga tersebut. Tim kami tidak bertanggung jawab atas konten, syarat privasi, dan perjanjian penggunaan situs pihak ketiga.
+ - Saat menggunakan setiap proyek yang dikembangkan oleh tim, kami tidak dapat menjamin bahwa informasi yang Anda kirimkan akan disimpan dengan berhasil. Anda perlu menyimpan dengan benar dan menjaga informasi yang Anda kirimkan. Beberapa proyek yang dikembangkan oleh tim menyediakan penyimpanan untuk "data yang diotorisasi," namun ada berbagai faktor force majeure dalam proses penyimpanan. Tim kami tidak dapat menjamin untuk menyimpan informasi yang disimpan oleh pengguna secara tak terbatas. Harap cadangkan informasi penting Anda sendiri.
# Hak dan Kewajiban
@@ -75,4 +75,4 @@ order: 4
14. Baik Anda maupun tim pengembangan adalah entitas independen, dan dalam keadaan apa pun perjanjian ini tidak merupakan jaminan atau kondisi eksplisit atau tersirat dari tim pengembangan kepada pengguna. Tidak ada hubungan agen, kemitraan, usaha patungan, atau hubungan pekerjaan antara kedua belah pihak.
-15. Dalam "Perjanjian Pengguna dan Pernyataan Hukum" ini, istilah "pihak kami" atau "tim pengembangan" (sebagaimana dibedakan dari "Anda" atau "pengguna") mengacu pada seluruh tim DGP-Studio Development Team, termasuk setiap anggota individunya.
\ No newline at end of file
+15. Dalam "Perjanjian Pengguna dan Pernyataan Hukum" ini, istilah "pihak kami" atau "tim pengembangan" (sebagaimana dibedakan dari "Anda" atau "pengguna") mengacu pada seluruh tim DGP-Studio Development Team, termasuk setiap anggota individunya.
diff --git a/docs/ru/advanced/README.md b/docs/ru/advanced/README.md
index 925086984..cf85f0444 100644
--- a/docs/ru/advanced/README.md
+++ b/docs/ru/advanced/README.md
@@ -9,4 +9,4 @@ dir:
# Advanced
-
+
diff --git a/docs/ru/blog/README.md b/docs/ru/blog/README.md
index d94cd7edb..9dd960a70 100644
--- a/docs/ru/blog/README.md
+++ b/docs/ru/blog/README.md
@@ -9,4 +9,4 @@ dir:
# Dev Logs
-
+
diff --git a/docs/ru/development/README.md b/docs/ru/development/README.md
index a24dec674..e8f16ea59 100644
--- a/docs/ru/development/README.md
+++ b/docs/ru/development/README.md
@@ -10,4 +10,4 @@ dir:
# Open Source Development
-
+
diff --git a/docs/ru/features/README.md b/docs/ru/features/README.md
index 926907d99..a144f5355 100644
--- a/docs/ru/features/README.md
+++ b/docs/ru/features/README.md
@@ -10,4 +10,4 @@ dir:
# Features
-
+
diff --git a/docs/ru/features/character-data.md b/docs/ru/features/character-data.md
index c70e727e2..e4bab9bdc 100644
--- a/docs/ru/features/character-data.md
+++ b/docs/ru/features/character-data.md
@@ -28,6 +28,7 @@ comment: false
- Данные включают в себя детали артефактов, данные оружия, данные талантов
- Витрина персонажей позволяет отображать до 8 персонажей одновременно
+
:::
- В игре поместите **персонажей, для которых вам нужны подробные данные**, в витрину
@@ -45,6 +46,7 @@ comment: false
- Этот метод не содержит данных об артефактах
- Этот метод может синхронизировать все данные персонажей одновременно
+
:::
- Войдите в раздел `My Characters` в Snap Hutao, нажмите кнопку «Синхронизация данных персонажа» в верхнем правом углу
@@ -58,6 +60,7 @@ comment: false
- Этот метод синхронизирует данные уровня талантов
- Этот метод может синхронизировать все данные персонажей одновременно
+
:::
- Войдите в раздел `My Characters` в Snap Hutao, нажмите кнопку «Синхронизация данных персонажа» в верхнем правом углу
diff --git a/docs/ru/menu.md b/docs/ru/menu.md
index cfccd7904..0a9038cf4 100644
--- a/docs/ru/menu.md
+++ b/docs/ru/menu.md
@@ -8,4 +8,4 @@ icon: iconfont icon-workingDirectory
# Меню сайта
-
+
diff --git a/docs/ru/statements/README.md b/docs/ru/statements/README.md
index f50c1b815..1d25f0107 100644
--- a/docs/ru/statements/README.md
+++ b/docs/ru/statements/README.md
@@ -12,4 +12,4 @@ dir:
**Snap Hutao project does NOT support, participate in, or cooperate with any project related to Genshin Impact's private server and cheating program.**
-
+
diff --git a/docs/zh/advanced/README.md b/docs/zh/advanced/README.md
index a015928ec..3f9af7ecf 100644
--- a/docs/zh/advanced/README.md
+++ b/docs/zh/advanced/README.md
@@ -9,4 +9,4 @@ dir:
# 高级
-
+
diff --git a/docs/zh/blog/README.md b/docs/zh/blog/README.md
index 29541dd40..e9444e2c5 100644
--- a/docs/zh/blog/README.md
+++ b/docs/zh/blog/README.md
@@ -9,4 +9,4 @@ dir:
# 开发日志
-
+
diff --git a/docs/zh/development/README.md b/docs/zh/development/README.md
index e8a512f08..a472263f1 100644
--- a/docs/zh/development/README.md
+++ b/docs/zh/development/README.md
@@ -10,4 +10,4 @@ dir:
# 开源开发
-
+
diff --git a/docs/zh/features/README.md b/docs/zh/features/README.md
index b557369e1..898ee3b5a 100644
--- a/docs/zh/features/README.md
+++ b/docs/zh/features/README.md
@@ -10,4 +10,4 @@ dir:
# 功能指南
-
+
diff --git a/docs/zh/menu.md b/docs/zh/menu.md
index 8eb5dbd4f..c5ddcc12d 100644
--- a/docs/zh/menu.md
+++ b/docs/zh/menu.md
@@ -8,4 +8,4 @@ icon: iconfont icon-workingDirectory
# 全站目录
-
+
diff --git a/docs/zh/statements/README.md b/docs/zh/statements/README.md
index ad59ecf47..a2953b2d7 100644
--- a/docs/zh/statements/README.md
+++ b/docs/zh/statements/README.md
@@ -12,4 +12,4 @@ dir:
**Snap Hutao 项目不支持、不参与、不合作任何与原神相关的私服和外挂项目**
-
+
diff --git a/package.json b/package.json
index c76bc0fd9..6610f5ea1 100644
--- a/package.json
+++ b/package.json
@@ -9,29 +9,27 @@
"docs:clean-dev": "vuepress dev docs --clean-cache",
"docs:dev": "vuepress dev docs",
"lint": "prettier --check --write .",
- "prepare": "husky install"
+ "prepare": "husky"
},
"devDependencies": {
- "@vuepress/bundler-vite": "2.0.0-rc.0",
- "@vuepress/client": "2.0.0-rc.0",
- "@vuepress/plugin-docsearch": "2.0.0-rc.0",
- "@vuepress/plugin-google-analytics": "2.0.0-rc.0",
- "husky": "8.0.3",
+ "@vuepress/bundler-vite": "2.0.0-rc.8",
+ "@vuepress/plugin-docsearch": "2.0.0-rc.15",
+ "@vuepress/plugin-feed": "2.0.0-rc.15",
+ "@vuepress/plugin-google-analytics": "2.0.0-rc.15",
+ "@vuepress/plugin-pwa": "2.0.0-rc.16",
+ "@vuepress/plugin-redirect": "2.0.0-rc.15",
+ "husky": "9.0.11",
"nano-staged": "0.8.0",
- "prettier": "3.1.1",
- "vue": "^3.4.3",
- "vuepress": "2.0.0-rc.0",
- "vuepress-plugin-feed2": "2.0.0-rc.10",
- "vuepress-plugin-pwa2": "2.0.0-rc.10",
- "vuepress-plugin-redirect": "2.0.0-rc.10",
- "vuepress-shared": "2.0.0-rc.10",
- "vuepress-theme-hope": "2.0.0-rc.10"
+ "prettier": "3.2.5",
+ "vue": "^3.4.19",
+ "vuepress": "2.0.0-rc.8",
+ "vuepress-theme-hope": "2.0.0-rc.25"
},
"engines": {
- "node": ">=18.16.0"
+ "node": ">=18.18.0"
},
"nano-staged": {
"*.md": "prettier --write"
},
- "packageManager": "pnpm@8.13.1"
+ "packageManager": "pnpm@8.15.3"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3df57a636..aa6823a40 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,182 +6,176 @@ settings:
devDependencies:
'@vuepress/bundler-vite':
- specifier: 2.0.0-rc.0
- version: 2.0.0-rc.0
- '@vuepress/client':
- specifier: 2.0.0-rc.0
- version: 2.0.0-rc.0
+ specifier: 2.0.0-rc.8
+ version: 2.0.0-rc.8
'@vuepress/plugin-docsearch':
- specifier: 2.0.0-rc.0
- version: 2.0.0-rc.0(@algolia/client-search@4.22.0)(search-insights@2.13.0)
+ specifier: 2.0.0-rc.15
+ version: 2.0.0-rc.15(@algolia/client-search@4.22.1)(search-insights@2.13.0)(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-feed':
+ specifier: 2.0.0-rc.15
+ version: 2.0.0-rc.15(vuepress@2.0.0-rc.8)
'@vuepress/plugin-google-analytics':
- specifier: 2.0.0-rc.0
- version: 2.0.0-rc.0
+ specifier: 2.0.0-rc.15
+ version: 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-pwa':
+ specifier: 2.0.0-rc.16
+ version: 2.0.0-rc.16(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-redirect':
+ specifier: 2.0.0-rc.15
+ version: 2.0.0-rc.15(vuepress@2.0.0-rc.8)
husky:
- specifier: 8.0.3
- version: 8.0.3
+ specifier: 9.0.11
+ version: 9.0.11
nano-staged:
specifier: 0.8.0
version: 0.8.0
prettier:
- specifier: 3.1.1
- version: 3.1.1
+ specifier: 3.2.5
+ version: 3.2.5
vue:
- specifier: ^3.4.3
- version: 3.4.3
+ specifier: ^3.4.19
+ version: 3.4.19
vuepress:
- specifier: 2.0.0-rc.0
- version: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-feed2:
- specifier: 2.0.0-rc.10
- version: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-pwa2:
- specifier: 2.0.0-rc.10
- version: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-redirect:
- specifier: 2.0.0-rc.10
- version: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared:
- specifier: 2.0.0-rc.10
- version: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
+ specifier: 2.0.0-rc.8
+ version: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
vuepress-theme-hope:
- specifier: 2.0.0-rc.10
- version: 2.0.0-rc.10(@vuepress/plugin-docsearch@2.0.0-rc.0)(markdown-it@13.0.2)(vuepress-plugin-feed2@2.0.0-rc.10)(vuepress-plugin-pwa2@2.0.0-rc.10)(vuepress@2.0.0-rc.0)
+ specifier: 2.0.0-rc.25
+ version: 2.0.0-rc.25(@vuepress/plugin-docsearch@2.0.0-rc.15)(@vuepress/plugin-feed@2.0.0-rc.15)(@vuepress/plugin-pwa@2.0.0-rc.16)(@vuepress/plugin-redirect@2.0.0-rc.15)(markdown-it@14.0.0)(vuepress@2.0.0-rc.8)
packages:
- /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)(search-insights@2.13.0):
+ /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0):
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)(search-insights@2.13.0)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
dev: true
- /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)(search-insights@2.13.0):
+ /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0):
resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==}
peerDependencies:
search-insights: '>= 1 < 3'
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
search-insights: 2.13.0
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
dev: true
- /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0):
+ /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1):
resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)
- '@algolia/client-search': 4.22.0
- algoliasearch: 4.22.0
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
+ '@algolia/client-search': 4.22.1
+ algoliasearch: 4.22.1
dev: true
- /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0):
+ /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1):
resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
- '@algolia/client-search': 4.22.0
- algoliasearch: 4.22.0
+ '@algolia/client-search': 4.22.1
+ algoliasearch: 4.22.1
dev: true
- /@algolia/cache-browser-local-storage@4.22.0:
- resolution: {integrity: sha512-uZ1uZMLDZb4qODLfTSNHxSi4fH9RdrQf7DXEzW01dS8XK7QFtFh29N5NGKa9S+Yudf1vUMIF+/RiL4i/J0pWlQ==}
+ /@algolia/cache-browser-local-storage@4.22.1:
+ resolution: {integrity: sha512-Sw6IAmOCvvP6QNgY9j+Hv09mvkvEIDKjYW8ow0UDDAxSXy664RBNQk3i/0nt7gvceOJ6jGmOTimaZoY1THmU7g==}
dependencies:
- '@algolia/cache-common': 4.22.0
+ '@algolia/cache-common': 4.22.1
dev: true
- /@algolia/cache-common@4.22.0:
- resolution: {integrity: sha512-TPwUMlIGPN16eW67qamNQUmxNiGHg/WBqWcrOoCddhqNTqGDPVqmgfaM85LPbt24t3r1z0zEz/tdsmuq3Q6oaA==}
+ /@algolia/cache-common@4.22.1:
+ resolution: {integrity: sha512-TJMBKqZNKYB9TptRRjSUtevJeQVXRmg6rk9qgFKWvOy8jhCPdyNZV1nB3SKGufzvTVbomAukFR8guu/8NRKBTA==}
dev: true
- /@algolia/cache-in-memory@4.22.0:
- resolution: {integrity: sha512-kf4Cio9NpPjzp1+uXQgL4jsMDeck7MP89BYThSvXSjf2A6qV/0KeqQf90TL2ECS02ovLOBXkk98P7qVarM+zGA==}
+ /@algolia/cache-in-memory@4.22.1:
+ resolution: {integrity: sha512-ve+6Ac2LhwpufuWavM/aHjLoNz/Z/sYSgNIXsinGofWOysPilQZPUetqLj8vbvi+DHZZaYSEP9H5SRVXnpsNNw==}
dependencies:
- '@algolia/cache-common': 4.22.0
+ '@algolia/cache-common': 4.22.1
dev: true
- /@algolia/client-account@4.22.0:
- resolution: {integrity: sha512-Bjb5UXpWmJT+yGWiqAJL0prkENyEZTBzdC+N1vBuHjwIJcjLMjPB6j1hNBRbT12Lmwi55uzqeMIKS69w+0aPzA==}
+ /@algolia/client-account@4.22.1:
+ resolution: {integrity: sha512-k8m+oegM2zlns/TwZyi4YgCtyToackkOpE+xCaKCYfBfDtdGOaVZCM5YvGPtK+HGaJMIN/DoTL8asbM3NzHonw==}
dependencies:
- '@algolia/client-common': 4.22.0
- '@algolia/client-search': 4.22.0
- '@algolia/transporter': 4.22.0
+ '@algolia/client-common': 4.22.1
+ '@algolia/client-search': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: true
- /@algolia/client-analytics@4.22.0:
- resolution: {integrity: sha512-os2K+kHUcwwRa4ArFl5p/3YbF9lN3TLOPkbXXXxOvDpqFh62n9IRZuzfxpHxMPKAQS3Et1s0BkKavnNP02E9Hg==}
+ /@algolia/client-analytics@4.22.1:
+ resolution: {integrity: sha512-1ssi9pyxyQNN4a7Ji9R50nSdISIumMFDwKNuwZipB6TkauJ8J7ha/uO60sPJFqQyqvvI+px7RSNRQT3Zrvzieg==}
dependencies:
- '@algolia/client-common': 4.22.0
- '@algolia/client-search': 4.22.0
- '@algolia/requester-common': 4.22.0
- '@algolia/transporter': 4.22.0
+ '@algolia/client-common': 4.22.1
+ '@algolia/client-search': 4.22.1
+ '@algolia/requester-common': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: true
- /@algolia/client-common@4.22.0:
- resolution: {integrity: sha512-BlbkF4qXVWuwTmYxVWvqtatCR3lzXwxx628p1wj1Q7QP2+LsTmGt1DiUYRuy9jG7iMsnlExby6kRMOOlbhv2Ag==}
+ /@algolia/client-common@4.22.1:
+ resolution: {integrity: sha512-IvaL5v9mZtm4k4QHbBGDmU3wa/mKokmqNBqPj0K7lcR8ZDKzUorhcGp/u8PkPC/e0zoHSTvRh7TRkGX3Lm7iOQ==}
dependencies:
- '@algolia/requester-common': 4.22.0
- '@algolia/transporter': 4.22.0
+ '@algolia/requester-common': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: true
- /@algolia/client-personalization@4.22.0:
- resolution: {integrity: sha512-pEOftCxeBdG5pL97WngOBi9w5Vxr5KCV2j2D+xMVZH8MuU/JX7CglDSDDb0ffQWYqcUN+40Ry+xtXEYaGXTGow==}
+ /@algolia/client-personalization@4.22.1:
+ resolution: {integrity: sha512-sl+/klQJ93+4yaqZ7ezOttMQ/nczly/3GmgZXJ1xmoewP5jmdP/X/nV5U7EHHH3hCUEHeN7X1nsIhGPVt9E1cQ==}
dependencies:
- '@algolia/client-common': 4.22.0
- '@algolia/requester-common': 4.22.0
- '@algolia/transporter': 4.22.0
+ '@algolia/client-common': 4.22.1
+ '@algolia/requester-common': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: true
- /@algolia/client-search@4.22.0:
- resolution: {integrity: sha512-bn4qQiIdRPBGCwsNuuqB8rdHhGKKWIij9OqidM1UkQxnSG8yzxHdb7CujM30pvp5EnV7jTqDZRbxacbjYVW20Q==}
+ /@algolia/client-search@4.22.1:
+ resolution: {integrity: sha512-yb05NA4tNaOgx3+rOxAmFztgMTtGBi97X7PC3jyNeGiwkAjOZc2QrdZBYyIdcDLoI09N0gjtpClcackoTN0gPA==}
dependencies:
- '@algolia/client-common': 4.22.0
- '@algolia/requester-common': 4.22.0
- '@algolia/transporter': 4.22.0
+ '@algolia/client-common': 4.22.1
+ '@algolia/requester-common': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: true
- /@algolia/logger-common@4.22.0:
- resolution: {integrity: sha512-HMUQTID0ucxNCXs5d1eBJ5q/HuKg8rFVE/vOiLaM4Abfeq1YnTtGV3+rFEhOPWhRQxNDd+YHa4q864IMc0zHpQ==}
+ /@algolia/logger-common@4.22.1:
+ resolution: {integrity: sha512-OnTFymd2odHSO39r4DSWRFETkBufnY2iGUZNrMXpIhF5cmFE8pGoINNPzwg02QLBlGSaLqdKy0bM8S0GyqPLBg==}
dev: true
- /@algolia/logger-console@4.22.0:
- resolution: {integrity: sha512-7JKb6hgcY64H7CRm3u6DRAiiEVXMvCJV5gRE672QFOUgDxo4aiDpfU61g6Uzy8NKjlEzHMmgG4e2fklELmPXhQ==}
+ /@algolia/logger-console@4.22.1:
+ resolution: {integrity: sha512-O99rcqpVPKN1RlpgD6H3khUWylU24OXlzkavUAMy6QZd1776QAcauE3oP8CmD43nbaTjBexZj2nGsBH9Tc0FVA==}
dependencies:
- '@algolia/logger-common': 4.22.0
+ '@algolia/logger-common': 4.22.1
dev: true
- /@algolia/requester-browser-xhr@4.22.0:
- resolution: {integrity: sha512-BHfv1h7P9/SyvcDJDaRuIwDu2yrDLlXlYmjvaLZTtPw6Ok/ZVhBR55JqW832XN/Fsl6k3LjdkYHHR7xnsa5Wvg==}
+ /@algolia/requester-browser-xhr@4.22.1:
+ resolution: {integrity: sha512-dtQGYIg6MteqT1Uay3J/0NDqD+UciHy3QgRbk7bNddOJu+p3hzjTRYESqEnoX/DpEkaNYdRHUKNylsqMpgwaEw==}
dependencies:
- '@algolia/requester-common': 4.22.0
+ '@algolia/requester-common': 4.22.1
dev: true
- /@algolia/requester-common@4.22.0:
- resolution: {integrity: sha512-Y9cEH/cKjIIZgzvI1aI0ARdtR/xRrOR13g5psCxkdhpgRN0Vcorx+zePhmAa4jdQNqexpxtkUdcKYugBzMZJgQ==}
+ /@algolia/requester-common@4.22.1:
+ resolution: {integrity: sha512-dgvhSAtg2MJnR+BxrIFqlLtkLlVVhas9HgYKMk2Uxiy5m6/8HZBL40JVAMb2LovoPFs9I/EWIoFVjOrFwzn5Qg==}
dev: true
- /@algolia/requester-node-http@4.22.0:
- resolution: {integrity: sha512-8xHoGpxVhz3u2MYIieHIB6MsnX+vfd5PS4REgglejJ6lPigftRhTdBCToe6zbwq4p0anZXjjPDvNWMlgK2+xYA==}
+ /@algolia/requester-node-http@4.22.1:
+ resolution: {integrity: sha512-JfmZ3MVFQkAU+zug8H3s8rZ6h0ahHZL/SpMaSasTCGYR5EEJsCc8SI5UZ6raPN2tjxa5bxS13BRpGSBUens7EA==}
dependencies:
- '@algolia/requester-common': 4.22.0
+ '@algolia/requester-common': 4.22.1
dev: true
- /@algolia/transporter@4.22.0:
- resolution: {integrity: sha512-ieO1k8x2o77GNvOoC+vAkFKppydQSVfbjM3YrSjLmgywiBejPTvU1R1nEvG59JIIUvtSLrZsLGPkd6vL14zopA==}
+ /@algolia/transporter@4.22.1:
+ resolution: {integrity: sha512-kzWgc2c9IdxMa3YqA6TN0NW5VrKYYW/BELIn7vnLyn+U/RFdZ4lxxt9/8yq3DKV5snvoDzzO4ClyejZRdV3lMQ==}
dependencies:
- '@algolia/cache-common': 4.22.0
- '@algolia/logger-common': 4.22.0
- '@algolia/requester-common': 4.22.0
+ '@algolia/cache-common': 4.22.1
+ '@algolia/logger-common': 4.22.1
+ '@algolia/requester-common': 4.22.1
dev: true
/@ampproject/remapping@2.2.1:
@@ -189,7 +183,7 @@ packages:
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.20
+ '@jridgewell/trace-mapping': 0.3.22
dev: true
/@apideck/better-ajv-errors@0.3.6(ajv@8.12.0):
@@ -217,20 +211,20 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core@7.23.7:
- resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==}
+ /@babel/core@7.23.9:
+ resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.23.5
'@babel/generator': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
- '@babel/helpers': 7.23.7
- '@babel/parser': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
+ '@babel/helpers': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -244,9 +238,9 @@ packages:
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
'@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.20
+ '@jridgewell/trace-mapping': 0.3.22
jsesc: 2.5.2
dev: true
@@ -254,14 +248,14 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
/@babel/helper-compilation-targets@7.23.6:
@@ -270,47 +264,47 @@ packages:
dependencies:
'@babel/compat-data': 7.23.5
'@babel/helper-validator-option': 7.23.5
- browserslist: 4.22.2
+ browserslist: 4.23.0
lru-cache: 5.1.1
semver: 6.3.1
dev: true
- /@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==}
+ /@babel/helper-create-class-features-plugin@7.23.10(@babel/core@7.23.9):
+ resolution: {integrity: sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.9):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
dev: true
- /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
+ /@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.23.9):
+ resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
@@ -329,38 +323,38 @@ packages:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
dev: true
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
/@babel/helper-member-expression-to-functions@7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -372,7 +366,7 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
/@babel/helper-plugin-utils@7.22.5:
@@ -380,25 +374,25 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.9):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
dev: true
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7):
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.9):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -408,21 +402,21 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
/@babel/helper-string-parser@7.23.4:
@@ -445,17 +439,17 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
- '@babel/template': 7.22.15
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
dev: true
- /@babel/helpers@7.23.7:
- resolution: {integrity: sha512-6AMnjCoC8wjqBzDHkuqpa7jAKwvMo4dC+lr/TFBz+ucfulO1XMpDnwWPGBNwClOKZ8h6xn5N81W/R5OrcKtCbQ==}
+ /@babel/helpers@7.23.9:
+ resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
transitivePeerDependencies:
- supports-color
dev: true
@@ -469,857 +463,856 @@ packages:
js-tokens: 4.0.0
dev: true
- /@babel/parser@7.23.6:
- resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
+ /@babel/parser@7.23.9:
+ resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.9)
dev: true
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7):
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.9):
resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.9):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.9):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.9):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==}
+ /@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.7):
- resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==}
+ /@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.9):
+ resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: true
- /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.15
+ '@babel/template': 7.23.9
dev: true
- /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7):
+ /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.9):
resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
dev: true
- /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
+ /@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.2
dev: true
- /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/preset-env@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-SY27X/GtTz/L4UryMNJ6p4fH4nsgWbz84y9FE0bQeWJP6O5BhgVCt53CotQKHCOeXJel8VyhlhujhlltKms/CA==}
+ /@babel/preset-env@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.7)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7)
- '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.7)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7)
- '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
- babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.7)
- core-js-compat: 3.35.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.9)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.23.9)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.9)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.9)
+ babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.23.9)
+ babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.23.9)
+ babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.23.9)
+ core-js-compat: 3.36.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.9):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
esutils: 2.0.3
dev: true
@@ -1327,24 +1320,24 @@ packages:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: true
- /@babel/runtime@7.23.7:
- resolution: {integrity: sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==}
+ /@babel/runtime@7.23.9:
+ resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
dev: true
- /@babel/template@7.22.15:
- resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
+ /@babel/template@7.23.9:
+ resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
dev: true
- /@babel/traverse@7.23.7:
- resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==}
+ /@babel/traverse@7.23.9:
+ resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
@@ -1353,16 +1346,16 @@ packages:
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/types@7.23.6:
- resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
+ /@babel/types@7.23.9:
+ resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.23.4
@@ -1374,11 +1367,11 @@ packages:
resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
dev: true
- /@docsearch/js@3.5.2(@algolia/client-search@4.22.0)(search-insights@2.13.0):
+ /@docsearch/js@3.5.2(@algolia/client-search@4.22.1)(search-insights@2.13.0):
resolution: {integrity: sha512-p1YFTCDflk8ieHgFJYfmyHBki1D61+U9idwrLh+GQQMrBSP3DLGKpy0XUJtPjAOPltcVbqsTjiPFfH7JImjUNg==}
dependencies:
- '@docsearch/react': 3.5.2(@algolia/client-search@4.22.0)(search-insights@2.13.0)
- preact: 10.19.3
+ '@docsearch/react': 3.5.2(@algolia/client-search@4.22.1)(search-insights@2.13.0)
+ preact: 10.19.5
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -1387,7 +1380,7 @@ packages:
- search-insights
dev: true
- /@docsearch/react@3.5.2(@algolia/client-search@4.22.0)(search-insights@2.13.0):
+ /@docsearch/react@3.5.2(@algolia/client-search@4.22.1)(search-insights@2.13.0):
resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
@@ -1404,17 +1397,17 @@ packages:
search-insights:
optional: true
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)(search-insights@2.13.0)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0)
+ '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
'@docsearch/css': 3.5.2
- algoliasearch: 4.22.0
+ algoliasearch: 4.22.1
search-insights: 2.13.0
transitivePeerDependencies:
- '@algolia/client-search'
dev: true
- /@esbuild/aix-ppc64@0.19.11:
- resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==}
+ /@esbuild/aix-ppc64@0.19.12:
+ resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
@@ -1422,8 +1415,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm64@0.19.11:
- resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==}
+ /@esbuild/android-arm64@0.19.12:
+ resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
@@ -1431,8 +1424,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.19.11:
- resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==}
+ /@esbuild/android-arm@0.19.12:
+ resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
@@ -1440,8 +1433,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.19.11:
- resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==}
+ /@esbuild/android-x64@0.19.12:
+ resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
@@ -1449,8 +1442,8 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.19.11:
- resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==}
+ /@esbuild/darwin-arm64@0.19.12:
+ resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
@@ -1458,8 +1451,8 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64@0.19.11:
- resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==}
+ /@esbuild/darwin-x64@0.19.12:
+ resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
@@ -1467,8 +1460,8 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.19.11:
- resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==}
+ /@esbuild/freebsd-arm64@0.19.12:
+ resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
@@ -1476,8 +1469,8 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64@0.19.11:
- resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==}
+ /@esbuild/freebsd-x64@0.19.12:
+ resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
@@ -1485,8 +1478,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.19.11:
- resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==}
+ /@esbuild/linux-arm64@0.19.12:
+ resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
@@ -1494,8 +1487,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.19.11:
- resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==}
+ /@esbuild/linux-arm@0.19.12:
+ resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
@@ -1503,8 +1496,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.19.11:
- resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==}
+ /@esbuild/linux-ia32@0.19.12:
+ resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
@@ -1512,8 +1505,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.19.11:
- resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==}
+ /@esbuild/linux-loong64@0.19.12:
+ resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -1521,8 +1514,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el@0.19.11:
- resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==}
+ /@esbuild/linux-mips64el@0.19.12:
+ resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
@@ -1530,8 +1523,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.19.11:
- resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==}
+ /@esbuild/linux-ppc64@0.19.12:
+ resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
@@ -1539,8 +1532,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64@0.19.11:
- resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==}
+ /@esbuild/linux-riscv64@0.19.12:
+ resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
@@ -1548,8 +1541,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x@0.19.11:
- resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==}
+ /@esbuild/linux-s390x@0.19.12:
+ resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
@@ -1557,8 +1550,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.19.11:
- resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==}
+ /@esbuild/linux-x64@0.19.12:
+ resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
@@ -1566,8 +1559,8 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.19.11:
- resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==}
+ /@esbuild/netbsd-x64@0.19.12:
+ resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
@@ -1575,8 +1568,8 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.19.11:
- resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==}
+ /@esbuild/openbsd-x64@0.19.12:
+ resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
@@ -1584,8 +1577,8 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64@0.19.11:
- resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==}
+ /@esbuild/sunos-x64@0.19.12:
+ resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
@@ -1593,8 +1586,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.19.11:
- resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==}
+ /@esbuild/win32-arm64@0.19.12:
+ resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
@@ -1602,8 +1595,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32@0.19.11:
- resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==}
+ /@esbuild/win32-ia32@0.19.12:
+ resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
@@ -1611,8 +1604,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.19.11:
- resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==}
+ /@esbuild/win32-x64@0.19.12:
+ resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -1626,11 +1619,11 @@ packages:
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.20
+ '@jridgewell/trace-mapping': 0.3.22
dev: true
- /@jridgewell/resolve-uri@3.1.1:
- resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
+ /@jridgewell/resolve-uri@3.1.2:
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
dev: true
@@ -1643,268 +1636,268 @@ packages:
resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.20
+ '@jridgewell/trace-mapping': 0.3.22
dev: true
/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
dev: true
- /@jridgewell/trace-mapping@0.3.20:
- resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
+ /@jridgewell/trace-mapping@0.3.22:
+ resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==}
dependencies:
- '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
dev: true
- /@lit-labs/ssr-dom-shim@1.1.2:
- resolution: {integrity: sha512-jnOD+/+dSrfTWYfSXBXlo5l5f0q1UuJo3tkbMDCYA2lKUYq79jaxqtGEvnRoh049nt1vdo1+45RinipU6FGY2g==}
+ /@lit-labs/ssr-dom-shim@1.2.0:
+ resolution: {integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==}
dev: true
- /@lit/reactive-element@2.0.2:
- resolution: {integrity: sha512-SVOwLAWUQg3Ji1egtOt1UiFe4zdDpnWHyc5qctSceJ5XIu0Uc76YmGpIjZgx9YJ0XtdW0Jm507sDvjOu+HnB8w==}
+ /@lit/reactive-element@2.0.4:
+ resolution: {integrity: sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==}
dependencies:
- '@lit-labs/ssr-dom-shim': 1.1.2
+ '@lit-labs/ssr-dom-shim': 1.2.0
dev: true
- /@mdit-vue/plugin-component@1.0.0:
- resolution: {integrity: sha512-ZXsJwxkG5yyTHARIYbR74cT4AZ0SfMokFFjiHYCbypHIeYWgJhso4+CZ8+3V9EWFG3EHlGoKNGqKp9chHnqntQ==}
+ /@mdit-vue/plugin-component@2.0.0:
+ resolution: {integrity: sha512-cTRxlocav/+mfgDcp0P2z/gWuWBez+iNuN4D+b74LpX4AR6UAx2ZvWtCrUZ8VXrO4eCt1/G0YC/Af7mpIb3aoQ==}
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit-vue/plugin-frontmatter@1.0.0:
- resolution: {integrity: sha512-MMA7Ny+YPZA7eDOY1t4E+rKuEWO39mzDdP/M68fKdXJU6VfcGkPr7gnpnJfW2QBJ5qIvMrK/3lDAA2JBy5TfpA==}
+ /@mdit-vue/plugin-frontmatter@2.0.0:
+ resolution: {integrity: sha512-/LrT6E60QI4XV4mqx3J87hqYXlR7ZyMvndmftR2RGz7cRAwa/xL+kyFLlgrMxkBIKitOShKa3LS/9Ov9b0fU+g==}
dependencies:
- '@mdit-vue/types': 1.0.0
+ '@mdit-vue/types': 2.0.0
'@types/markdown-it': 13.0.7
gray-matter: 4.0.3
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit-vue/plugin-headers@1.0.0:
- resolution: {integrity: sha512-0rK/iKy6x13d/Pp5XxdLBshTD0+YjZvtHIaIV+JO+/H2WnOv7oaRgs48G5d44z3XJVUE2u6fNnTlI169fef0/A==}
+ /@mdit-vue/plugin-headers@2.0.0:
+ resolution: {integrity: sha512-ITMMPCnLEYHHgj3XEUL2l75jsNn8guxNqr26YrMSi1f5zcgq4XVy1LIvfwvJ1puqM6Cc5v4BHk3oAyorAi7l1A==}
dependencies:
- '@mdit-vue/shared': 1.0.0
- '@mdit-vue/types': 1.0.0
+ '@mdit-vue/shared': 2.0.0
+ '@mdit-vue/types': 2.0.0
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit-vue/plugin-sfc@1.0.0:
- resolution: {integrity: sha512-agMUe0fY4YHxsZivSvplBwRwrFvsIf/JNUJCAYq1+2Sg9+2hviTBZwjZDxYqHDHOVLtiNr+wuo68tE24mAx3AQ==}
+ /@mdit-vue/plugin-sfc@2.0.0:
+ resolution: {integrity: sha512-OXrMXOyk0iwdIou2jRoIHIbjskwghkO14C9/OjgVHXSSX+iM/WQ4l4yi1aWmNlbQNjtP8IXcVAyJB9K0DFYmLg==}
dependencies:
- '@mdit-vue/types': 1.0.0
+ '@mdit-vue/types': 2.0.0
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit-vue/plugin-title@1.0.0:
- resolution: {integrity: sha512-8yC60fCZ95xcJ/cvJH4Lv43Rs4k+33UGyKrRWj5J8TNyMwUyGcwur0XyPM+ffJH4/Bzq4myZLsj/TTFSkXRxvw==}
+ /@mdit-vue/plugin-title@2.0.0:
+ resolution: {integrity: sha512-eqBoETPVkMXNLvwFshz/A2+Cz81VB5HEkXDm0tt6RBW/rTvnoWmGJ1Z+mvcjR5ck5W4nYdIyT68oHxX2JI2M4g==}
dependencies:
- '@mdit-vue/shared': 1.0.0
- '@mdit-vue/types': 1.0.0
+ '@mdit-vue/shared': 2.0.0
+ '@mdit-vue/types': 2.0.0
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit-vue/plugin-toc@1.0.0:
- resolution: {integrity: sha512-WN8blfX0X/5Nolic0ClDWP7eVo9IB+U4g0jbycX3lolIZX5Bai1UpsD3QYZr5VVsPbQJMKMGvTrCEtCNTGvyWQ==}
+ /@mdit-vue/plugin-toc@2.0.0:
+ resolution: {integrity: sha512-PKQ8sZna3D5chTnt2lxL+ddpyXd++6Nyc0l8VXCeDgStlySQwiP9jaLeeC88oqY4BtRu4cAmILmxDrvuX0Rrdg==}
dependencies:
- '@mdit-vue/shared': 1.0.0
- '@mdit-vue/types': 1.0.0
+ '@mdit-vue/shared': 2.0.0
+ '@mdit-vue/types': 2.0.0
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit-vue/shared@1.0.0:
- resolution: {integrity: sha512-nbYBfmEi+pR2Lm0Z6TMVX2/iBjfr/kGEsHW8CC0rQw+3+sG5dY6VG094HuFAkiAmmvZx9DZZb+7ZMWp9vkwCRw==}
+ /@mdit-vue/shared@2.0.0:
+ resolution: {integrity: sha512-PdxpQpbyTazeo2JT87qms6RPZIzyJd+gwuB+1jSwLDI7+0u5g79y2XgTAbZromSVgY2f3UU5HWdwaLbV9w4uOw==}
dependencies:
- '@mdit-vue/types': 1.0.0
+ '@mdit-vue/types': 2.0.0
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit-vue/types@1.0.0:
- resolution: {integrity: sha512-xeF5+sHLzRNF7plbksywKCph4qli20l72of2fMlZQQ7RECvXYrRkE9+bjRFQCyULC7B8ydUYbpbkux5xJlVWyw==}
+ /@mdit-vue/types@2.0.0:
+ resolution: {integrity: sha512-1BeEB+DbtmDMUAfvbNUj5Hso8cSl2sBVK2iTyOMAqhfDVLdh+/9+D0JmQHaCeUk/vuJoMhOwbweZvh55wHxm4w==}
dev: true
- /@mdit/plugin-alert@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-Z+/bHBDniCz/Q+TMa3M6f47KG4tUKvJI8FHXhDwgbKLzDLn045ZBHcOTeqvuWrrjCIKBEo4fVAlYszYcehxmfg==}
+ /@mdit/plugin-alert@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-mxA/lhOyDDR6/qSAegGG/XZRjUbr1wjwdULudbpkA/CCQi6piW9D0Z8crDQGYz4KPQM9Bgx4Ac81QFSzHOV66Q==}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-align@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-NYGrsnX1c84dtY1tugDVX71zxxfcGSIjWANzQ0/od4B0+N31eXkq3SXdAjCXOWUUHSa6phfvtok+x4V9ExQwHA==}
+ /@mdit/plugin-align@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-OJPYzSdmT0UZj/QTvnKYE4GelAL0OD8bNIPxpidXbFd3IqYv/8+xMjT6XeR+R3oZEvtbYSc2e1MmO5fo3DopJA==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
- '@mdit/plugin-container': 0.7.6(markdown-it@13.0.2)
+ '@mdit/plugin-container': 0.8.0(markdown-it@14.0.0)
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-attrs@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-vTSsqZUXglZRQ4cLNou6N2cTLudHS01Tir+HPtrWkN+VB4VAIRlCKV3hf0vzKRM+HR3DSe+vQMrWzfnQdD0o4A==}
+ /@mdit/plugin-attrs@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-ewmx5i+b3M4CRJNDpDNBA0YTHa1snn+adDsDDpDtPPSzCH1NhtWXdzwI0TrcCQUnueeSEEWX/wY4ESo+NRkBNQ==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-container@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-egEYoJLkar4hxrBfFf6tO3IfoLzeUHYChGRI3FA2fxiMwwyclPvBMMQTtG2rY3sjPy497Z86QiqYwjRM0qA8Mw==}
+ /@mdit/plugin-container@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-uWK3t0CWssintcmT5PTJVhAwbstcD+SrtijQKs6BhLRtGGgHJ9mOf0ybGjlJhn4077yFFTHmaCIT3K+n5ZVjPg==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-demo@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-pybxLVpIKYlxt7fgjHK4Zd6f/IMCjACB6eZmIIlow0eOnijRnikHdRDVkoyDOxcFuQvP0yvT6LWcQlhHF+CGwQ==}
+ /@mdit/plugin-demo@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-yFRXnp3Lj0g4H9ImzHKQwwgtSykrL/BDNEQzql9fdA9FbSygfu0CIxfm+A8lsVos8cAvdsgxy3gILySxpfR89g==}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-figure@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-ysH5O3WWuDrfxLWQO4wYXYGdo8oi+EbMQFgbaSTxhoPKTFf3HTovCn3RANn7qATBqmGP26zf0hY55mX9BFUu5A==}
+ /@mdit/plugin-figure@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-/o4RoKjnkdWc+K7m6mR7BAu2J79yYE38s8HUc8iKk9v+e9j1E+6LeXcpx1LoPnHzUhT4EO2QmUsv+kAaPFfZYw==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-footnote@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-fQvbi3+/Hm+k4GJptXCc5i0n9/+ZpQx4yqpjOTGGSUz1k22XU07YaK3wpL9w+nPAfcBfzD06D72Y+eDIG5wi8w==}
+ /@mdit/plugin-footnote@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-AaX1rfkJwq9vLX+H/a+XQ3ZxahOXrnMLr5dVZfNdazjqdDEJ7Cc/A7UFtLfOM19F2w3EgvcHR1gbINxIVDn/eg==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-img-lazyload@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-BBgxlXCOO7+9TMHJXtUyvi48jlH4ZYQtC9lNfgu1rvmq56iblZ7etOzg61/CmXmLgMHNvCbb/Kx7gRLkOBhv6A==}
+ /@mdit/plugin-img-lazyload@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-Rrlf2FzOxxyszbv3DpkIwEgmYKmtwHdxIO+Whkn0a9QckxnEKkaGl5KARCnM7LqX2fhEyFLgnfkr3onVOJG54g==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-img-mark@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-IhbkmTLbxr+c04ZQcSV2IFq8n1GeRFO08qQagkONUijI1O2G/RE2y6QvCVBUy0gB1Hc8c1i9vEyK1F0e4GpheQ==}
+ /@mdit/plugin-img-mark@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-4P6z2QOfLHLMSXUP4mB/2Rnd6KeHmJBkUXJWJhybcXoIG5S5FDTFHJxOycSP4eGzfdOYAWSlkx6XwXEUGGZz5w==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-img-size@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-GZGEbuR0l4+ENXDG1Y2HsrNO2JuEmjI6PPe7pgsolk5yveWOiqzcEV4ushrWnpvwNal3Acuj+dpFDmZFOtm42g==}
+ /@mdit/plugin-img-size@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-r+LbAizP/hw5SisY44VbHEnR7XUKpcHM2k2fwu5wb1+V1crxeigG4sa8rzrJEddU+k6uCl27yL5FTGbHjAl82Q==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-include@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-4Pu0SdD2IOONLor/3GtQOYOBDv1xZ1LWByXLhht0kqEioX5D+aDZ5KD5MZ0AxH0xoNUGMynMEn/ak4/D9LLI7Q==}
+ /@mdit/plugin-include@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-e8Z8q5VkJ6UX04tTgELraupB/MdHio7hkdYT71wBJ6UQuhSmFv/xMOxFfTcGKH5yzsbEM45BtAFHzSXIi3dMCw==}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
upath: 2.0.1
dev: true
- /@mdit/plugin-katex@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-ZbPIks1SlgzS5R6YOL5s0J5vk20ROl5hF+Yj9o6CiEljodK2ln0ewpX36qM6POVrS/cu6E4Lx4X0fc5JTI6nAQ==}
+ /@mdit/plugin-katex@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-u7CX3Xv5nuc2bu2sHrk1nil83/9ETKTBMmy0icbW8zlqBC0ykLo1xTCEBXmdhXtnJtPi9f/wUZVs6iMZrJzbNg==}
engines: {node: '>= 18'}
peerDependencies:
katex: ^0.16.9
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
katex:
optional: true
markdown-it:
optional: true
dependencies:
- '@mdit/plugin-tex': 0.7.6(markdown-it@13.0.2)
+ '@mdit/plugin-tex': 0.8.0(markdown-it@14.0.0)
'@types/katex': 0.16.7
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-mark@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-D9gv+ebVORa4r69t0JeJg3NW9gCR/NOGYa1DKYDEQOJoZ1WwjZVuhdxd3wCpLKtqDLnyHTFWd3cnV/HHrmca3w==}
+ /@mdit/plugin-mark@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-1hImu8FskIZ9dumWD2VIyB5USyVGwGY2IuaPxYO25tFvMZkhu4rYBjkSK8x+vXExwp94OLzFUlGgVl94S+nw9w==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-mathjax@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-Sn3nYbkPftAF5tgemIJ1aClxgU4NnElHPV5PIgkMxwusaSsN4RB+GZ1NmTKrPUqVoIZi0pO1oYxy08TlIHcrPg==}
+ /@mdit/plugin-mathjax@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-y016KQHa3PoXDUIcQseISMAz5q2mZJ/qocEs2EABT4PjquXPEh/4rw7Ql7KX9gf/SQIUyzj8hYs4bHyRZc6x4w==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
mathjax-full: ^3.2.2
peerDependenciesMeta:
markdown-it:
@@ -1912,100 +1905,100 @@ packages:
mathjax-full:
optional: true
dependencies:
- '@mdit/plugin-tex': 0.7.6(markdown-it@13.0.2)
+ '@mdit/plugin-tex': 0.8.0(markdown-it@14.0.0)
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
upath: 2.0.1
dev: true
- /@mdit/plugin-stylize@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-dhhYxo4KdnB66g1080qeuz8X/80q3h4Cpmwnwi2rCbQfl29Nv26H5tz5pp15NKQfdfVgrZnXXLsDskJeg5IcaQ==}
+ /@mdit/plugin-stylize@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-oNFI3Z7UTxP8CKxS3CIuawLmsyrc0n9jIw9mPzUcPNp+LtYmLktfZc3FIRlqpUUq34YwHTH3yihayBRdSkVV6A==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-sub@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-jo60gUC2KwnG4SqtyrbyI16hOcxb+Y1LwUKxXKfZRbZbcPcOfrzjE8q7XEq4MhmU51mfqY6EvCoB0yo49Zh2QA==}
+ /@mdit/plugin-sub@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-oqCcmJVJykESgNJ4fFmDKKxRRQddwkXWIT4PjF83XSeXHxTOz8gMfke/V1mE7BAfKKCLP4io8HbrYfvIiOTZ4A==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-sup@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-bCR1DxNuPAyYOaTtl3VkrRc7dMsJjrqt9HnM9T1ZiprW08uciaT37fLXF7DeUHWhGpcklI9dFtaU5cQkjUosTg==}
+ /@mdit/plugin-sup@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-5/uE2lONNjCgGDXC8jZ265tzefjUNQNakmK4PSCI4D5jD80xFrxc6MKh70VLCOL8Xk6COK/K9f0SAU2lwa97Tg==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-tab@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-kWwWmhv+PeeA9aC5InGyY4eJeIsCDDMhi1tbzyKW/wJ1eeFp+rpWpSfWwUe6QyTy/ZOhQ1nGXz0/uXI4xWz4Xw==}
+ /@mdit/plugin-tab@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-SNa1S14Buuy564egiUTkU9HTTNFrEURJZLqA1+jr/2xYCdICPym0FWcB0cLtBl3lrQZkFtbxhzC6ws5JBt/ERQ==}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-tasklist@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-ZsPHqQv/Cd9TUG3JfmrPOMRFR/SOG3/menWTz2kwE1HtJ1CUfBmoCRtfq2Sm7Rlqg/P6ZfWAd1t9bOwGkxD/5w==}
+ /@mdit/plugin-tasklist@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-vfOTZdXIL/jk/ConUqCODI5WuqgB9qiBGc+wIa7UMhe73KcpwFeGFJVQZm9AvjhXDDYqznJxSMVRP/TN7TxVVw==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-tex@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-TZfIJp98n7NI0TxDSxPs4Il1fqyJ/1GE3v8UZHA1DbfAdiVMxno/Dun9381ZxoJYibl+dnX3Kz7Ej3BDOceGGA==}
+ /@mdit/plugin-tex@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-uh4kOhwBVEESz6dMmHk4Hn/AVfVtUhMA1UKpwMc1EL9qelodJ0YzSYfNXp6d/PS+E1l53yp8nMZK90DUO+3vpA==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /@mdit/plugin-uml@0.7.6(markdown-it@13.0.2):
- resolution: {integrity: sha512-P/aRntMnMfvtAEcLCkg6vhzNFEidj6jIno7VXr3HZNLitonr9ihnksM6jgrqG1rrMo4okBWUGFFGqsR8hHJk6g==}
+ /@mdit/plugin-uml@0.8.0(markdown-it@14.0.0):
+ resolution: {integrity: sha512-6TOVxLhmdzV7bzjlJCRP5uCFq62Xwk2ZAeYUK3RLx9lgM3s2Mww5ENhdysnQMd7VQlUHsPmp4XIMBZZjPddg3g==}
engines: {node: '>= 18'}
peerDependencies:
- markdown-it: ^13.0.2
+ markdown-it: ^14.0.0
peerDependenciesMeta:
markdown-it:
optional: true
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
/@nodelib/fs.scandir@2.1.5:
@@ -2026,10 +2019,10 @@ packages:
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.16.0
+ fastq: 1.17.1
dev: true
- /@rollup/plugin-babel@5.3.1(@babel/core@7.23.7)(rollup@2.79.1):
+ /@rollup/plugin-babel@5.3.1(@babel/core@7.23.9)(rollup@2.79.1):
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -2040,7 +2033,7 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-module-imports': 7.22.15
'@rollup/pluginutils': 3.1.0(rollup@2.79.1)
rollup: 2.79.1
@@ -2083,112 +2076,117 @@ packages:
rollup: 2.79.1
dev: true
- /@rollup/rollup-android-arm-eabi@4.9.2:
- resolution: {integrity: sha512-RKzxFxBHq9ysZ83fn8Iduv3A283K7zPPYuhL/z9CQuyFrjwpErJx0h4aeb/bnJ+q29GRLgJpY66ceQ/Wcsn3wA==}
+ /@rollup/rollup-android-arm-eabi@4.12.0:
+ resolution: {integrity: sha512-+ac02NL/2TCKRrJu2wffk1kZ+RyqxVUlbjSagNgPm94frxtr+XDL12E5Ll1enWskLrtrZ2r8L3wED1orIibV/w==}
cpu: [arm]
os: [android]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-android-arm64@4.9.2:
- resolution: {integrity: sha512-yZ+MUbnwf3SHNWQKJyWh88ii2HbuHCFQnAYTeeO1Nb8SyEiWASEi5dQUygt3ClHWtA9My9RQAYkjvrsZ0WK8Xg==}
+ /@rollup/rollup-android-arm64@4.12.0:
+ resolution: {integrity: sha512-OBqcX2BMe6nvjQ0Nyp7cC90cnumt8PXmO7Dp3gfAju/6YwG0Tj74z1vKrfRz7qAv23nBcYM8BCbhrsWqO7PzQQ==}
cpu: [arm64]
os: [android]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-darwin-arm64@4.9.2:
- resolution: {integrity: sha512-vqJ/pAUh95FLc/G/3+xPqlSBgilPnauVf2EXOQCZzhZJCXDXt/5A8mH/OzU6iWhb3CNk5hPJrh8pqJUPldN5zw==}
+ /@rollup/rollup-darwin-arm64@4.12.0:
+ resolution: {integrity: sha512-X64tZd8dRE/QTrBIEs63kaOBG0b5GVEd3ccoLtyf6IdXtHdh8h+I56C2yC3PtC9Ucnv0CpNFJLqKFVgCYe0lOQ==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-darwin-x64@4.9.2:
- resolution: {integrity: sha512-otPHsN5LlvedOprd3SdfrRNhOahhVBwJpepVKUN58L0RnC29vOAej1vMEaVU6DadnpjivVsNTM5eNt0CcwTahw==}
+ /@rollup/rollup-darwin-x64@4.12.0:
+ resolution: {integrity: sha512-cc71KUZoVbUJmGP2cOuiZ9HSOP14AzBAThn3OU+9LcA1+IUqswJyR1cAJj3Mg55HbjZP6OLAIscbQsQLrpgTOg==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-arm-gnueabihf@4.9.2:
- resolution: {integrity: sha512-ewG5yJSp+zYKBYQLbd1CUA7b1lSfIdo9zJShNTyc2ZP1rcPrqyZcNlsHgs7v1zhgfdS+kW0p5frc0aVqhZCiYQ==}
+ /@rollup/rollup-linux-arm-gnueabihf@4.12.0:
+ resolution: {integrity: sha512-a6w/Y3hyyO6GlpKL2xJ4IOh/7d+APaqLYdMf86xnczU3nurFTaVN9s9jOXQg97BE4nYm/7Ga51rjec5nfRdrvA==}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-arm64-gnu@4.9.2:
- resolution: {integrity: sha512-pL6QtV26W52aCWTG1IuFV3FMPL1m4wbsRG+qijIvgFO/VBsiXJjDPE/uiMdHBAO6YcpV4KvpKtd0v3WFbaxBtg==}
+ /@rollup/rollup-linux-arm64-gnu@4.12.0:
+ resolution: {integrity: sha512-0fZBq27b+D7Ar5CQMofVN8sggOVhEtzFUwOwPppQt0k+VR+7UHMZZY4y+64WJ06XOhBTKXtQB/Sv0NwQMXyNAA==}
cpu: [arm64]
os: [linux]
+ libc: [glibc]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-arm64-musl@4.9.2:
- resolution: {integrity: sha512-On+cc5EpOaTwPSNetHXBuqylDW+765G/oqB9xGmWU3npEhCh8xu0xqHGUA+4xwZLqBbIZNcBlKSIYfkBm6ko7g==}
+ /@rollup/rollup-linux-arm64-musl@4.12.0:
+ resolution: {integrity: sha512-eTvzUS3hhhlgeAv6bfigekzWZjaEX9xP9HhxB0Dvrdbkk5w/b+1Sxct2ZuDxNJKzsRStSq1EaEkVSEe7A7ipgQ==}
cpu: [arm64]
os: [linux]
+ libc: [musl]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-riscv64-gnu@4.9.2:
- resolution: {integrity: sha512-Wnx/IVMSZ31D/cO9HSsU46FjrPWHqtdF8+0eyZ1zIB5a6hXaZXghUKpRrC4D5DcRTZOjml2oBhXoqfGYyXKipw==}
+ /@rollup/rollup-linux-riscv64-gnu@4.12.0:
+ resolution: {integrity: sha512-ix+qAB9qmrCRiaO71VFfY8rkiAZJL8zQRXveS27HS+pKdjwUfEhqo2+YF2oI+H/22Xsiski+qqwIBxVewLK7sw==}
cpu: [riscv64]
os: [linux]
+ libc: [glibc]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-x64-gnu@4.9.2:
- resolution: {integrity: sha512-ym5x1cj4mUAMBummxxRkI4pG5Vht1QMsJexwGP8547TZ0sox9fCLDHw9KCH9c1FO5d9GopvkaJsBIOkTKxksdw==}
+ /@rollup/rollup-linux-x64-gnu@4.12.0:
+ resolution: {integrity: sha512-TenQhZVOtw/3qKOPa7d+QgkeM6xY0LtwzR8OplmyL5LrgTWIXpTQg2Q2ycBf8jm+SFW2Wt/DTn1gf7nFp3ssVA==}
cpu: [x64]
os: [linux]
+ libc: [glibc]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-x64-musl@4.9.2:
- resolution: {integrity: sha512-m0hYELHGXdYx64D6IDDg/1vOJEaiV8f1G/iO+tejvRCJNSwK4jJ15e38JQy5Q6dGkn1M/9KcyEOwqmlZ2kqaZg==}
+ /@rollup/rollup-linux-x64-musl@4.12.0:
+ resolution: {integrity: sha512-LfFdRhNnW0zdMvdCb5FNuWlls2WbbSridJvxOvYWgSBOYZtgBfW9UGNJG//rwMqTX1xQE9BAodvMH9tAusKDUw==}
cpu: [x64]
os: [linux]
+ libc: [musl]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-win32-arm64-msvc@4.9.2:
- resolution: {integrity: sha512-x1CWburlbN5JjG+juenuNa4KdedBdXLjZMp56nHFSHTOsb/MI2DYiGzLtRGHNMyydPGffGId+VgjOMrcltOksA==}
+ /@rollup/rollup-win32-arm64-msvc@4.12.0:
+ resolution: {integrity: sha512-JPDxovheWNp6d7AHCgsUlkuCKvtu3RB55iNEkaQcf0ttsDU/JZF+iQnYcQJSk/7PtT4mjjVG8N1kpwnI9SLYaw==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-win32-ia32-msvc@4.9.2:
- resolution: {integrity: sha512-VVzCB5yXR1QlfsH1Xw1zdzQ4Pxuzv+CPr5qpElpKhVxlxD3CRdfubAG9mJROl6/dmj5gVYDDWk8sC+j9BI9/kQ==}
+ /@rollup/rollup-win32-ia32-msvc@4.12.0:
+ resolution: {integrity: sha512-fjtuvMWRGJn1oZacG8IPnzIV6GF2/XG+h71FKn76OYFqySXInJtseAqdprVTDTyqPxQOG9Exak5/E9Z3+EJ8ZA==}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-win32-x64-msvc@4.9.2:
- resolution: {integrity: sha512-SYRedJi+mweatroB+6TTnJYLts0L0bosg531xnQWtklOI6dezEagx4Q0qDyvRdK+qgdA3YZpjjGuPFtxBmddBA==}
+ /@rollup/rollup-win32-x64-msvc@4.12.0:
+ resolution: {integrity: sha512-ZYmr5mS2wd4Dew/JjT0Fqi2NPB/ZhZ2VvPp7SmvPZb4Y1CG/LRcS6tcRo2cYU7zLK5A7cdbhWnnWmUjoI4qapg==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /@sindresorhus/merge-streams@1.0.0:
- resolution: {integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==}
+ /@sindresorhus/merge-streams@2.3.0:
+ resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
dev: true
@@ -2215,11 +2213,15 @@ packages:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
dev: true
+ /@types/estree@1.0.5:
+ resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ dev: true
+
/@types/fs-extra@11.0.4:
resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 20.10.6
+ '@types/node': 20.11.19
dev: true
/@types/hash-sum@1.0.2:
@@ -2229,7 +2231,7 @@ packages:
/@types/jsonfile@6.1.4:
resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.11.19
dev: true
/@types/katex@0.16.7:
@@ -2265,8 +2267,8 @@ packages:
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
dev: true
- /@types/node@20.10.6:
- resolution: {integrity: sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==}
+ /@types/node@20.11.19:
+ resolution: {integrity: sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==}
dependencies:
undici-types: 5.26.5
dev: true
@@ -2274,7 +2276,7 @@ packages:
/@types/resolve@1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.11.19
dev: true
/@types/sax@1.2.7:
@@ -2291,113 +2293,113 @@ packages:
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
dev: true
- /@vitejs/plugin-vue@4.6.2(vite@5.0.12)(vue@3.4.3):
- resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /@vitejs/plugin-vue@5.0.4(vite@5.1.4)(vue@3.4.19):
+ resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- vite: ^4.0.0 || ^5.0.0
+ vite: ^5.0.0
vue: ^3.2.25
dependencies:
- vite: 5.0.12
- vue: 3.4.3
+ vite: 5.1.4
+ vue: 3.4.19
dev: true
- /@vue/compiler-core@3.4.3:
- resolution: {integrity: sha512-u8jzgFg0EDtSrb/hG53Wwh1bAOQFtc1ZCegBpA/glyvTlgHl+tq13o1zvRfLbegYUw/E4mSTGOiCnAJ9SJ+lsg==}
+ /@vue/compiler-core@3.4.19:
+ resolution: {integrity: sha512-gj81785z0JNzRcU0Mq98E56e4ltO1yf8k5PQ+tV/7YHnbZkrM0fyFyuttnN8ngJZjbpofWE/m4qjKBiLl8Ju4w==}
dependencies:
- '@babel/parser': 7.23.6
- '@vue/shared': 3.4.3
+ '@babel/parser': 7.23.9
+ '@vue/shared': 3.4.19
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.0.2
dev: true
- /@vue/compiler-dom@3.4.3:
- resolution: {integrity: sha512-oGF1E9/htI6JWj/lTJgr6UgxNCtNHbM6xKVreBWeZL9QhRGABRVoWGAzxmtBfSOd+w0Zi5BY0Es/tlJrN6WgEg==}
+ /@vue/compiler-dom@3.4.19:
+ resolution: {integrity: sha512-vm6+cogWrshjqEHTzIDCp72DKtea8Ry/QVpQRYoyTIg9k7QZDX6D8+HGURjtmatfgM8xgCFtJJaOlCaRYRK3QA==}
dependencies:
- '@vue/compiler-core': 3.4.3
- '@vue/shared': 3.4.3
+ '@vue/compiler-core': 3.4.19
+ '@vue/shared': 3.4.19
dev: true
- /@vue/compiler-sfc@3.4.3:
- resolution: {integrity: sha512-NuJqb5is9I4uzv316VRUDYgIlPZCG8D+ARt5P4t5UDShIHKL25J3TGZAUryY/Aiy0DsY7srJnZL5ryB6DD63Zw==}
+ /@vue/compiler-sfc@3.4.19:
+ resolution: {integrity: sha512-LQ3U4SN0DlvV0xhr1lUsgLCYlwQfUfetyPxkKYu7dkfvx7g3ojrGAkw0AERLOKYXuAGnqFsEuytkdcComei3Yg==}
dependencies:
- '@babel/parser': 7.23.6
- '@vue/compiler-core': 3.4.3
- '@vue/compiler-dom': 3.4.3
- '@vue/compiler-ssr': 3.4.3
- '@vue/shared': 3.4.3
+ '@babel/parser': 7.23.9
+ '@vue/compiler-core': 3.4.19
+ '@vue/compiler-dom': 3.4.19
+ '@vue/compiler-ssr': 3.4.19
+ '@vue/shared': 3.4.19
estree-walker: 2.0.2
- magic-string: 0.30.5
- postcss: 8.4.32
+ magic-string: 0.30.7
+ postcss: 8.4.35
source-map-js: 1.0.2
dev: true
- /@vue/compiler-ssr@3.4.3:
- resolution: {integrity: sha512-wnYQtMBkeFSxgSSQbYGQeXPhQacQiog2c6AlvMldQH6DB+gSXK/0F6DVXAJfEiuBSgBhUc8dwrrG5JQcqwalsA==}
+ /@vue/compiler-ssr@3.4.19:
+ resolution: {integrity: sha512-P0PLKC4+u4OMJ8sinba/5Z/iDT84uMRRlrWzadgLA69opCpI1gG4N55qDSC+dedwq2fJtzmGald05LWR5TFfLw==}
dependencies:
- '@vue/compiler-dom': 3.4.3
- '@vue/shared': 3.4.3
+ '@vue/compiler-dom': 3.4.19
+ '@vue/shared': 3.4.19
dev: true
- /@vue/devtools-api@6.5.1:
- resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
+ /@vue/devtools-api@6.6.1:
+ resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
dev: true
- /@vue/reactivity@3.4.3:
- resolution: {integrity: sha512-q5f9HLDU+5aBKizXHAx0w4whkIANs1Muiq9R5YXm0HtorSlflqv9u/ohaMxuuhHWCji4xqpQ1eL04WvmAmGnFg==}
+ /@vue/reactivity@3.4.19:
+ resolution: {integrity: sha512-+VcwrQvLZgEclGZRHx4O2XhyEEcKaBi50WbxdVItEezUf4fqRh838Ix6amWTdX0CNb/b6t3Gkz3eOebfcSt+UA==}
dependencies:
- '@vue/shared': 3.4.3
+ '@vue/shared': 3.4.19
dev: true
- /@vue/runtime-core@3.4.3:
- resolution: {integrity: sha512-C1r6QhB1qY7D591RCSFhMULyzL9CuyrGc+3PpB0h7dU4Qqw6GNyo4BNFjHZVvsWncrUlKX3DIKg0Y7rNNr06NQ==}
+ /@vue/runtime-core@3.4.19:
+ resolution: {integrity: sha512-/Z3tFwOrerJB/oyutmJGoYbuoadphDcJAd5jOuJE86THNZji9pYjZroQ2NFsZkTxOq0GJbb+s2kxTYToDiyZzw==}
dependencies:
- '@vue/reactivity': 3.4.3
- '@vue/shared': 3.4.3
+ '@vue/reactivity': 3.4.19
+ '@vue/shared': 3.4.19
dev: true
- /@vue/runtime-dom@3.4.3:
- resolution: {integrity: sha512-wrsprg7An5Ec+EhPngWdPuzkp0BEUxAKaQtN9dPU/iZctPyD9aaXmVtehPJerdQxQale6gEnhpnfywNw3zOv2A==}
+ /@vue/runtime-dom@3.4.19:
+ resolution: {integrity: sha512-IyZzIDqfNCF0OyZOauL+F4yzjMPN2rPd8nhqPP2N1lBn3kYqJpPHHru+83Rkvo2lHz5mW+rEeIMEF9qY3PB94g==}
dependencies:
- '@vue/runtime-core': 3.4.3
- '@vue/shared': 3.4.3
+ '@vue/runtime-core': 3.4.19
+ '@vue/shared': 3.4.19
csstype: 3.1.3
dev: true
- /@vue/server-renderer@3.4.3(vue@3.4.3):
- resolution: {integrity: sha512-BUxt8oVGMKKsqSkM1uU3d3Houyfy4WAc2SpSQRebNd+XJGATVkW/rO129jkyL+kpB/2VRKzE63zwf5RtJ3XuZw==}
+ /@vue/server-renderer@3.4.19(vue@3.4.19):
+ resolution: {integrity: sha512-eAj2p0c429RZyyhtMRnttjcSToch+kTWxFPHlzGMkR28ZbF1PDlTcmGmlDxccBuqNd9iOQ7xPRPAGgPVj+YpQw==}
peerDependencies:
- vue: 3.4.3
+ vue: 3.4.19
dependencies:
- '@vue/compiler-ssr': 3.4.3
- '@vue/shared': 3.4.3
- vue: 3.4.3
+ '@vue/compiler-ssr': 3.4.19
+ '@vue/shared': 3.4.19
+ vue: 3.4.19
dev: true
- /@vue/shared@3.4.3:
- resolution: {integrity: sha512-rIwlkkP1n4uKrRzivAKPZIEkHiuwY5mmhMJ2nZKCBLz8lTUlE73rQh4n1OnnMurXt1vcUNyH4ZPfdh8QweTjpQ==}
+ /@vue/shared@3.4.19:
+ resolution: {integrity: sha512-/KliRRHMF6LoiThEy+4c1Z4KB/gbPrGjWwJR+crg2otgrf/egKzRaCPvJ51S5oetgsgXLfc4Rm5ZgrKHZrtMSw==}
dev: true
- /@vuepress/bundler-vite@2.0.0-rc.0:
- resolution: {integrity: sha512-rX8S8IYpqqlJfNPstS/joorpxXx/4WuE7+gDM31i2HUrxOKGZVzq8ZsRRRU2UdoTwHZSd3LpUS4sMtxE5xLK1A==}
+ /@vuepress/bundler-vite@2.0.0-rc.8:
+ resolution: {integrity: sha512-q2NAcbH6dNPpl7JFpaF9V8lPP9zWPFFsVJLDqLFWqiNqNIzKgXzJJ7dGui4J0YXDFbKoe3/CWxeErpn72V6Tgg==}
dependencies:
- '@vitejs/plugin-vue': 4.6.2(vite@5.0.12)(vue@3.4.3)
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- autoprefixer: 10.4.16(postcss@8.4.32)
+ '@vitejs/plugin-vue': 5.0.4(vite@5.1.4)(vue@3.4.19)
+ '@vuepress/client': 2.0.0-rc.8
+ '@vuepress/core': 2.0.0-rc.8
+ '@vuepress/shared': 2.0.0-rc.8
+ '@vuepress/utils': 2.0.0-rc.8
+ autoprefixer: 10.4.17(postcss@8.4.35)
connect-history-api-fallback: 2.0.0
- postcss: 8.4.32
- postcss-load-config: 4.0.2(postcss@8.4.32)
- rollup: 4.9.2
- vite: 5.0.12
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
+ postcss: 8.4.35
+ postcss-load-config: 5.0.3(postcss@8.4.35)
+ rollup: 4.12.0
+ vite: 5.1.4
+ vue: 3.4.19
+ vue-router: 4.3.0(vue@3.4.19)
transitivePeerDependencies:
- '@types/node'
- - '@vue/composition-api'
+ - jiti
- less
- lightningcss
- sass
@@ -2405,136 +2407,194 @@ packages:
- sugarss
- supports-color
- terser
- - ts-node
- typescript
dev: true
- /@vuepress/cli@2.0.0-rc.0:
- resolution: {integrity: sha512-XWSIFO9iOR7N4O2lXIwS5vZuLjU9WU/aGAtmhMWEMxrdMx7TQaJbgrfpTUEbHMf+cPI1DXBbUbtmkqIvtfOV0w==}
+ /@vuepress/cli@2.0.0-rc.8:
+ resolution: {integrity: sha512-9egEZko8/H1A/aPrJyDplzNO63E74lKv1/rquFPM6GCkbhNAFEicdYH0yQFEzuGAZOot6CqBmVaOPMkg6DBRNw==}
hasBin: true
dependencies:
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
+ '@vuepress/core': 2.0.0-rc.8
+ '@vuepress/shared': 2.0.0-rc.8
+ '@vuepress/utils': 2.0.0-rc.8
cac: 6.7.14
- chokidar: 3.5.3
- envinfo: 7.11.0
- esbuild: 0.19.11
+ chokidar: 3.6.0
+ envinfo: 7.11.1
+ esbuild: 0.19.12
transitivePeerDependencies:
- - '@vue/composition-api'
- supports-color
- typescript
dev: true
- /@vuepress/client@2.0.0-rc.0:
- resolution: {integrity: sha512-TwQx8hJgYONYxX+QltZ2aw9O5Ym6SKelfiUduuIRb555B1gece/jSVap3H/ZwyBhpgJMtG4+/Mrmf8nlDSHjvw==}
+ /@vuepress/client@2.0.0-rc.8:
+ resolution: {integrity: sha512-4RBe5Kbu2I6SOJgFGZJWJLuGcHTdHcZevlT26auhSRD1RrkBvQ1JvxZ5ySgHnCS8AuYTTJnkoqSzGOMPNVPaqQ==}
dependencies:
- '@vue/devtools-api': 6.5.1
- '@vuepress/shared': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
+ '@vue/devtools-api': 6.6.1
+ '@vuepress/shared': 2.0.0-rc.8
+ vue: 3.4.19
+ vue-router: 4.3.0(vue@3.4.19)
transitivePeerDependencies:
- - '@vue/composition-api'
- typescript
dev: true
- /@vuepress/core@2.0.0-rc.0:
- resolution: {integrity: sha512-uoOaZP1MdxZYJIAJcRcmYKKeCIVnxZeOuLMOOB9CPuAKSalT1RvJ1lztw6RX3q9SPnlqtSZPQXDncPAZivw4pA==}
+ /@vuepress/core@2.0.0-rc.8:
+ resolution: {integrity: sha512-Td4J65ZCpwcNzLccJAF0jLW2Ayqe134B5RIpellUWVdoimqhNGe7ph1dUIFQ14OzquBjtSYAVWcfeOwpHKlN+A==}
dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/markdown': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- vue: 3.4.3
+ '@vuepress/client': 2.0.0-rc.8
+ '@vuepress/markdown': 2.0.0-rc.8
+ '@vuepress/shared': 2.0.0-rc.8
+ '@vuepress/utils': 2.0.0-rc.8
+ vue: 3.4.19
transitivePeerDependencies:
- - '@vue/composition-api'
- supports-color
- typescript
dev: true
- /@vuepress/markdown@2.0.0-rc.0:
- resolution: {integrity: sha512-USmqdKKMT6ZFHYRztTjKUlO8qgGfnEygMAAq4AzC/uYXiEfrbMBLAWJhteyGS56P3rGLj0OPAhksE681bX/wOg==}
+ /@vuepress/helper@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-WXBdfTt3aTJZ0eQjghkz9zH1hsbKXux7YCXvEUksWZu+p2/8YDMJNKYZAvymrRppIIEm7Q1yKtlxgoTrVDdFYg==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
dependencies:
- '@mdit-vue/plugin-component': 1.0.0
- '@mdit-vue/plugin-frontmatter': 1.0.0
- '@mdit-vue/plugin-headers': 1.0.0
- '@mdit-vue/plugin-sfc': 1.0.0
- '@mdit-vue/plugin-title': 1.0.0
- '@mdit-vue/plugin-toc': 1.0.0
- '@mdit-vue/shared': 1.0.0
- '@mdit-vue/types': 1.0.0
+ '@vue/shared': 3.4.19
+ cheerio: 1.0.0-rc.12
+ fflate: 0.8.2
+ gray-matter: 4.0.3
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/helper@2.0.0-rc.17(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-crt7GTGAqX2CeEPJa44UOud7+cpBT0oFtUDhobveUBUxF8v9f7muFupwkT0Y9qLFyDdggCvCtQLhHSR2TzySYg==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vue/shared': 3.4.19
+ cheerio: 1.0.0-rc.12
+ fflate: 0.8.2
+ gray-matter: 4.0.3
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/markdown@2.0.0-rc.8:
+ resolution: {integrity: sha512-BJfun3rFpKbq3WwVNyJGZyc9QXN6sXKwMY2PRFiJqpG0A1ZxjZQFUvDRnSUgWEsBiluB23hZ4Pd0WP+6YNAq9w==}
+ dependencies:
+ '@mdit-vue/plugin-component': 2.0.0
+ '@mdit-vue/plugin-frontmatter': 2.0.0
+ '@mdit-vue/plugin-headers': 2.0.0
+ '@mdit-vue/plugin-sfc': 2.0.0
+ '@mdit-vue/plugin-title': 2.0.0
+ '@mdit-vue/plugin-toc': 2.0.0
+ '@mdit-vue/shared': 2.0.0
+ '@mdit-vue/types': 2.0.0
'@types/markdown-it': 13.0.7
'@types/markdown-it-emoji': 2.0.4
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- markdown-it: 13.0.2
- markdown-it-anchor: 8.6.7(@types/markdown-it@13.0.7)(markdown-it@13.0.2)
- markdown-it-emoji: 2.0.2
- mdurl: 1.0.1
+ '@vuepress/shared': 2.0.0-rc.8
+ '@vuepress/utils': 2.0.0-rc.8
+ markdown-it: 14.0.0
+ markdown-it-anchor: 8.6.7(@types/markdown-it@13.0.7)(markdown-it@14.0.0)
+ markdown-it-emoji: 3.0.0
+ mdurl: 2.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-active-header-links@2.0.0-rc.0:
- resolution: {integrity: sha512-UJdXLYNGL5Wjy5YGY8M2QgqT75bZ95EHebbqGi8twBdIJE9O+bM+dPJyYtAk2PIVqFORiw3Hj+PchsNSxdn9+g==}
+ /@vuepress/plugin-active-header-links@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-ZkHOAGtYU5W8J33tX0iu1BK2vS8kiDWjJvRHvtYGdjvajDb1ww8vl/bqRLmWuoj1PSWB4iFi74B6BSgqB+oRMQ==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- ts-debounce: 4.0.0
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- - supports-color
- typescript
dev: true
- /@vuepress/plugin-back-to-top@2.0.0-rc.0:
- resolution: {integrity: sha512-6GPfuzV5lkAnR00BxRUhqMXwMWt741alkq2R6bln4N8BneSOwEpX/7vi19MGf232aKdS/Va4pF5p0/nJ8Sed/g==}
+ /@vuepress/plugin-back-to-top@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-AfH7sJJ712wisyO50OgLne0Zvh7i2ArhycaTefJI4Id9UG0lGiuN5l2JwHc60RECL+mY/Kk7J7FhS0e29eSISQ==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- ts-debounce: 4.0.0
- vue: 3.4.3
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- - supports-color
- typescript
dev: true
- /@vuepress/plugin-container@2.0.0-rc.0:
- resolution: {integrity: sha512-b7vrLN11YE7qiUDPfA3N9P7Z8fupe9Wbcr9KAE/bmfZ9VT4d6kzpVyoU7XHi99XngitsmnkaXP4aBvBF1c2AnA==}
+ /@vuepress/plugin-blog@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-64gT1HJ22LO+y4wucno3bnj7K9CDxV8kz8E+QoE4V5l2QP4kLGLo79RR8MazyMIRs4F84kYjSywWh9x7YC3kHQ==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
dependencies:
- '@types/markdown-it': 13.0.7
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/markdown': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- markdown-it: 13.0.2
- markdown-it-container: 3.0.0
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ chokidar: 3.6.0
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- typescript
dev: true
- /@vuepress/plugin-docsearch@2.0.0-rc.0(@algolia/client-search@4.22.0)(search-insights@2.13.0):
- resolution: {integrity: sha512-bFbb+RxNyoLVbojv3Fh3UNfMmx9tszdae5ni9nG2xa05giCRwGKT0wFG3Q6n0a9kIQ6V7z3PjCj9x1k4SALPEA==}
+ /@vuepress/plugin-catalog@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-ujVHyVSOJH42jA5m4xMJ7+hKmN8teg+acucE6iUBszIMtpx65X2drD+dSAXANC4rEp/Lznivw9/s9bScOjNTEg==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-copy-code@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-qUTk6WL8BaziZ/M3J9e//V59hKnkG2vrN28ddiNNCFydCtEcum2zAXRTA3fh5z+s+vfFhniwhrmKcGmSPoPSJw==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-copyright@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-C1l5O5w+n47GlSHCXE/NtQ7MdpoM7pX0EuLMAwcwg/NJ9dc20IHt49A3+TFwAZRXjokXATzLem8J6CikiPFYiA==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-docsearch@2.0.0-rc.15(@algolia/client-search@4.22.1)(search-insights@2.13.0)(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-TqhY7EwhxIQaC9/zLjf/fe3UeXJpQ7tCYCLzdRYj99OqyOUhwhSlDrDi8G/EIJn75jqW/H6Po6Szi7CiOKZTLA==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
dependencies:
'@docsearch/css': 3.5.2
- '@docsearch/js': 3.5.2(@algolia/client-search@4.22.0)(search-insights@2.13.0)
- '@docsearch/react': 3.5.2(@algolia/client-search@4.22.0)(search-insights@2.13.0)
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
+ '@docsearch/js': 3.5.2(@algolia/client-search@4.22.1)(search-insights@2.13.0)
+ '@docsearch/react': 3.5.2(@algolia/client-search@4.22.1)(search-insights@2.13.0)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
ts-debounce: 4.0.0
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -2542,192 +2602,222 @@ packages:
- react
- react-dom
- search-insights
- - supports-color
- typescript
dev: true
- /@vuepress/plugin-external-link-icon@2.0.0-rc.0:
- resolution: {integrity: sha512-o8bk0oIlj/BkKc02mq91XLDloq1VOz/8iNcRwKAeqBE6svXzdYiyoTGet0J/4iPuAetsCn75S57W6RioDJHMnQ==}
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/markdown': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- vue: 3.4.3
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /@vuepress/plugin-git@2.0.0-rc.0:
- resolution: {integrity: sha512-r7UF77vZxaYeJQLygzodKv+15z3/dTLuGp4VcYO21W6BlJZvd4u9zqgiV7A//bZQvK4+3Hprylr0G3KgXqMewA==}
- dependencies:
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- execa: 8.0.1
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /@vuepress/plugin-google-analytics@2.0.0-rc.0:
- resolution: {integrity: sha512-rkYW2LGkLAfRFtaFWVPr1V2mS6hwgYhn2hLeJAF5xHlC3PcjCiSV0cqH7ooeCo+FBJUlCtMQ9N8iSNl63vd7VQ==}
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /@vuepress/plugin-medium-zoom@2.0.0-rc.0:
- resolution: {integrity: sha512-peU1lYKsmKikIe/0pkJuHzD/k6xW2TuqdvKVhV4I//aOE1WxsREKJ4ACcldmoIsnysoDydAUqKT6xDPGyDsH2g==}
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- medium-zoom: 1.1.0
- vue: 3.4.3
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /@vuepress/plugin-nprogress@2.0.0-rc.0:
- resolution: {integrity: sha512-rI+eK0Pg1KiZE+7hGmDUeSbgdWCid8Vnw0hFKNmjinDzGVmx4m03M6qfvclsI0SryH+lR7itZGLaR4gbTlrz/w==}
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /@vuepress/plugin-palette@2.0.0-rc.0:
- resolution: {integrity: sha512-wW70SCp3/K7s1lln5YQsBGTog2WXaQv5piva5zhXcQ47YGf4aAJpThDa5C/ot4HhkPOKn8Iz5s0ckxXZzW8DIg==}
- dependencies:
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- chokidar: 3.5.3
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /@vuepress/plugin-prismjs@2.0.0-rc.0:
- resolution: {integrity: sha512-c5WRI7+FhVjdbymOKQ8F2KY/Bnv7aQtWScVk8vCMUimNi7v7Wff/A/i3KSFNz/tge3LxiAeH/Dc2WS/OnQXwCg==}
- dependencies:
- '@vuepress/core': 2.0.0-rc.0
- prismjs: 1.29.0
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /@vuepress/plugin-theme-data@2.0.0-rc.0:
- resolution: {integrity: sha512-FXY3/Ml+rM6gNKvwdBF6vKAcwnSvtXCzKgQwJAw3ppQTKUkLcbOxqM+h4d8bzHWAAvdnEvQFug5uEZgWllBQbA==}
- dependencies:
- '@vue/devtools-api': 6.5.1
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- vue: 3.4.3
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /@vuepress/shared@2.0.0-rc.0:
- resolution: {integrity: sha512-ikdSfjRv5LGM1iv4HHwF9P6gqTjaFCXKPK+hzlkHFHNZO1GLqk7/BPc4F51tAG1s8TcLhUZc+54LrfgS7PkXXA==}
- dependencies:
- '@mdit-vue/types': 1.0.0
- '@vue/shared': 3.4.3
- dev: true
-
- /@vuepress/theme-default@2.0.0-rc.0:
- resolution: {integrity: sha512-I8Y08evDmMuD1jh3NftPpFFSlCWOizQDJLjN7EQwcg7jiAP4A7c2REo6nBN2EmP24Mi7UrRM+RnytHR5V+pElA==}
+ /@vuepress/plugin-external-link-icon@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-8WHeA+m5y2TcnhL6IU4qZbdEkljqFHICAUglN0oypiFkEioO4MXJi+8Xd2b+GNqvsFKGvh+lDqMSXJvaWf9XAQ==}
peerDependencies:
- sass-loader: ^13.3.2
- peerDependenciesMeta:
- sass-loader:
- optional: true
+ vuepress: 2.0.0-rc.8
dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/plugin-active-header-links': 2.0.0-rc.0
- '@vuepress/plugin-back-to-top': 2.0.0-rc.0
- '@vuepress/plugin-container': 2.0.0-rc.0
- '@vuepress/plugin-external-link-icon': 2.0.0-rc.0
- '@vuepress/plugin-git': 2.0.0-rc.0
- '@vuepress/plugin-medium-zoom': 2.0.0-rc.0
- '@vuepress/plugin-nprogress': 2.0.0-rc.0
- '@vuepress/plugin-palette': 2.0.0-rc.0
- '@vuepress/plugin-prismjs': 2.0.0-rc.0
- '@vuepress/plugin-theme-data': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
- sass: 1.69.6
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-feed@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-b7B5pmT4QKYZ/JlLF50NPRWOcsEuj9xiaVGI+mhIztn4045gYmb7NFbyl+nB/L5y1skM6tGFekJ1sApMwwtuUA==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ cheerio: 1.0.0-rc.12
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ xml-js: 1.6.11
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-git@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-7H/j/Ou+KsqtaoTtK9ij/E8vDT61kUtjYQSOeKRby2HXtBt3fTCNyiOPSpdwd2Mw5nJutww9/rL7//6KNo02CA==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ execa: 8.0.1
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ dev: true
+
+ /@vuepress/plugin-google-analytics@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-ovMpOYz0fFoVcRVgyv+7qnU7LPnovocbtYPk+oPspd9hMedYXjAMeyxOYYnN/MiC6+DSKshDqStTfjVpW3x9DQ==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ dev: true
+
+ /@vuepress/plugin-nprogress@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-apjNhtKY0Cm0JonERR6WJ9/3aQsucex3Zr21SRouOaNOWrrGAWt8xXwcl0+wjXJqmGm1P368FPPlCQ6qYpRQZg==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-photo-swipe@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-xPvjT7BNvhMWRxbzGgAXfc4aqTKFiRH1Kue1Mgrcpo+hbxXqmfYu+CBdZur3oaCgHuJPGOh8Gl7aD+YrX69CDg==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ photoswipe: 5.4.3
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-prismjs@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-KGvg+zRTaiCmSJ8w1XR0hXDFOxGJ/FzhJcGta+hIiwULnZCEK5N93W30MbeRb6NjCbJUCanqCV6nrfpZfI7zIA==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ prismjs: 1.29.0
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ dev: true
+
+ /@vuepress/plugin-pwa@2.0.0-rc.16(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-0/El2lTkIsT0BYDrs2o1wDZBP9LnW7XLDLEYtw2vs/cKPm8s9PlVXEAyzQHSmjhUlumRcSVbuwCVW2jr8lmxaQ==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ mitt: 3.0.1
+ register-service-worker: 1.7.2
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ workbox-build: 7.0.0
+ transitivePeerDependencies:
+ - '@types/babel__core'
- '@vue/composition-api'
- supports-color
- typescript
dev: true
- /@vuepress/utils@2.0.0-rc.0:
- resolution: {integrity: sha512-Q1ay/woClDHcW0Qe91KsnHoupdNN0tp/vhjvVLuAYxlv/1Obii7hz9WFcajyyGEhmsYxdvG2sGmcxFA02tuKkw==}
+ /@vuepress/plugin-reading-time@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-y+TN95EK95SvTUHO0XhOmaZHcxQBtZbh6BbKSfVuxvMejZGsICXQaO2M3BKxFjdrD/cx8LntyVu2XKY5tJvp3w==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-redirect@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-sdaJxAyU5SErZffJG5/cg+ABeNI5T2EaMJHpKo8yzQN+91XDqgN072/A4aaP2eBBP6RzqBk8djTUeDes8qpACw==}
+ hasBin: true
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ cac: 6.7.14
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-rtl@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-YTfLHWrLv92EuGYMbePGcqEuPoAhuAoVTpNbNyALya2TKzsUriFv5qwvg9wMwydFX769HowhSup4t3O+29BdiQ==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-seo@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-e0LmR8GCwm0ZQmicr75+6nAtKzj//kN2OBb8S9FfymjTuLUlV2THyVr5IuTb2BHl6j28t436UmbKIQweSu0GYQ==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-sitemap@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-uV2Bs6Fi3TT7b8VTffcfBmsKltUghOpf5GvdHPVn+f0qPZgHUK8hJBlOkAjepaV5FT6z3RCqxkCnprSYi+Jo3A==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.17(vuepress@2.0.0-rc.8)
+ sitemap: 7.1.1
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/plugin-theme-data@2.0.0-rc.15(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-A72VNnG4y92wSBiKI9QdDW8r3HELSUyCBjb7SgqOWqOAltGADUre4hL5cvscMhzYnlQOmoNadG9ecn95B7FQxw==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.8
+ dependencies:
+ '@vue/devtools-api': 6.6.1
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /@vuepress/shared@2.0.0-rc.8:
+ resolution: {integrity: sha512-5C6EzC9A3nepX8pL1zgJnwoP0wtZR2AIaADq3quKKp8rn3otTIsyL3wTQM977rLQhbPg19vYbLdAHyap+DNEIw==}
+ dependencies:
+ '@mdit-vue/types': 2.0.0
+ dev: true
+
+ /@vuepress/utils@2.0.0-rc.8:
+ resolution: {integrity: sha512-HjeLWk1r2zggunYjqBYfXhklWmyy0BxhhGtJwycyDXBtDsP4yKiNnk5z3+uJ1UiA6CWEswLtjO6bFrpNf8RPUQ==}
dependencies:
'@types/debug': 4.1.12
'@types/fs-extra': 11.0.4
'@types/hash-sum': 1.0.2
- '@vuepress/shared': 2.0.0-rc.0
+ '@vuepress/shared': 2.0.0-rc.8
debug: 4.3.4
fs-extra: 11.2.0
- globby: 14.0.0
+ globby: 14.0.1
hash-sum: 2.0.0
- ora: 7.0.1
+ ora: 8.0.1
picocolors: 1.0.0
upath: 2.0.1
transitivePeerDependencies:
- supports-color
dev: true
- /@vueuse/core@10.7.1(vue@3.4.3):
- resolution: {integrity: sha512-74mWHlaesJSWGp1ihg76vAnfVq9NTv1YT0SYhAQ6zwFNdBkkP+CKKJmVOEHcdSnLXCXYiL5e7MaewblfiYLP7g==}
+ /@vueuse/core@10.8.0(vue@3.4.19):
+ resolution: {integrity: sha512-G9Ok9fjx10TkNIPn8V1dJmK1NcdJCtYmDRyYiTMUyJ1p0Tywc1zmOoCQ2xhHYyz8ULBU4KjIJQ9n+Lrty74iVw==}
dependencies:
'@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.7.1
- '@vueuse/shared': 10.7.1(vue@3.4.3)
- vue-demi: 0.14.6(vue@3.4.3)
+ '@vueuse/metadata': 10.8.0
+ '@vueuse/shared': 10.8.0(vue@3.4.19)
+ vue-demi: 0.14.7(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: true
- /@vueuse/metadata@10.7.1:
- resolution: {integrity: sha512-jX8MbX5UX067DYVsbtrmKn6eG6KMcXxLRLlurGkZku5ZYT3vxgBjui2zajvUZ18QLIjrgBkFRsu7CqTAg18QFw==}
+ /@vueuse/metadata@10.8.0:
+ resolution: {integrity: sha512-Nim/Vle5OgXcXhAvGOgkJQXB1Yb+Kq/fMbLuv3YYDYbiQrwr39ljuD4k9fPeq4yUyokYRo2RaNQmbbIMWB/9+w==}
dev: true
- /@vueuse/shared@10.7.1(vue@3.4.3):
- resolution: {integrity: sha512-v0jbRR31LSgRY/C5i5X279A/WQjD6/JsMzGa+eqt658oJ75IvQXAeONmwvEMrvJQKnRElq/frzBR7fhmWY5uLw==}
+ /@vueuse/shared@10.8.0(vue@3.4.19):
+ resolution: {integrity: sha512-dUdy6zwHhULGxmr9YUg8e+EnB39gcM4Fe2oKBSrh3cOsV30JcMPtsyuspgFCUo5xxFNaeMf/W2yyKfST7Bg8oQ==}
dependencies:
- vue-demi: 0.14.6(vue@3.4.3)
+ vue-demi: 0.14.7(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -2748,23 +2838,23 @@ packages:
uri-js: 4.4.1
dev: true
- /algoliasearch@4.22.0:
- resolution: {integrity: sha512-gfceltjkwh7PxXwtkS8KVvdfK+TSNQAWUeNSxf4dA29qW5tf2EGwa8jkJujlT9jLm17cixMVoGNc+GJFO1Mxhg==}
+ /algoliasearch@4.22.1:
+ resolution: {integrity: sha512-jwydKFQJKIx9kIZ8Jm44SdpigFwRGPESaxZBaHSV0XWN2yBJAOT4mT7ppvlrpA4UGzz92pqFnVKr/kaZXrcreg==}
dependencies:
- '@algolia/cache-browser-local-storage': 4.22.0
- '@algolia/cache-common': 4.22.0
- '@algolia/cache-in-memory': 4.22.0
- '@algolia/client-account': 4.22.0
- '@algolia/client-analytics': 4.22.0
- '@algolia/client-common': 4.22.0
- '@algolia/client-personalization': 4.22.0
- '@algolia/client-search': 4.22.0
- '@algolia/logger-common': 4.22.0
- '@algolia/logger-console': 4.22.0
- '@algolia/requester-browser-xhr': 4.22.0
- '@algolia/requester-common': 4.22.0
- '@algolia/requester-node-http': 4.22.0
- '@algolia/transporter': 4.22.0
+ '@algolia/cache-browser-local-storage': 4.22.1
+ '@algolia/cache-common': 4.22.1
+ '@algolia/cache-in-memory': 4.22.1
+ '@algolia/client-account': 4.22.1
+ '@algolia/client-analytics': 4.22.1
+ '@algolia/client-common': 4.22.1
+ '@algolia/client-personalization': 4.22.1
+ '@algolia/client-search': 4.22.1
+ '@algolia/logger-common': 4.22.1
+ '@algolia/logger-console': 4.22.1
+ '@algolia/requester-browser-xhr': 4.22.1
+ '@algolia/requester-common': 4.22.1
+ '@algolia/requester-node-http': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: true
/ansi-regex@5.0.1:
@@ -2813,24 +2903,26 @@ packages:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
- /array-buffer-byte-length@1.0.0:
- resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
- dependencies:
- call-bind: 1.0.5
- is-array-buffer: 3.0.2
- dev: true
-
- /arraybuffer.prototype.slice@1.0.2:
- resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==}
+ /array-buffer-byte-length@1.0.1:
+ resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
engines: {node: '>= 0.4'}
dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.5
+ call-bind: 1.0.7
+ is-array-buffer: 3.0.4
+ dev: true
+
+ /arraybuffer.prototype.slice@1.0.3:
+ resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- is-array-buffer: 3.0.2
- is-shared-array-buffer: 1.0.2
+ es-abstract: 1.22.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ is-array-buffer: 3.0.4
+ is-shared-array-buffer: 1.0.3
dev: true
/async@3.2.5:
@@ -2842,59 +2934,61 @@ packages:
engines: {node: '>= 4.0.0'}
dev: true
- /autoprefixer@10.4.16(postcss@8.4.32):
- resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
+ /autoprefixer@10.4.17(postcss@8.4.35):
+ resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.22.2
- caniuse-lite: 1.0.30001572
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001589
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
dev: true
- /available-typed-arrays@1.0.5:
- resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
+ /available-typed-arrays@1.0.7:
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ possible-typed-array-names: 1.0.0
dev: true
- /babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==}
+ /babel-plugin-polyfill-corejs2@0.4.8(@babel/core@7.23.9):
+ resolution: {integrity: sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==}
+ /babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.23.9):
+ resolution: {integrity: sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
- core-js-compat: 3.35.0
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.9)
+ core-js-compat: 3.36.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==}
+ /babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.23.9):
+ resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.9)
transitivePeerDependencies:
- supports-color
dev: true
@@ -2907,12 +3001,8 @@ packages:
resolution: {integrity: sha512-urXwkHgwp6GsXVF+it01485Z2Cj4pnW02ICnM0TemOlkKmCNnDLmyy+ZZiRXBpwldUXO+aRNr7Hdia4CBvXJ5A==}
dev: true
- /base64-js@1.5.1:
- resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- dev: true
-
- /bcrypt-ts@5.0.1:
- resolution: {integrity: sha512-+Q6wjkT+PO0Da56BIyaYyueMeqAV/zOXqfFIssRgCbQLGwU+YkBJfBpP2Q9Q8hGbpDyDNCrG36npSdE+S9HWUA==}
+ /bcrypt-ts@5.0.2:
+ resolution: {integrity: sha512-gDwQ5784AkkfhHACh3jGcg1hUubyZyeq9AtVd5gXkcyHGVOC+mORjRIHSj+fHfqwY5vxwyBLXQpcfk8MpK0ROg==}
engines: {node: '>=18'}
dev: true
@@ -2921,14 +3011,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /bl@5.1.0:
- resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
- dependencies:
- buffer: 6.0.3
- inherits: 2.0.4
- readable-stream: 3.6.2
- dev: true
-
/boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
@@ -2953,28 +3035,21 @@ packages:
fill-range: 7.0.1
dev: true
- /browserslist@4.22.2:
- resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
+ /browserslist@4.23.0:
+ resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001572
- electron-to-chromium: 1.4.616
+ caniuse-lite: 1.0.30001589
+ electron-to-chromium: 1.4.679
node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.22.2)
+ update-browserslist-db: 1.0.13(browserslist@4.23.0)
dev: true
/buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
dev: true
- /buffer@6.0.3:
- resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
- dev: true
-
/builtin-modules@3.3.0:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
@@ -2985,12 +3060,15 @@ packages:
engines: {node: '>=8'}
dev: true
- /call-bind@1.0.5:
- resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
+ /call-bind@1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ engines: {node: '>= 0.4'}
dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.2
- set-function-length: 1.1.1
+ get-intrinsic: 1.2.4
+ set-function-length: 1.2.1
dev: true
/camelcase@5.3.1:
@@ -2998,8 +3076,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /caniuse-lite@1.0.30001572:
- resolution: {integrity: sha512-1Pbh5FLmn5y4+QhNyJE9j3/7dK44dGB83/ZMjv/qJk86TvDbjk0LosiZo0i0WB0Vx607qMX9jYrn1VLHCkN4rw==}
+ /caniuse-lite@1.0.30001589:
+ resolution: {integrity: sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg==}
dev: true
/chalk@2.4.2:
@@ -3048,8 +3126,8 @@ packages:
parse5-htmlparser2-tree-adapter: 7.0.0
dev: true
- /chokidar@3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
+ /chokidar@3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
dependencies:
anymatch: 3.1.3
@@ -3126,10 +3204,10 @@ packages:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
dev: true
- /core-js-compat@3.35.0:
- resolution: {integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==}
+ /core-js-compat@3.36.0:
+ resolution: {integrity: sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw==}
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.23.0
dev: true
/create-codepen@1.0.1:
@@ -3195,21 +3273,21 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /define-data-property@1.1.1:
- resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
+ /define-data-property@1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.2.2
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
gopd: 1.0.1
- has-property-descriptors: 1.0.1
dev: true
/define-properties@1.2.1:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
dependencies:
- define-data-property: 1.1.1
- has-property-descriptors: 1.0.1
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
dev: true
@@ -3244,10 +3322,6 @@ packages:
domhandler: 5.0.3
dev: true
- /eastasianwidth@0.2.0:
- resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- dev: true
-
/ejs@3.1.9:
resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
engines: {node: '>=0.10.0'}
@@ -3256,8 +3330,8 @@ packages:
jake: 10.8.7
dev: true
- /electron-to-chromium@1.4.616:
- resolution: {integrity: sha512-1n7zWYh8eS0L9Uy+GskE0lkBUNK83cXTVJI0pU3mGprFsbfSdAc15VTFbo+A+Bq4pwstmL30AVcEU3Fo463lNg==}
+ /electron-to-chromium@1.4.679:
+ resolution: {integrity: sha512-NhQMsz5k0d6m9z3qAxnsOR/ebal4NAGsrNVRwcDo4Kc/zQ7KdsTKZUxZoygHcVRb0QDW3waEDIcE3isZ79RP6g==}
dev: true
/emoji-regex@10.3.0:
@@ -3272,74 +3346,83 @@ packages:
resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==}
dev: true
- /entities@3.0.1:
- resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==}
- engines: {node: '>=0.12'}
- dev: true
-
/entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
dev: true
- /envinfo@7.11.0:
- resolution: {integrity: sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==}
+ /envinfo@7.11.1:
+ resolution: {integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==}
engines: {node: '>=4'}
hasBin: true
dev: true
- /es-abstract@1.22.3:
- resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
+ /es-abstract@1.22.4:
+ resolution: {integrity: sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==}
engines: {node: '>= 0.4'}
dependencies:
- array-buffer-byte-length: 1.0.0
- arraybuffer.prototype.slice: 1.0.2
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- es-set-tostringtag: 2.0.2
+ array-buffer-byte-length: 1.0.1
+ arraybuffer.prototype.slice: 1.0.3
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ es-set-tostringtag: 2.0.3
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
- get-intrinsic: 1.2.2
- get-symbol-description: 1.0.0
+ get-intrinsic: 1.2.4
+ get-symbol-description: 1.0.2
globalthis: 1.0.3
gopd: 1.0.1
- has-property-descriptors: 1.0.1
- has-proto: 1.0.1
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
has-symbols: 1.0.3
- hasown: 2.0.0
- internal-slot: 1.0.6
- is-array-buffer: 3.0.2
+ hasown: 2.0.1
+ internal-slot: 1.0.7
+ is-array-buffer: 3.0.4
is-callable: 1.2.7
- is-negative-zero: 2.0.2
+ is-negative-zero: 2.0.3
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
+ is-shared-array-buffer: 1.0.3
is-string: 1.0.7
- is-typed-array: 1.1.12
+ is-typed-array: 1.1.13
is-weakref: 1.0.2
object-inspect: 1.13.1
object-keys: 1.1.1
object.assign: 4.1.5
- regexp.prototype.flags: 1.5.1
- safe-array-concat: 1.0.1
- safe-regex-test: 1.0.0
+ regexp.prototype.flags: 1.5.2
+ safe-array-concat: 1.1.0
+ safe-regex-test: 1.0.3
string.prototype.trim: 1.2.8
string.prototype.trimend: 1.0.7
string.prototype.trimstart: 1.0.7
- typed-array-buffer: 1.0.0
- typed-array-byte-length: 1.0.0
- typed-array-byte-offset: 1.0.0
- typed-array-length: 1.0.4
+ typed-array-buffer: 1.0.2
+ typed-array-byte-length: 1.0.1
+ typed-array-byte-offset: 1.0.2
+ typed-array-length: 1.0.5
unbox-primitive: 1.0.2
- which-typed-array: 1.1.13
+ which-typed-array: 1.1.14
dev: true
- /es-set-tostringtag@2.0.2:
- resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
+ /es-define-property@1.0.0:
+ resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.2.2
- has-tostringtag: 1.0.0
- hasown: 2.0.0
+ get-intrinsic: 1.2.4
+ dev: true
+
+ /es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /es-set-tostringtag@2.0.3:
+ resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.4
+ has-tostringtag: 1.0.2
+ hasown: 2.0.1
dev: true
/es-to-primitive@1.2.1:
@@ -3351,39 +3434,39 @@ packages:
is-symbol: 1.0.4
dev: true
- /esbuild@0.19.11:
- resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==}
+ /esbuild@0.19.12:
+ resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/aix-ppc64': 0.19.11
- '@esbuild/android-arm': 0.19.11
- '@esbuild/android-arm64': 0.19.11
- '@esbuild/android-x64': 0.19.11
- '@esbuild/darwin-arm64': 0.19.11
- '@esbuild/darwin-x64': 0.19.11
- '@esbuild/freebsd-arm64': 0.19.11
- '@esbuild/freebsd-x64': 0.19.11
- '@esbuild/linux-arm': 0.19.11
- '@esbuild/linux-arm64': 0.19.11
- '@esbuild/linux-ia32': 0.19.11
- '@esbuild/linux-loong64': 0.19.11
- '@esbuild/linux-mips64el': 0.19.11
- '@esbuild/linux-ppc64': 0.19.11
- '@esbuild/linux-riscv64': 0.19.11
- '@esbuild/linux-s390x': 0.19.11
- '@esbuild/linux-x64': 0.19.11
- '@esbuild/netbsd-x64': 0.19.11
- '@esbuild/openbsd-x64': 0.19.11
- '@esbuild/sunos-x64': 0.19.11
- '@esbuild/win32-arm64': 0.19.11
- '@esbuild/win32-ia32': 0.19.11
- '@esbuild/win32-x64': 0.19.11
+ '@esbuild/aix-ppc64': 0.19.12
+ '@esbuild/android-arm': 0.19.12
+ '@esbuild/android-arm64': 0.19.12
+ '@esbuild/android-x64': 0.19.12
+ '@esbuild/darwin-arm64': 0.19.12
+ '@esbuild/darwin-x64': 0.19.12
+ '@esbuild/freebsd-arm64': 0.19.12
+ '@esbuild/freebsd-x64': 0.19.12
+ '@esbuild/linux-arm': 0.19.12
+ '@esbuild/linux-arm64': 0.19.12
+ '@esbuild/linux-ia32': 0.19.12
+ '@esbuild/linux-loong64': 0.19.12
+ '@esbuild/linux-mips64el': 0.19.12
+ '@esbuild/linux-ppc64': 0.19.12
+ '@esbuild/linux-riscv64': 0.19.12
+ '@esbuild/linux-s390x': 0.19.12
+ '@esbuild/linux-x64': 0.19.12
+ '@esbuild/netbsd-x64': 0.19.12
+ '@esbuild/openbsd-x64': 0.19.12
+ '@esbuild/sunos-x64': 0.19.12
+ '@esbuild/win32-arm64': 0.19.12
+ '@esbuild/win32-ia32': 0.19.12
+ '@esbuild/win32-x64': 0.19.12
dev: true
- /escalade@3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ /escalade@3.1.2:
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
dev: true
@@ -3452,14 +3535,14 @@ packages:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: true
- /fastq@1.16.0:
- resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
+ /fastq@1.17.1:
+ resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
dependencies:
reusify: 1.0.4
dev: true
- /fflate@0.8.1:
- resolution: {integrity: sha512-/exOvEuc+/iaUm105QIiOt4LpBdMTWsXxqR0HDF35vx3fmaKzw7354gTilCh5rkzEt8WYyG//ku3h3nRmd7CHQ==}
+ /fflate@0.8.2:
+ resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
dev: true
/filelist@1.0.4:
@@ -3532,9 +3615,9 @@ packages:
resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-abstract: 1.22.4
functions-have-names: 1.2.3
dev: true
@@ -3552,13 +3635,20 @@ packages:
engines: {node: 6.* || 8.* || >= 10.*}
dev: true
- /get-intrinsic@1.2.2:
- resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
+ /get-east-asian-width@1.2.0:
+ resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /get-intrinsic@1.2.4:
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ engines: {node: '>= 0.4'}
dependencies:
+ es-errors: 1.3.0
function-bind: 1.1.2
- has-proto: 1.0.1
+ has-proto: 1.0.3
has-symbols: 1.0.3
- hasown: 2.0.0
+ hasown: 2.0.1
dev: true
/get-own-enumerable-property-symbols@3.0.2:
@@ -3570,18 +3660,19 @@ packages:
engines: {node: '>=16'}
dev: true
- /get-symbol-description@1.0.0:
- resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
+ /get-symbol-description@1.0.2:
+ resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
dev: true
/giscus@1.4.0:
resolution: {integrity: sha512-Pll+pcclTx47NcFDw8nuka2Ja85Gc4XWpzSgL0rszOQaMQRQIV8UMR+zP4a+/N3tV2TXc1SZ537kWlsN6EsAaw==}
dependencies:
- lit: 3.1.0
+ lit: 3.1.2
dev: true
/glob-parent@5.1.2:
@@ -3614,13 +3705,13 @@ packages:
define-properties: 1.2.1
dev: true
- /globby@14.0.0:
- resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==}
+ /globby@14.0.1:
+ resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
engines: {node: '>=18'}
dependencies:
- '@sindresorhus/merge-streams': 1.0.0
+ '@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.2
- ignore: 5.3.0
+ ignore: 5.3.1
path-type: 5.0.0
slash: 5.1.0
unicorn-magic: 0.1.0
@@ -3629,7 +3720,7 @@ packages:
/gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
- get-intrinsic: 1.2.2
+ get-intrinsic: 1.2.4
dev: true
/graceful-fs@4.2.11:
@@ -3660,14 +3751,14 @@ packages:
engines: {node: '>=8'}
dev: true
- /has-property-descriptors@1.0.1:
- resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
+ /has-property-descriptors@1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
dependencies:
- get-intrinsic: 1.2.2
+ es-define-property: 1.0.0
dev: true
- /has-proto@1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ /has-proto@1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
dev: true
@@ -3676,8 +3767,8 @@ packages:
engines: {node: '>= 0.4'}
dev: true
- /has-tostringtag@1.0.0:
- resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
+ /has-tostringtag@1.0.2:
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
@@ -3687,8 +3778,8 @@ packages:
resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
dev: true
- /hasown@2.0.0:
- resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ /hasown@2.0.1:
+ resolution: {integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==}
engines: {node: '>= 0.4'}
dependencies:
function-bind: 1.1.2
@@ -3708,9 +3799,9 @@ packages:
engines: {node: '>=16.17.0'}
dev: true
- /husky@8.0.3:
- resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
- engines: {node: '>=14'}
+ /husky@9.0.11:
+ resolution: {integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==}
+ engines: {node: '>=18'}
hasBin: true
dev: true
@@ -3718,17 +3809,13 @@ packages:
resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==}
dev: true
- /ieee754@1.2.1:
- resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- dev: true
-
- /ignore@5.3.0:
- resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
+ /ignore@5.3.1:
+ resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
engines: {node: '>= 4'}
dev: true
- /immutable@4.3.4:
- resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==}
+ /immutable@4.3.5:
+ resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==}
dev: true
/inflight@1.0.6:
@@ -3742,21 +3829,21 @@ packages:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
dev: true
- /internal-slot@1.0.6:
- resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
+ /internal-slot@1.0.7:
+ resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.2.2
- hasown: 2.0.0
- side-channel: 1.0.4
+ es-errors: 1.3.0
+ hasown: 2.0.1
+ side-channel: 1.0.5
dev: true
- /is-array-buffer@3.0.2:
- resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+ /is-array-buffer@3.0.4:
+ resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-typed-array: 1.1.12
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
dev: true
/is-bigint@1.0.4:
@@ -3776,8 +3863,8 @@ packages:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
dev: true
/is-callable@1.2.7:
@@ -3788,14 +3875,14 @@ packages:
/is-core-module@2.13.1:
resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
dependencies:
- hasown: 2.0.0
+ hasown: 2.0.1
dev: true
/is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
dev: true
/is-extendable@0.1.1:
@@ -3829,8 +3916,8 @@ packages:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
dev: true
- /is-negative-zero@2.0.2:
- resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
+ /is-negative-zero@2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
dev: true
@@ -3838,7 +3925,7 @@ packages:
resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
dev: true
/is-number@7.0.0:
@@ -3855,8 +3942,8 @@ packages:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
dev: true
/is-regexp@1.0.0:
@@ -3864,10 +3951,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /is-shared-array-buffer@1.0.2:
- resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ /is-shared-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
dev: true
/is-stream@2.0.1:
@@ -3884,7 +3972,7 @@ packages:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
dev: true
/is-symbol@1.0.4:
@@ -3894,11 +3982,11 @@ packages:
has-symbols: 1.0.3
dev: true
- /is-typed-array@1.1.12:
- resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
+ /is-typed-array@1.1.13:
+ resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
dependencies:
- which-typed-array: 1.1.13
+ which-typed-array: 1.1.14
dev: true
/is-unicode-supported@1.3.0:
@@ -3906,10 +3994,15 @@ packages:
engines: {node: '>=12'}
dev: true
+ /is-unicode-supported@2.0.0:
+ resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==}
+ engines: {node: '>=18'}
+ dev: true
+
/is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
dev: true
/isarray@2.0.5:
@@ -3935,7 +4028,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.10.6
+ '@types/node': 20.11.19
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -4007,37 +4100,37 @@ packages:
engines: {node: '>=6'}
dev: true
- /lilconfig@3.0.0:
- resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==}
+ /lilconfig@3.1.1:
+ resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
engines: {node: '>=14'}
dev: true
- /linkify-it@4.0.1:
- resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==}
+ /linkify-it@5.0.0:
+ resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
dependencies:
- uc.micro: 1.0.6
+ uc.micro: 2.0.0
dev: true
- /lit-element@4.0.2:
- resolution: {integrity: sha512-/W6WQZUa5VEXwC7H9tbtDMdSs9aWil3Ou8hU6z2cOKWbsm/tXPAcsoaHVEtrDo0zcOIE5GF6QgU55tlGL2Nihg==}
+ /lit-element@4.0.4:
+ resolution: {integrity: sha512-98CvgulX6eCPs6TyAIQoJZBCQPo80rgXR+dVBs61cstJXqtI+USQZAbA4gFHh6L/mxBx9MrgPLHLsUgDUHAcCQ==}
dependencies:
- '@lit-labs/ssr-dom-shim': 1.1.2
- '@lit/reactive-element': 2.0.2
- lit-html: 3.1.0
+ '@lit-labs/ssr-dom-shim': 1.2.0
+ '@lit/reactive-element': 2.0.4
+ lit-html: 3.1.2
dev: true
- /lit-html@3.1.0:
- resolution: {integrity: sha512-FwAjq3iNsaO6SOZXEIpeROlJLUlrbyMkn4iuv4f4u1H40Jw8wkeR/OUXZUHUoiYabGk8Y4Y0F/rgq+R4MrOLmA==}
+ /lit-html@3.1.2:
+ resolution: {integrity: sha512-3OBZSUrPnAHoKJ9AMjRL/m01YJxQMf+TMHanNtTHG68ubjnZxK0RFl102DPzsw4mWnHibfZIBJm3LWCZ/LmMvg==}
dependencies:
'@types/trusted-types': 2.0.7
dev: true
- /lit@3.1.0:
- resolution: {integrity: sha512-rzo/hmUqX8zmOdamDAeydfjsGXbbdtAFqMhmocnh2j9aDYqbu0fjXygjCa0T99Od9VQ/2itwaGrjZz/ZELVl7w==}
+ /lit@3.1.2:
+ resolution: {integrity: sha512-VZx5iAyMtX7CV4K8iTLdCkMaYZ7ipjJZ0JcSdJ0zIdGxxyurjIn7yuuSxNBD7QmjvcNJwr0JS4cAdAtsy7gZ6w==}
dependencies:
- '@lit/reactive-element': 2.0.2
- lit-element: 4.0.2
- lit-html: 3.1.0
+ '@lit/reactive-element': 2.0.4
+ lit-element: 4.0.4
+ lit-html: 3.1.2
dev: true
/locate-path@5.0.0:
@@ -4059,9 +4152,9 @@ packages:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
dev: true
- /log-symbols@5.1.0:
- resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
- engines: {node: '>=12'}
+ /log-symbols@6.0.0:
+ resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
+ engines: {node: '>=18'}
dependencies:
chalk: 5.3.0
is-unicode-supported: 1.3.0
@@ -4086,48 +4179,41 @@ packages:
sourcemap-codec: 1.4.8
dev: true
- /magic-string@0.30.5:
- resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
+ /magic-string@0.30.7:
+ resolution: {integrity: sha512-8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA==}
engines: {node: '>=12'}
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
dev: true
- /markdown-it-anchor@8.6.7(@types/markdown-it@13.0.7)(markdown-it@13.0.2):
+ /markdown-it-anchor@8.6.7(@types/markdown-it@13.0.7)(markdown-it@14.0.0):
resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==}
peerDependencies:
'@types/markdown-it': '*'
markdown-it: '*'
dependencies:
'@types/markdown-it': 13.0.7
- markdown-it: 13.0.2
+ markdown-it: 14.0.0
dev: true
- /markdown-it-container@3.0.0:
- resolution: {integrity: sha512-y6oKTq4BB9OQuY/KLfk/O3ysFhB3IMYoIWhGJEidXt1NQFocFK2sA2t0NYZAMyMShAGL6x5OPIbrmXPIqaN9rw==}
+ /markdown-it-emoji@3.0.0:
+ resolution: {integrity: sha512-+rUD93bXHubA4arpEZO3q80so0qgoFJEKRkRbjKX8RTdca89v2kfyF+xR3i2sQTwql9tpPZPOQN5B+PunspXRg==}
dev: true
- /markdown-it-emoji@2.0.2:
- resolution: {integrity: sha512-zLftSaNrKuYl0kR5zm4gxXjHaOI3FAOEaloKmRA5hijmJZvSjmxcokOLlzycb/HXlUFWzXqpIEoyEMCE4i9MvQ==}
- dev: true
-
- /markdown-it@13.0.2:
- resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==}
+ /markdown-it@14.0.0:
+ resolution: {integrity: sha512-seFjF0FIcPt4P9U39Bq1JYblX0KZCjDLFFQPHpL5AzHpqPEKtosxmdq/LTVZnjfH7tjt9BxStm+wXcDBNuYmzw==}
hasBin: true
dependencies:
argparse: 2.0.1
- entities: 3.0.1
- linkify-it: 4.0.1
- mdurl: 1.0.1
- uc.micro: 1.0.6
+ entities: 4.5.0
+ linkify-it: 5.0.0
+ mdurl: 2.0.0
+ punycode.js: 2.3.1
+ uc.micro: 2.0.0
dev: true
- /mdurl@1.0.1:
- resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
- dev: true
-
- /medium-zoom@1.1.0:
- resolution: {integrity: sha512-ewyDsp7k4InCUp3jRmwHBRFGyjBimKps/AJLjRSox+2q/2H4p/PNpQf+pwONWlJiOudkBXtbdmVbFjqyybfTmQ==}
+ /mdurl@2.0.0:
+ resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
dev: true
/merge-stream@2.0.0:
@@ -4232,7 +4318,7 @@ packages:
resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
@@ -4258,18 +4344,18 @@ packages:
mimic-fn: 4.0.0
dev: true
- /ora@7.0.1:
- resolution: {integrity: sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==}
- engines: {node: '>=16'}
+ /ora@8.0.1:
+ resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==}
+ engines: {node: '>=18'}
dependencies:
chalk: 5.3.0
cli-cursor: 4.0.0
cli-spinners: 2.9.2
is-interactive: 2.0.0
- is-unicode-supported: 1.3.0
- log-symbols: 5.1.0
- stdin-discarder: 0.1.0
- string-width: 6.1.0
+ is-unicode-supported: 2.0.0
+ log-symbols: 6.0.0
+ stdin-discarder: 0.2.2
+ string-width: 7.1.0
strip-ansi: 7.1.0
dev: true
@@ -4353,20 +4439,25 @@ packages:
engines: {node: '>=10.13.0'}
dev: true
- /postcss-load-config@4.0.2(postcss@8.4.32):
- resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
- engines: {node: '>= 14'}
+ /possible-typed-array-names@1.0.0:
+ resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /postcss-load-config@5.0.3(postcss@8.4.35):
+ resolution: {integrity: sha512-90pBBI5apUVruIEdCxZic93Wm+i9fTrp7TXbgdUCH+/L+2WnfpITSpq5dFU/IPvbv7aNiMlQISpUkAm3fEcvgQ==}
+ engines: {node: '>= 18'}
peerDependencies:
+ jiti: '>=1.21.0'
postcss: '>=8.0.9'
- ts-node: '>=9.0.0'
peerDependenciesMeta:
+ jiti:
+ optional: true
postcss:
optional: true
- ts-node:
- optional: true
dependencies:
- lilconfig: 3.0.0
- postcss: 8.4.32
+ lilconfig: 3.1.1
+ postcss: 8.4.35
yaml: 2.3.4
dev: true
@@ -4374,8 +4465,8 @@ packages:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: true
- /postcss@8.4.32:
- resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==}
+ /postcss@8.4.35:
+ resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.7
@@ -4383,12 +4474,12 @@ packages:
source-map-js: 1.0.2
dev: true
- /preact@10.19.3:
- resolution: {integrity: sha512-nHHTeFVBTHRGxJXKkKu5hT8C/YWBkPso4/Gad6xuj5dbptt9iF9NZr9pHbPhBrnT2klheu7mHTxTZ/LjwJiEiQ==}
+ /preact@10.19.5:
+ resolution: {integrity: sha512-OPELkDmSVbKjbFqF9tgvOowiiQ9TmsJljIzXRyNE8nGiis94pwv1siF78rQkAP1Q1738Ce6pellRg/Ns/CtHqQ==}
dev: true
- /prettier@3.1.1:
- resolution: {integrity: sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==}
+ /prettier@3.2.5:
+ resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
engines: {node: '>=14'}
hasBin: true
dev: true
@@ -4403,6 +4494,11 @@ packages:
engines: {node: '>=6'}
dev: true
+ /punycode.js@2.3.1:
+ resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
+ engines: {node: '>=6'}
+ dev: true
+
/punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
@@ -4429,15 +4525,6 @@ packages:
safe-buffer: 5.2.1
dev: true
- /readable-stream@3.6.2:
- resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
- engines: {node: '>= 6'}
- dependencies:
- inherits: 2.0.4
- string_decoder: 1.3.0
- util-deprecate: 1.0.2
- dev: true
-
/readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
@@ -4463,16 +4550,17 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.23.7
+ '@babel/runtime': 7.23.9
dev: true
- /regexp.prototype.flags@1.5.1:
- resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
+ /regexp.prototype.flags@1.5.2:
+ resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
define-properties: 1.2.1
- set-function-name: 2.0.1
+ es-errors: 1.3.0
+ set-function-name: 2.0.2
dev: true
/regexpu-core@5.3.2:
@@ -4544,7 +4632,7 @@ packages:
jest-worker: 26.6.2
rollup: 2.79.1
serialize-javascript: 4.0.0
- terser: 5.26.0
+ terser: 5.27.2
dev: true
/rollup@2.79.1:
@@ -4555,24 +4643,26 @@ packages:
fsevents: 2.3.3
dev: true
- /rollup@4.9.2:
- resolution: {integrity: sha512-66RB8OtFKUTozmVEh3qyNfH+b+z2RXBVloqO2KCC/pjFaGaHtxP9fVfOQKPSGXg2mElmjmxjW/fZ7iKrEpMH5Q==}
+ /rollup@4.12.0:
+ resolution: {integrity: sha512-wz66wn4t1OHIJw3+XU7mJJQV/2NAfw5OAk6G6Hoo3zcvz/XOfQ52Vgi+AN4Uxoxi0KBBwk2g8zPrTDA4btSB/Q==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ dependencies:
+ '@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.9.2
- '@rollup/rollup-android-arm64': 4.9.2
- '@rollup/rollup-darwin-arm64': 4.9.2
- '@rollup/rollup-darwin-x64': 4.9.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.9.2
- '@rollup/rollup-linux-arm64-gnu': 4.9.2
- '@rollup/rollup-linux-arm64-musl': 4.9.2
- '@rollup/rollup-linux-riscv64-gnu': 4.9.2
- '@rollup/rollup-linux-x64-gnu': 4.9.2
- '@rollup/rollup-linux-x64-musl': 4.9.2
- '@rollup/rollup-win32-arm64-msvc': 4.9.2
- '@rollup/rollup-win32-ia32-msvc': 4.9.2
- '@rollup/rollup-win32-x64-msvc': 4.9.2
+ '@rollup/rollup-android-arm-eabi': 4.12.0
+ '@rollup/rollup-android-arm64': 4.12.0
+ '@rollup/rollup-darwin-arm64': 4.12.0
+ '@rollup/rollup-darwin-x64': 4.12.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.12.0
+ '@rollup/rollup-linux-arm64-gnu': 4.12.0
+ '@rollup/rollup-linux-arm64-musl': 4.12.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.12.0
+ '@rollup/rollup-linux-x64-gnu': 4.12.0
+ '@rollup/rollup-linux-x64-musl': 4.12.0
+ '@rollup/rollup-win32-arm64-msvc': 4.12.0
+ '@rollup/rollup-win32-ia32-msvc': 4.12.0
+ '@rollup/rollup-win32-x64-msvc': 4.12.0
fsevents: 2.3.3
dev: true
@@ -4582,12 +4672,12 @@ packages:
queue-microtask: 1.2.3
dev: true
- /safe-array-concat@1.0.1:
- resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
+ /safe-array-concat@1.1.0:
+ resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==}
engines: {node: '>=0.4'}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
has-symbols: 1.0.3
isarray: 2.0.5
dev: true
@@ -4596,21 +4686,22 @@ packages:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
dev: true
- /safe-regex-test@1.0.0:
- resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
+ /safe-regex-test@1.0.3:
+ resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
+ call-bind: 1.0.7
+ es-errors: 1.3.0
is-regex: 1.1.4
dev: true
- /sass@1.69.6:
- resolution: {integrity: sha512-qbRr3k9JGHWXCvZU77SD2OTwUlC+gNT+61JOLcmLm+XqH4h/5D+p4IIsxvpkB89S9AwJOyb5+rWNpIucaFxSFQ==}
+ /sass@1.71.1:
+ resolution: {integrity: sha512-wovtnV2PxzteLlfNzbgm1tFXPLoZILYAMJtvoXXkD7/+1uP41eKkIt1ypWq5/q2uT94qHjXehEYfmjKOvjL9sg==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
- chokidar: 3.5.3
- immutable: 4.3.4
+ chokidar: 3.6.0
+ immutable: 4.3.5
source-map-js: 1.0.2
dev: true
@@ -4635,8 +4726,8 @@ packages:
hasBin: true
dev: true
- /semver@7.5.4:
- resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
+ /semver@7.6.0:
+ resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -4653,23 +4744,26 @@ packages:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
dev: true
- /set-function-length@1.1.1:
- resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
+ /set-function-length@1.2.1:
+ resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==}
engines: {node: '>= 0.4'}
dependencies:
- define-data-property: 1.1.1
- get-intrinsic: 1.2.2
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
gopd: 1.0.1
- has-property-descriptors: 1.0.1
+ has-property-descriptors: 1.0.2
dev: true
- /set-function-name@2.0.1:
- resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
+ /set-function-name@2.0.2:
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
dependencies:
- define-data-property: 1.1.1
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
functions-have-names: 1.2.3
- has-property-descriptors: 1.0.1
+ has-property-descriptors: 1.0.2
dev: true
/shebang-command@2.0.0:
@@ -4684,11 +4778,13 @@ packages:
engines: {node: '>=8'}
dev: true
- /side-channel@1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+ /side-channel@1.0.5:
+ resolution: {integrity: sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
object-inspect: 1.13.1
dev: true
@@ -4750,11 +4846,9 @@ packages:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
dev: true
- /stdin-discarder@0.1.0:
- resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- bl: 5.1.0
+ /stdin-discarder@0.2.2:
+ resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
+ engines: {node: '>=18'}
dev: true
/string-width@4.2.3:
@@ -4766,58 +4860,52 @@ packages:
strip-ansi: 6.0.1
dev: true
- /string-width@6.1.0:
- resolution: {integrity: sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==}
- engines: {node: '>=16'}
+ /string-width@7.1.0:
+ resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==}
+ engines: {node: '>=18'}
dependencies:
- eastasianwidth: 0.2.0
emoji-regex: 10.3.0
+ get-east-asian-width: 1.2.0
strip-ansi: 7.1.0
dev: true
/string.prototype.matchall@4.0.10:
resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
+ es-abstract: 1.22.4
+ get-intrinsic: 1.2.4
has-symbols: 1.0.3
- internal-slot: 1.0.6
- regexp.prototype.flags: 1.5.1
- set-function-name: 2.0.1
- side-channel: 1.0.4
+ internal-slot: 1.0.7
+ regexp.prototype.flags: 1.5.2
+ set-function-name: 2.0.2
+ side-channel: 1.0.5
dev: true
/string.prototype.trim@1.2.8:
resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-abstract: 1.22.4
dev: true
/string.prototype.trimend@1.0.7:
resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-abstract: 1.22.4
dev: true
/string.prototype.trimstart@1.0.7:
resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.3
- dev: true
-
- /string_decoder@1.3.0:
- resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- dependencies:
- safe-buffer: 5.2.1
+ es-abstract: 1.22.4
dev: true
/stringify-object@3.3.0:
@@ -4858,10 +4946,6 @@ packages:
engines: {node: '>=12'}
dev: true
- /striptags@3.2.0:
- resolution: {integrity: sha512-g45ZOGzHDMe2bdYMdIvdAfCQkCTDMGBazSw1ypMowwGIee7ZQ5dU0rBJ8Jqgl+jAKIv4dbeE1jscZq9wid1Tkw==}
- dev: true
-
/supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
@@ -4896,8 +4980,8 @@ packages:
unique-string: 2.0.0
dev: true
- /terser@5.26.0:
- resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
+ /terser@5.27.2:
+ resolution: {integrity: sha512-sHXmLSkImesJ4p5apTeT63DsV4Obe1s37qT8qvwHRmVxKTBH7Rv9Wr26VcAMmLbmk9UliiwK8z+657NyJHHy/w==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -4934,52 +5018,58 @@ packages:
engines: {node: '>=10'}
dev: true
- /typed-array-buffer@1.0.0:
- resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
+ /typed-array-buffer@1.0.2:
+ resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-typed-array: 1.1.12
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-typed-array: 1.1.13
dev: true
- /typed-array-byte-length@1.0.0:
- resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
+ /typed-array-byte-length@1.0.1:
+ resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
dev: true
- /typed-array-byte-offset@1.0.0:
- resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
+ /typed-array-byte-offset@1.0.2:
+ resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
engines: {node: '>= 0.4'}
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
dev: true
- /typed-array-length@1.0.4:
- resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ /typed-array-length@1.0.5:
+ resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
for-each: 0.3.3
- is-typed-array: 1.1.12
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ possible-typed-array-names: 1.0.0
dev: true
- /uc.micro@1.0.6:
- resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
+ /uc.micro@2.0.0:
+ resolution: {integrity: sha512-DffL94LsNOccVn4hyfRe5rdKa273swqeA5DJpMOeFmEn1wCDc7nAbbB0gXlgBCL7TNzeTv6G7XVWzan7iJtfig==}
dev: true
/unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
@@ -5039,14 +5129,14 @@ packages:
engines: {node: '>=4'}
dev: true
- /update-browserslist-db@1.0.13(browserslist@4.22.2):
+ /update-browserslist-db@1.0.13(browserslist@4.23.0):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.22.2
- escalade: 3.1.1
+ browserslist: 4.23.0
+ escalade: 3.1.2
picocolors: 1.0.0
dev: true
@@ -5056,12 +5146,8 @@ packages:
punycode: 2.3.1
dev: true
- /util-deprecate@1.0.2:
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- dev: true
-
- /vite@5.0.12:
- resolution: {integrity: sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==}
+ /vite@5.1.4:
+ resolution: {integrity: sha512-n+MPqzq+d9nMVTKyewqw6kSt+R3CkvF9QAKY8obiQn8g1fwTscKxyfaYnC632HtBXAQGc1Yjomphwn1dtwGAHg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -5088,15 +5174,15 @@ packages:
terser:
optional: true
dependencies:
- esbuild: 0.19.11
- postcss: 8.4.32
- rollup: 4.9.2
+ esbuild: 0.19.12
+ postcss: 8.4.35
+ rollup: 4.12.0
optionalDependencies:
fsevents: 2.3.3
dev: true
- /vue-demi@0.14.6(vue@3.4.3):
- resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
+ /vue-demi@0.14.7(vue@3.4.19):
+ resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
@@ -5107,114 +5193,42 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 3.4.3
+ vue: 3.4.19
dev: true
- /vue-router@4.2.5(vue@3.4.3):
- resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
+ /vue-router@4.3.0(vue@3.4.19):
+ resolution: {integrity: sha512-dqUcs8tUeG+ssgWhcPbjHvazML16Oga5w34uCUmsk7i0BcnskoLGwjpa15fqMr2Fa5JgVBrdL2MEgqz6XZ/6IQ==}
peerDependencies:
vue: ^3.2.0
dependencies:
- '@vue/devtools-api': 6.5.1
- vue: 3.4.3
+ '@vue/devtools-api': 6.6.1
+ vue: 3.4.19
dev: true
- /vue@3.4.3:
- resolution: {integrity: sha512-GjN+culMAGv/mUbkIv8zMKItno8npcj5gWlXkSxf1SPTQf8eJ4A+YfHIvQFyL1IfuJcMl3soA7SmN1fRxbf/wA==}
+ /vue@3.4.19:
+ resolution: {integrity: sha512-W/7Fc9KUkajFU8dBeDluM4sRGc/aa4YJnOYck8dkjgZoXtVsn3OeTGni66FV1l3+nvPA7VBFYtPioaGKUmEADw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.4.3
- '@vue/compiler-sfc': 3.4.3
- '@vue/runtime-dom': 3.4.3
- '@vue/server-renderer': 3.4.3(vue@3.4.3)
- '@vue/shared': 3.4.3
+ '@vue/compiler-dom': 3.4.19
+ '@vue/compiler-sfc': 3.4.19
+ '@vue/runtime-dom': 3.4.19
+ '@vue/server-renderer': 3.4.19(vue@3.4.19)
+ '@vue/shared': 3.4.19
dev: true
- /vuepress-plugin-auto-catalog@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-+t3qSddUCAch0WfDFewSz9kX8CZ2u1mWWN6nx8fxJL7hl9ZmwaPuKEk5DQK9G93mFHSrh9PNIBYTIlNXkxtxfg==}
+ /vuepress-plugin-comment2@2.0.0-rc.25(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-mLqsCJLHxDnVdRuRdgFIgO7eCKEk01NiTAXy23y261xxlrQkY0VALE1UtE58ikyOgPAfiPWzwQkQLqQ45Hzfaw==}
engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
peerDependencies:
- sass-loader: ^13.3.0
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- sass-loader:
- optional: true
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-components: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-sass-palette: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - artplayer
- - dashjs-pure
- - hls.js
- - mpegts.js
- - plyr
- - supports-color
- - typescript
- - vidstack
- dev: true
-
- /vuepress-plugin-blog2@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-WXsUJuFS1XDUXvMXr0qZWkYf9A7YJ0f0mUnrK0UNclByBJLdKYFkCwddC6/jA+Z1N9QY2190EqPz29bZxpKg2w==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- chokidar: 3.5.3
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-plugin-comment2@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-NYjLrrw3U8psffTLsEYOAFjBccRrPSIK7JielvMvAhHnhikItUhgPU9DbijvyMuHjBmF4FtygJdXzAnQcQGVjg==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- '@waline/client': ^2.15.8 || ^3.0.0-alpha.8
+ '@waline/client': ^3.1.0
artalk: ^2.7.3
- sass-loader: ^13.3.0
+ sass-loader: ^14.0.0
twikoo: ^1.5.0
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
+ vuepress: 2.0.0-rc.8
peerDependenciesMeta:
'@waline/client':
optional: true
@@ -5224,30 +5238,20 @@ packages:
optional: true
twikoo:
optional: true
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
+ '@vuepress/helper': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
giscus: 1.4.0
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-sass-palette: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ vuepress-plugin-sass-palette: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
+ vuepress-shared: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
transitivePeerDependencies:
- '@vue/composition-api'
- - supports-color
- typescript
dev: true
- /vuepress-plugin-components@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-loOO2yVBtsCLAQcUnywTPFH2AkjIwj5HmZ2R6j9RWlwoCsFt9AhFfXOd9nE5j44ziTVgWbwiaNZY2xe1Y8k9tA==}
+ /vuepress-plugin-components@2.0.0-rc.25(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-BHZinOc31if0Ou31z+90muzKfFbh0fSFSfz0qvqY+sZRHTHviSSj+hFRdrXQoc2vk1j3YokXx/cYsLzkQrmmjQ==}
engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
peerDependencies:
artplayer: ^5.0.0
@@ -5255,11 +5259,9 @@ packages:
hls.js: ^1.4.12
mpegts.js: ^1.7.3
plyr: ^3.7.8
- sass-loader: ^13.3.0
+ sass-loader: ^14.0.0
vidstack: ^1.9.0
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
+ vuepress: 2.0.0-rc.8
peerDependenciesMeta:
artplayer:
optional: true
@@ -5275,115 +5277,42 @@ packages:
optional: true
vidstack:
optional: true
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
dependencies:
'@stackblitz/sdk': 1.9.0
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
+ '@vuepress/helper': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
balloon-css: 1.2.0
create-codepen: 1.0.1
qrcode: 1.5.3
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-reading-time2: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-sass-palette: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ vuepress-plugin-sass-palette: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
+ vuepress-shared: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
transitivePeerDependencies:
- '@vue/composition-api'
- - supports-color
- typescript
dev: true
- /vuepress-plugin-copy-code2@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-nORqCINsCCopQz2l5uEWJeSnOL/0o18YXNhQR5GrAj9quWlIV27gphX3CqXZk8Tf2vJrZHHakCbE1l6DIIz6kA==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- sass-loader: ^13.3.0
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- sass-loader:
- optional: true
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
- balloon-css: 1.2.0
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-sass-palette: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-plugin-feed2@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-4PN5RaxuOzZMVouh8D8LajRSTPPzvA4m4m8UgVTXlexmrJmMsbwSOhtnTzQooB4iBhb6NyqURcJZk/LGRDQwJg==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- cheerio: 1.0.0-rc.12
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- xml-js: 1.6.11
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-plugin-md-enhance@2.0.0-rc.10(markdown-it@13.0.2)(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-bZJs7MWv8GdGdC3OxjEU1kAnmOp9odiq+jYKr85mS4TkqH7aVYRrhuJcUErRKCSO7shBhBFpm1zVwnIGkx41Jw==}
+ /vuepress-plugin-md-enhance@2.0.0-rc.25(markdown-it@14.0.0)(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-zmwWCk92S0yQL/uCF6l5YV1Zm2lsGjL9XJZVHEOVY1guXNfnvc92O0gf1dN9E4v+8henIFag5fluMrsfrUP8UQ==}
engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
peerDependencies:
'@types/reveal.js': ^4.4.5
- '@vue/repl': ^3.0.0
+ '@vue/repl': ^4.1.1
chart.js: ^4.0.0
echarts: ^5.0.0
flowchart.ts: ^2.0.0 || ^3.0.0
katex: ^0.16.0
kotlin-playground: ^1.23.0
- markmap-lib: ^0.15.5
- markmap-toolbar: ^0.15.5
- markmap-view: ^0.15.5
+ markmap-lib: ^0.15.5 || ^0.16.0
+ markmap-toolbar: ^0.15.5 || ^0.16.0
+ markmap-view: ^0.15.5 || ^0.16.0
mathjax-full: ^3.2.2
- mermaid: ^10.6.0
+ mermaid: ^10.8.0
reveal.js: ^5.0.0
- sass-loader: ^13.3.0
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
+ sandpack-vue3: ^3.0.0
+ sass-loader: ^14.0.0
+ vuepress: 2.0.0-rc.8
peerDependenciesMeta:
'@types/reveal.js':
optional: true
@@ -5411,407 +5340,153 @@ packages:
optional: true
reveal.js:
optional: true
+ sandpack-vue3:
+ optional: true
sass-loader:
optional: true
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
dependencies:
- '@mdit/plugin-alert': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-align': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-attrs': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-container': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-demo': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-figure': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-footnote': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-img-lazyload': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-img-mark': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-img-size': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-include': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-katex': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-mark': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-mathjax': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-stylize': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-sub': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-sup': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-tab': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-tasklist': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-tex': 0.7.6(markdown-it@13.0.2)
- '@mdit/plugin-uml': 0.7.6(markdown-it@13.0.2)
+ '@mdit/plugin-alert': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-align': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-attrs': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-container': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-demo': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-figure': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-footnote': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-img-lazyload': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-img-mark': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-img-size': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-include': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-katex': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-mark': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-mathjax': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-stylize': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-sub': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-sup': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-tab': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-tasklist': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-tex': 0.8.0(markdown-it@14.0.0)
+ '@mdit/plugin-uml': 0.8.0(markdown-it@14.0.0)
'@types/markdown-it': 13.0.7
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
+ '@vuepress/helper': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
balloon-css: 1.2.0
js-yaml: 4.1.0
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-sass-palette: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ vuepress-plugin-sass-palette: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
+ vuepress-shared: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
transitivePeerDependencies:
- '@vue/composition-api'
- markdown-it
- - supports-color
- typescript
dev: true
- /vuepress-plugin-photo-swipe@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-KxNLpP8nubNGhTZultle+C3eqbuWpJo8jyZkOm1ZofMFtEQRIFLjH5GyJsUFi7TR7vnWtUntaxPzunlqWXe9nA==}
+ /vuepress-plugin-sass-palette@2.0.0-rc.25(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-T4F0ODl27ZxxiGUjRTqL0AAiwqCcOVMnGQdXBhs5NIKHV3BL+O46jJCh2Hyi4BSiOkovfZ1Npazg+03135LJOA==}
engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
peerDependencies:
- sass-loader: ^13.3.0
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
+ sass-loader: ^14.0.0
+ vuepress: 2.0.0-rc.8
peerDependenciesMeta:
sass-loader:
optional: true
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
- photoswipe: 5.4.3
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-sass-palette: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
+ '@vuepress/helper': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ chokidar: 3.6.0
+ sass: 1.71.1
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ vuepress-shared: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
transitivePeerDependencies:
- '@vue/composition-api'
- - supports-color
- typescript
dev: true
- /vuepress-plugin-pwa2@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-nIyDS2Bn29yv36gT0nblN4GUFbd6wdF85yH9aoEMHnj5bXiOnEWqdigHXTuOVOJ84qPcbvpd5+j/r+kRVyaRDQ==}
+ /vuepress-shared@2.0.0-rc.25(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-pxjVVHfUMUXCtj1QlOVvXkufES8ajg/yR0sM98wTTQWQvaxaLvOUd/j+6XT7HWdUkyUorjZa7bdd+BacsimGhg==}
engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
peerDependencies:
- sass-loader: ^13.3.0
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- sass-loader:
- optional: true
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
+ vuepress: 2.0.0-rc.8
dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
- mitt: 3.0.1
- register-service-worker: 1.7.2
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-sass-palette: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- workbox-build: 7.0.0
- transitivePeerDependencies:
- - '@types/babel__core'
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-plugin-reading-time2@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-CAXkVq/JoLuY22ji+ve4HEd2qCyAf4YYOy6pHosWit+Bb6oXvucG0Vjov5bJfcjeYtZljNi8jsxrpicACl+dRQ==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- vue: 3.4.3
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-plugin-redirect@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-qyTzEjtrWphbs6GHttJocwVdFyMEtKfsWqaVYC6qkWTt/4Nk6bZ3gNedFMQolrvrFkoH0LQTphwQNSWjjXgFdA==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- hasBin: true
- peerDependencies:
- sass-loader: ^13.3.0
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- sass-loader:
- optional: true
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/cli': 2.0.0-rc.0
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
- cac: 6.7.14
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-sass-palette: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-plugin-rtl@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-0Tvr++LDJCcQVPWpR4IHM7jlAjUEF2FauupdxjqftsQJuy6moBmuI1mEclfZNg5dJRbw1/oawQhQgk7FvA+UXQ==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- vue: 3.4.3
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-plugin-sass-palette@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-f578pwcohaKMRl6hxs+lHaVBfbl4j57XAnVLnJZBPYC3z0XZ2O670hrK86Z2xVlPml/BpPhVQhFPaLJMu3noWg==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- sass-loader: ^13.3.0
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- sass-loader:
- optional: true
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- chokidar: 3.5.3
- sass: 1.69.6
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-plugin-seo2@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-H8NL+OnSsCSb2oqqqHnkWxoCzjeFjM7ezSnLDviJhR7l/lEKOBYg/Zprhe/UjtOf8OLs3yk/MQpE05dP4Kbk+g==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-plugin-sitemap2@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-HW9ck76DKpSp40a8jHm+OPQ6+PfJERj+RobuhAgLCEhm7Dx9uz/5ie4gl45A1rJ4ZP7NjteVNFYRzCBwNOejVg==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- sitemap: 7.1.1
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - supports-color
- - typescript
- dev: true
-
- /vuepress-shared@2.0.0-rc.10(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-cBm3r0LkMGySwVdPLs69z4pWLKeLZNMm7H5nOx166Isv1y5A8vgvhU1z4ud9AJBeUz+SoL8+Q0IlN8PmBVAOjQ==}
- engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
- peerDependencies:
- vuepress: 2.0.0-rc.0
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
- peerDependenciesMeta:
- vuepress:
- optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
- dependencies:
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
+ '@vuepress/helper': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
cheerio: 1.0.0-rc.12
dayjs: 1.11.10
execa: 8.0.1
- fflate: 0.8.1
+ fflate: 0.8.2
gray-matter: 4.0.3
- semver: 7.5.4
- striptags: 3.2.0
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
+ semver: 7.6.0
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- - supports-color
- typescript
dev: true
- /vuepress-theme-hope@2.0.0-rc.10(@vuepress/plugin-docsearch@2.0.0-rc.0)(markdown-it@13.0.2)(vuepress-plugin-feed2@2.0.0-rc.10)(vuepress-plugin-pwa2@2.0.0-rc.10)(vuepress@2.0.0-rc.0):
- resolution: {integrity: sha512-rco6FT3Fqj77VYCjLyfU80doK4jW7PfJGSLYEyTCwocwsJhpOROGP4glLbqEnC59VrMWgFE/WfB8pfBfQkEZJg==}
+ /vuepress-theme-hope@2.0.0-rc.25(@vuepress/plugin-docsearch@2.0.0-rc.15)(@vuepress/plugin-feed@2.0.0-rc.15)(@vuepress/plugin-pwa@2.0.0-rc.16)(@vuepress/plugin-redirect@2.0.0-rc.15)(markdown-it@14.0.0)(vuepress@2.0.0-rc.8):
+ resolution: {integrity: sha512-Mf9YzRRYHEtRy8Mni/nrsEfeKL45wv9700eglZ4rP/RBVJ6kjk/sRr7yohPiDfTRz/RRoWofEYVGTGSTgDDz4w==}
engines: {node: '>=18.16.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
peerDependencies:
- '@vuepress/plugin-docsearch': 2.0.0-rc.0
- '@vuepress/plugin-search': 2.0.0-rc.0
+ '@vuepress/plugin-docsearch': 2.0.0-rc.15
+ '@vuepress/plugin-feed': 2.0.0-rc.15
+ '@vuepress/plugin-pwa': 2.0.0-rc.16
+ '@vuepress/plugin-redirect': 2.0.0-rc.15
+ '@vuepress/plugin-search': 2.0.0-rc.15
nodejs-jieba: ^0.1.2
- sass-loader: ^13.3.0
- vuepress: 2.0.0-rc.0
- vuepress-plugin-copyright2: 2.0.0-rc.10
- vuepress-plugin-feed2: 2.0.0-rc.10
- vuepress-plugin-pwa2: 2.0.0-rc.10
- vuepress-plugin-search-pro: 2.0.0-rc.10
- vuepress-vite: 2.0.0-rc.0
- vuepress-webpack: 2.0.0-rc.0
+ sass-loader: ^14.0.0
+ vuepress: 2.0.0-rc.8
+ vuepress-plugin-search-pro: 2.0.0-rc.25
peerDependenciesMeta:
'@vuepress/plugin-docsearch':
optional: true
+ '@vuepress/plugin-feed':
+ optional: true
+ '@vuepress/plugin-pwa':
+ optional: true
+ '@vuepress/plugin-redirect':
+ optional: true
'@vuepress/plugin-search':
optional: true
nodejs-jieba:
optional: true
sass-loader:
optional: true
- vuepress:
- optional: true
- vuepress-plugin-copyright2:
- optional: true
- vuepress-plugin-feed2:
- optional: true
- vuepress-plugin-pwa2:
- optional: true
vuepress-plugin-search-pro:
optional: true
- vuepress-vite:
- optional: true
- vuepress-webpack:
- optional: true
dependencies:
- '@vuepress/cli': 2.0.0-rc.0
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/plugin-active-header-links': 2.0.0-rc.0
- '@vuepress/plugin-container': 2.0.0-rc.0
- '@vuepress/plugin-docsearch': 2.0.0-rc.0(@algolia/client-search@4.22.0)(search-insights@2.13.0)
- '@vuepress/plugin-external-link-icon': 2.0.0-rc.0
- '@vuepress/plugin-git': 2.0.0-rc.0
- '@vuepress/plugin-nprogress': 2.0.0-rc.0
- '@vuepress/plugin-prismjs': 2.0.0-rc.0
- '@vuepress/plugin-theme-data': 2.0.0-rc.0
- '@vuepress/shared': 2.0.0-rc.0
- '@vuepress/utils': 2.0.0-rc.0
- '@vueuse/core': 10.7.1(vue@3.4.3)
+ '@vuepress/helper': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-active-header-links': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-back-to-top': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-blog': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-catalog': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-copy-code': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-copyright': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-docsearch': 2.0.0-rc.15(@algolia/client-search@4.22.1)(search-insights@2.13.0)(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-external-link-icon': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-feed': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-git': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-nprogress': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-photo-swipe': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-prismjs': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-pwa': 2.0.0-rc.16(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-reading-time': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-redirect': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-rtl': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-seo': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-sitemap': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vuepress/plugin-theme-data': 2.0.0-rc.15(vuepress@2.0.0-rc.8)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
balloon-css: 1.2.0
- bcrypt-ts: 5.0.1
+ bcrypt-ts: 5.0.2
cheerio: 1.0.0-rc.12
- chokidar: 3.5.3
+ chokidar: 3.6.0
gray-matter: 4.0.3
- vue: 3.4.3
- vue-router: 4.2.5(vue@3.4.3)
- vuepress: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- vuepress-plugin-auto-catalog: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-blog2: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-comment2: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-components: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-copy-code2: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-feed2: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-md-enhance: 2.0.0-rc.10(markdown-it@13.0.2)(vuepress@2.0.0-rc.0)
- vuepress-plugin-photo-swipe: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-pwa2: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-reading-time2: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-rtl: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-sass-palette: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-seo2: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-plugin-sitemap2: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
- vuepress-shared: 2.0.0-rc.10(vuepress@2.0.0-rc.0)
+ vue: 3.4.19
+ vuepress: 2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19)
+ vuepress-plugin-comment2: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
+ vuepress-plugin-components: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
+ vuepress-plugin-md-enhance: 2.0.0-rc.25(markdown-it@14.0.0)(vuepress@2.0.0-rc.8)
+ vuepress-plugin-sass-palette: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
+ vuepress-shared: 2.0.0-rc.25(vuepress@2.0.0-rc.8)
transitivePeerDependencies:
- '@types/reveal.js'
- '@vue/composition-api'
@@ -5835,64 +5510,39 @@ packages:
- mpegts.js
- plyr
- reveal.js
- - supports-color
+ - sandpack-vue3
- twikoo
- typescript
- vidstack
dev: true
- /vuepress-vite@2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3):
- resolution: {integrity: sha512-+2XBejeiskPyr2raBeA2o4uDFDsjtadpUVmtio3qqFtQpOhidz/ORuiTLr2UfLtFn1ASIHP6Vy2YjQ0e/TeUVw==}
+ /vuepress@2.0.0-rc.8(@vuepress/bundler-vite@2.0.0-rc.8)(vue@3.4.19):
+ resolution: {integrity: sha512-4Rnhh4ZME87AAREQzcW9V/pk+1x2tX3tABfQu0Elwxxp576poxiM8ddtI2pq4/YNp4MyFTF9/DyVxHMIj1lMbA==}
engines: {node: '>=18.16.0'}
hasBin: true
peerDependencies:
- '@vuepress/client': 2.0.0-rc.0
- vue: ^3.3.4
+ '@vuepress/bundler-vite': 2.0.0-rc.8
+ '@vuepress/bundler-webpack': 2.0.0-rc.8
+ vue: ^3.4.0
+ peerDependenciesMeta:
+ '@vuepress/bundler-vite':
+ optional: true
+ '@vuepress/bundler-webpack':
+ optional: true
dependencies:
- '@vuepress/bundler-vite': 2.0.0-rc.0
- '@vuepress/cli': 2.0.0-rc.0
- '@vuepress/client': 2.0.0-rc.0
- '@vuepress/core': 2.0.0-rc.0
- '@vuepress/theme-default': 2.0.0-rc.0
- vue: 3.4.3
+ '@vuepress/bundler-vite': 2.0.0-rc.8
+ '@vuepress/cli': 2.0.0-rc.8
+ '@vuepress/client': 2.0.0-rc.8
+ '@vuepress/core': 2.0.0-rc.8
+ '@vuepress/markdown': 2.0.0-rc.8
+ '@vuepress/shared': 2.0.0-rc.8
+ '@vuepress/utils': 2.0.0-rc.8
+ vue: 3.4.19
transitivePeerDependencies:
- - '@types/node'
- - '@vue/composition-api'
- - less
- - lightningcss
- - sass
- - sass-loader
- - stylus
- - sugarss
- supports-color
- - terser
- - ts-node
- typescript
dev: true
- /vuepress@2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3):
- resolution: {integrity: sha512-sydt/B7+pIw926G5PntYmptLkC5o2buXKh+WR1+P2KnsvkXU+UGnQrJJ0FBvu/4RNuY99tkUZd59nyPhEmRrCg==}
- engines: {node: '>=18.16.0'}
- hasBin: true
- dependencies:
- vuepress-vite: 2.0.0-rc.0(@vuepress/client@2.0.0-rc.0)(vue@3.4.3)
- transitivePeerDependencies:
- - '@types/node'
- - '@vue/composition-api'
- - '@vuepress/client'
- - less
- - lightningcss
- - sass
- - sass-loader
- - stylus
- - sugarss
- - supports-color
- - terser
- - ts-node
- - typescript
- - vue
- dev: true
-
/webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
dev: true
@@ -5919,15 +5569,15 @@ packages:
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
dev: true
- /which-typed-array@1.1.13:
- resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
+ /which-typed-array@1.1.14:
+ resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==}
engines: {node: '>= 0.4'}
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
for-each: 0.3.3
gopd: 1.0.1
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
dev: true
/which@2.0.2:
@@ -5956,10 +5606,10 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0)
- '@babel/core': 7.23.7
- '@babel/preset-env': 7.23.7(@babel/core@7.23.7)
- '@babel/runtime': 7.23.7
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.23.7)(rollup@2.79.1)
+ '@babel/core': 7.23.9
+ '@babel/preset-env': 7.23.9(@babel/core@7.23.9)
+ '@babel/runtime': 7.23.9
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.23.9)(rollup@2.79.1)
'@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.1)
'@surma/rollup-plugin-off-main-thread': 2.2.3
@@ -6016,6 +5666,7 @@ packages:
/workbox-google-analytics@7.0.0:
resolution: {integrity: sha512-MEYM1JTn/qiC3DbpvP2BVhyIH+dV/5BjHk756u9VbwuAhu0QHyKscTnisQuz21lfRpOwiS9z4XdqeVAKol0bzg==}
+ deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained
dependencies:
workbox-background-sync: 7.0.0
workbox-core: 7.0.0