From 7622d3da1eb315ab2f7911e1945a116d34eab36c Mon Sep 17 00:00:00 2001 From: suyiiyii Date: Tue, 15 Oct 2024 21:43:25 +0800 Subject: [PATCH] =?UTF-8?q?:memo:=20=E5=A5=BD=E5=83=8F=E5=8F=AF=E4=BB=A5?= =?UTF-8?q?=E7=94=A8=20zenuml=20=E4=BA=86=20)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/.vuepress/config.ts | 6 - docs/.vuepress/theme.ts | 1 + docs/dev/cookie.md | 86 +- package.json | 10 +- pnpm-lock.yaml | 4397 +++++++++++++++++++++++++++++--------- 5 files changed, 3412 insertions(+), 1088 deletions(-) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 51122b7..405a31d 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -1,6 +1,5 @@ import { defineUserConfig } from "vuepress"; import theme from "./theme.js"; -import { mdEnhancePlugin } from "vuepress-plugin-md-enhance"; export default defineUserConfig({ base: "/", @@ -8,11 +7,6 @@ export default defineUserConfig({ lang: "zh-CN", title: "NoneBot Bison", description: "NoneBot Bison 文档", - plugins: [ - mdEnhancePlugin({ - mermaid: true, - }), - ], theme, diff --git a/docs/.vuepress/theme.ts b/docs/.vuepress/theme.ts index 6676dd0..4382485 100644 --- a/docs/.vuepress/theme.ts +++ b/docs/.vuepress/theme.ts @@ -80,6 +80,7 @@ export default hopeTheme({ sup: true, tabs: true, vPre: true, + mermaid: true, // 在启用之前安装 chart.js // chart: true, diff --git a/docs/dev/cookie.md b/docs/dev/cookie.md index 9120a18..13c2436 100644 --- a/docs/dev/cookie.md +++ b/docs/dev/cookie.md @@ -1,9 +1,16 @@ +--- +prev: /usage/ +#next: /dev/cookie +--- + # Cookie 开发须知 本项目将大部分 Cookie 相关逻辑提出到了 Site 及 Client Manger 模块中,你只需要继承相关类即可获得使用 Cookie 的能力。 -:::tip +::: tip + 在开发Cookie功能之前,你应该对[基本开发](/dev/#基本开发)有一定的了解。 + ::: ## Cookie相关的基本概念 @@ -62,28 +69,61 @@ class WeiboSite(CookieSite): ```mermaid -zenuml - title Cookie调度逻辑 - Scheduler #661ae6 - Platform #2b2d30 - CookieClientManager #FFEBE6 - DB #f26522 - Internet #0747A6 - @Starter(Scheduler) - Scheduler.exec_fetch{ - Post = Platform.do_fetch_new_post(SubUnit) { - Platform.get_sub_list(Target){ - client = CookieClientManager.get_client(Target){ - cookie = CookieClientManager._choose_cookie(Target) { - cookies = DB.get_cookies() - } - client = CookieClientManager._assemble_client(Target, cookie) - } - res = Internet.client.get(Target) - CookieClientManager._response_hook(){ - DB.update_cookie() - } - } + +``` + + + +
zenuml
+  title Cookie调度逻辑
+  Scheduler #661ae6
+  Platform #2b2d30
+  CookieClientManager #FFEBE6
+  DB #f26522
+  Internet #0747A6
+  @Starter(Scheduler)
+  Scheduler.exec_fetch{
+    Post = Platform.do_fetch_new_post(SubUnit) {
+      Platform.get_sub_list(Target){
+          client = CookieClientManager.get_client(Target){
+              cookie = CookieClientManager._choose_cookie(Target) {
+                  cookies = DB.get_cookies()
+              }
+              client = CookieClientManager._assemble_client(Target, cookie)
+          }
+          res = Internet.client.get(Target)
+          CookieClientManager._response_hook(){
+              DB.update_cookie()
+          }
       }
     }
+  }
+
+ +```mermaid +flowchart TB + init[初始化] --> schedule_pool[调度池] + schedule_pool((调度池)) --> choose_platform[选择Platform] + choose_platform --> get_targets[获取Target列表] + get_targets --> get_rawposts[获取Target的RawPost列表] + get_rawposts --> compare_with_old[(与上次状态对比)] + compare_with_old -- 有新增 --> dispatch[分发到对应用户] + compare_with_old -- 无新增 --> schedule_pool + dispatch --> user_filter[用户订阅过滤] + user_filter -- 不匹配 --> schedule_pool + user_filter -- 匹配 --> parse[选择Post解析方式] + parse -.-> to_text((文本Post)) + parse -.-> to_pic((图片Post)) + parse -.-> to_other((...)) + to_text -.-> message_render[消息渲染] + to_pic -.-> message_render + to_other -.-> message_render + message_render --> send_to[发送到对应用户] ``` diff --git a/package.json b/package.json index 82e36da..511c1d3 100644 --- a/package.json +++ b/package.json @@ -11,12 +11,14 @@ "docs:update-package": "pnpm dlx vp-update" }, "devDependencies": { - "@vuepress/bundler-vite": "2.0.0-rc.15", + "@vuepress/bundler-vite": "2.0.0-rc.17", + "mermaid": "^11.3.0", "vue": "^3.5.6", - "vuepress": "2.0.0-rc.15", - "vuepress-theme-hope": "2.0.0-rc.52" + "vuepress": "2.0.0-rc.17", + "vuepress-plugin-md-enhance": "2.0.0-rc.57", + "vuepress-theme-hope": "2.0.0-rc.58" }, "dependencies": { - "vuepress-plugin-md-enhance": "2.0.0-rc.57" + "@mermaid-js/mermaid-zenuml": "0.2.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8112d1e..03bd05a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,24 +7,49 @@ settings: importers: .: dependencies: - vuepress-plugin-md-enhance: - specifier: 2.0.0-rc.57 - version: 2.0.0-rc.57(markdown-it@14.1.0)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + "@mermaid-js/mermaid-zenuml": + specifier: 0.2.0 + version: 0.2.0(mermaid@11.3.0) devDependencies: "@vuepress/bundler-vite": - specifier: 2.0.0-rc.15 - version: 2.0.0-rc.15(@types/node@20.11.28) + specifier: 2.0.0-rc.17 + version: 2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0) + mermaid: + specifier: ^11.3.0 + version: 11.3.0 vue: specifier: ^3.5.6 version: 3.5.6 vuepress: - specifier: 2.0.0-rc.15 - version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + specifier: 2.0.0-rc.17 + version: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + vuepress-plugin-md-enhance: + specifier: 2.0.0-rc.57 + version: 2.0.0-rc.57(markdown-it@14.1.0)(mermaid@11.3.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) vuepress-theme-hope: - specifier: 2.0.0-rc.52 - version: 2.0.0-rc.52(markdown-it@14.1.0)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + specifier: 2.0.0-rc.58 + version: 2.0.0-rc.58(katex@0.16.11)(markdown-it@14.1.0)(mermaid@11.3.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) packages: + "@alloc/quick-lru@5.2.0": + resolution: + { + integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==, + } + engines: { node: ">=10" } + + "@antfu/install-pkg@0.4.1": + resolution: + { + integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==, + } + + "@antfu/utils@0.7.10": + resolution: + { + integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==, + } + "@babel/helper-string-parser@7.24.8": resolution: { @@ -54,6 +79,42 @@ packages: } engines: { node: ">=6.9.0" } + "@braintree/sanitize-url@7.1.0": + resolution: + { + integrity: sha512-o+UlMLt49RvtCASlOMW0AkHnabN9wR9rwCCherxO0yG4Npy34GkvrAqdXQvrhNs+jh+gkK8gB8Lf05qL/O7KWg==, + } + + "@chevrotain/cst-dts-gen@11.0.3": + resolution: + { + integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==, + } + + "@chevrotain/gast@11.0.3": + resolution: + { + integrity: sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==, + } + + "@chevrotain/regexp-to-ast@11.0.3": + resolution: + { + integrity: sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==, + } + + "@chevrotain/types@11.0.3": + resolution: + { + integrity: sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==, + } + + "@chevrotain/utils@11.0.3": + resolution: + { + integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==, + } + "@esbuild/aix-ppc64@0.21.5": resolution: { @@ -261,12 +322,109 @@ packages: cpu: [x64] os: [win32] + "@floating-ui/core@1.6.8": + resolution: + { + integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==, + } + + "@floating-ui/dom@1.6.11": + resolution: + { + integrity: sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==, + } + + "@floating-ui/utils@0.2.8": + resolution: + { + integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==, + } + + "@floating-ui/vue@1.1.5": + resolution: + { + integrity: sha512-ynL1p5Z+woPVSwgMGqeDrx6HrJfGIDzFyESFkyqJKilGW1+h/8yVY29Khn0LaU6wHBRwZ13ntG6reiHWK6jyzw==, + } + + "@headlessui-float/vue@0.14.4": + resolution: + { + integrity: sha512-MSyWCxUTueeex+veRCf++q4KM/fa4HOe9HDttzGrtgVDBULkGduFK6ItJh7EHJp2U/dY7qpyDUqp2KCHpCEplw==, + } + peerDependencies: + "@headlessui/vue": ^1.0.0 + vue: ^3.0.0 + + "@headlessui/tailwindcss@0.2.1": + resolution: + { + integrity: sha512-2+5+NZ+RzMyrVeCZOxdbvkUSssSxGvcUxphkIfSVLpRiKsj+/63T2TOL9dBYMXVfj/CGr6hMxSRInzXv6YY7sA==, + } + engines: { node: ">=10" } + peerDependencies: + tailwindcss: ^3.0 + + "@headlessui/vue@1.7.23": + resolution: + { + integrity: sha512-JzdCNqurrtuu0YW6QaDtR2PIYCKPUWq28csDyMvN4zmGccmE7lz40Is6hc3LA4HFeCI7sekZ/PQMTNmn9I/4Wg==, + } + engines: { node: ">=10" } + peerDependencies: + vue: ^3.2.0 + + "@iconify/types@2.0.0": + resolution: + { + integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==, + } + + "@iconify/utils@2.1.33": + resolution: + { + integrity: sha512-jP9h6v/g0BIZx0p7XGJJVtkVnydtbgTgt9mVNcGDYwaa7UhdHdI9dvoq+gKj9sijMSJKxUPEG2JyjsgXjxL7Kw==, + } + + "@isaacs/cliui@8.0.2": + resolution: + { + integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, + } + engines: { node: ">=12" } + + "@jridgewell/gen-mapping@0.3.5": + resolution: + { + integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==, + } + engines: { node: ">=6.0.0" } + + "@jridgewell/resolve-uri@3.1.2": + resolution: + { + integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, + } + engines: { node: ">=6.0.0" } + + "@jridgewell/set-array@1.2.1": + resolution: + { + integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==, + } + engines: { node: ">=6.0.0" } + "@jridgewell/sourcemap-codec@1.5.0": resolution: { integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==, } + "@jridgewell/trace-mapping@0.3.25": + resolution: + { + integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, + } + "@lit-labs/ssr-dom-shim@1.2.0": resolution: { @@ -327,17 +485,6 @@ packages: integrity: sha512-TMBB/BQWVvwtpBdWD75rkZx4ZphQ6MN0O4QB2Bc0oI5PC2uE57QerhNxdRZ7cvBHE2iY2C+BUNUziCfJbjIRRA==, } - "@mdit/plugin-alert@0.12.0": - resolution: - { - integrity: sha512-4OyGK1PZrJbmEF/kS6GKmmG1nlN5h/CyIPZV8lRgnlWLFB37JiEz3EHusPAXAoMtw7VGNFaIcl7OT/I5yyz1JQ==, - } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-alert@0.13.1": resolution: { @@ -349,18 +496,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-align@0.12.0": - resolution: - { - integrity: sha512-rvA+xzaVrlsr44s7XD/xadO3lF0QYWCbeSrOS2dhOroNCIOy4RotVP/1tQPr84eqm4oXcxXF0cbjFuwUgE1jYw==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-align@0.13.1": resolution: { @@ -373,18 +508,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-attrs@0.12.0": - resolution: - { - integrity: sha512-J0MBwBq958lBtdIcEo02mUIO4ubl2YK+bY799T2SusrLTf3FZsq8+d/OiLTUtovfxaphD7F6yqo8M61AiOpq+w==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-attrs@0.13.1": resolution: { @@ -397,18 +520,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-container@0.12.0": - resolution: - { - integrity: sha512-61bWK1ek6Rn4o12/BIKTWgGU0miB9ENcXE19H5D4DRhwG5+4+0zp2U6hRLf/mE73+mRYin7iKVzcwwEsqs+u8w==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-container@0.13.1": resolution: { @@ -421,17 +532,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-demo@0.12.0": - resolution: - { - integrity: sha512-+KDUOgcvnMtBN/uYWlhIFuWkTJexuxstq8ERy9q7vOiu8Go85qCb27h0RSToKBTmmGy+XqfU2EdJclYPWBupJQ==, - } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-demo@0.13.1": resolution: { @@ -443,10 +543,10 @@ packages: markdown-it: optional: true - "@mdit/plugin-figure@0.12.0": + "@mdit/plugin-figure@0.13.1": resolution: { - integrity: sha512-3nfcGI+uM0f6AqHZrEr8kSMBI6T2+fKKQXtCbvWQqQ+P3iGgf34Ay2eAtuMDcDGqyfNuR6e8aLoOeY2QWuEynA==, + integrity: sha512-bxeUVMPAuXHYRqPzU+1ux7R3LkpyHTdavCa05rQUhzDI07N+BZDE7oOABXnnFbx6ESamzu3/FBtq9VKjoifLmw==, } engines: { node: ">= 18" } peerDependencies: @@ -455,15 +555,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-footnote@0.12.0": - resolution: - { - integrity: sha512-9B+bJdMndCPoA9De9bxRm4/fyz02PHRcttOyuyPJ3G+wCAgIN1c/7CB8ViT1YJuECUjLogJQ/rrgqh7f0LTqLQ==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - "@mdit/plugin-footnote@0.13.1": resolution: { @@ -473,10 +564,10 @@ packages: peerDependencies: markdown-it: ^14.1.0 - "@mdit/plugin-img-lazyload@0.12.0": + "@mdit/plugin-img-lazyload@0.13.1": resolution: { - integrity: sha512-6R42ieXzwkB5BKKZi+ZefqeP/fBG5qo7Sqtl72ewSVqEQ30bgxpk6nkrPI2orRob4tb6z0F/c+R8h6PW5MkTOw==, + integrity: sha512-DPzR+yabbgqHWHb8oetOj56TtZzOcn5YZjSTssoh7lY5hp/Yy7jWvlLDrSw/LiXkYEhyocUee78enhTodBEpHQ==, } engines: { node: ">= 18" } peerDependencies: @@ -485,10 +576,10 @@ packages: markdown-it: optional: true - "@mdit/plugin-img-mark@0.12.0": + "@mdit/plugin-img-mark@0.13.1": resolution: { - integrity: sha512-HkIUwlTg/xPsBi4PG+5dsMnsb7wdiJzELSCEUfdAJTg55nksonHfyV2pFpr87MML4nuZlZK9JHt+Bm2BBDSVSw==, + integrity: sha512-HOALB1nILV5vkopSKPrclkwwc5WGbpuAWxuOLTz/teOifE8E4JsbiFivcM6URMP1lZXzRBXoniQCCOUhWRis8A==, } engines: { node: ">= 18" } peerDependencies: @@ -497,10 +588,10 @@ packages: markdown-it: optional: true - "@mdit/plugin-img-size@0.12.0": + "@mdit/plugin-img-size@0.13.1": resolution: { - integrity: sha512-fCcF5gc+ba6gQ5ebrKuI8bK/gFbj8mbeN45FHmBsFDFsfTHa0Xij2v8iok0nP8YEIVj71y8XYojsqCWs6avong==, + integrity: sha512-cgihl72BNzij7GXjrqcKhl2eOqAlqWHiImOgblJPghDFNFKnnynty/Bf9nwbj8hTnhVWznFeuwawzXBfKYNbkg==, } engines: { node: ">= 18" } peerDependencies: @@ -509,17 +600,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-include@0.12.0": - resolution: - { - integrity: sha512-8pnmp7s1TjbtoBIa/YhYpEivOpeVSyhkQoQrGq1UoaEcTbXqmFwShGkAW3zUYZVFYTl74PgL/UqJnrUojegJQg==, - } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-include@0.13.1": resolution: { @@ -531,10 +611,10 @@ packages: markdown-it: optional: true - "@mdit/plugin-katex-slim@0.12.0": + "@mdit/plugin-katex-slim@0.13.1": resolution: { - integrity: sha512-s2MJGXFZT7u8IUTmy6K1rxxAdYRmGggu0m860siyUrThL112xLN9r3jmXZ83epgi4UA/gLkRDAU5vF6R2JtyjQ==, + integrity: sha512-OO4n51aLo0Igv0aICXOaTO5+ZW/jW8Lnl8u1kxs2zkFVNUqpqNHAo8l4QxtscQk5L4XhXGgaTj2ZgAv7rtH96Q==, } engines: { node: ">= 18" } peerDependencies: @@ -546,18 +626,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-mark@0.12.0": - resolution: - { - integrity: sha512-BDFwbV/tbgUGL8KF2ymYNLEXT2KNBLe8D0rshDrbB4Iko1U2DywACQkmaUbYBJ1VCn7/dff35at9fWrm3QjrwQ==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-mark@0.13.1": resolution: { @@ -570,10 +638,10 @@ packages: markdown-it: optional: true - "@mdit/plugin-mathjax-slim@0.12.0": + "@mdit/plugin-mathjax-slim@0.13.1": resolution: { - integrity: sha512-bLM+JnCTN/3XiyKb64Yhpx014VYLfHBexua4n92cUyoKR9g3waB0loF1WMlg6GdyCTc7OvrUSceNjwWj3YRogg==, + integrity: sha512-ZFtKG2BtLAk1BarJZei9HP4aK0vNU7YvDb+R+nApK7MRmLQ53xHe7upu3qlfNBoOZWHXsdRmcz0G4xL3oxzlqA==, } engines: { node: ">= 18" } peerDependencies: @@ -585,17 +653,6 @@ packages: mathjax-full: optional: true - "@mdit/plugin-plantuml@0.12.0": - resolution: - { - integrity: sha512-m1pk6PA9+kWUs8kylLqjnQ7Lex68x3c4Ato8zAh+omkhugfWzuQXfFiXRiJ9C7wkdqHoJx/E5XobP3HJnhCpoA==, - } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-plantuml@0.13.1": resolution: { @@ -607,18 +664,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-spoiler@0.12.0": - resolution: - { - integrity: sha512-7yu+Gz000O0OxGnGYOoj77Am3WgH4GwzOvwCp7tPLexkJwTve8MyT9In/NEPFaRw8fmgXwthC0gKq4Ubh1+8DA==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-spoiler@0.13.1": resolution: { @@ -631,18 +676,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-stylize@0.12.0": - resolution: - { - integrity: sha512-5bzZvmjEpGTdwBax9jaDbCBhD1snEx6uTHVUG9HD/L5koKrL86+ox9E5FGeiMiD1dtxeMgL+WqBzV44nRE9ZPg==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-stylize@0.13.1": resolution: { @@ -655,18 +688,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-sub@0.12.0": - resolution: - { - integrity: sha512-27kKkSVkymc+2RNc5XOYkeXip5PgHZPUnHpxUvkpnairLwyHsXb8/gzr9zd5arVkip86rcdy9LIvnF7zO0dNVQ==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-sub@0.13.1": resolution: { @@ -679,18 +700,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-sup@0.12.0": - resolution: - { - integrity: sha512-3bEDW5/y1UDVU8LVbFsqUvNcMW6orp16uCdRGYCNZ3/IeK7Qj1/9a3wfhScIoI8xRUE6M3JLv41sGBFXLHwi1w==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-sup@0.13.1": resolution: { @@ -703,10 +712,10 @@ packages: markdown-it: optional: true - "@mdit/plugin-tab@0.12.0": + "@mdit/plugin-tab@0.13.2": resolution: { - integrity: sha512-ZDTEDxHoekcFA5Al+NLizn8Nf0kj6ABkNBAc/VxbQoVQdjZNQtGY2dOPeWW0I96Rao+Aw+IpYRCLFIfb/KtExw==, + integrity: sha512-evpIXvo6vXRWhgNE6vu4ok1I2dVOzrBYmBUGc1gW8nT9MvkW9litu7RbJ6CafscqaiiYRIM5Oib1ahS0lwte6g==, } peerDependencies: markdown-it: ^14.1.0 @@ -714,18 +723,6 @@ packages: markdown-it: optional: true - "@mdit/plugin-tasklist@0.12.0": - resolution: - { - integrity: sha512-MPmuLJrqHYR2xI7ST9Xtw/xj+6Xoq7kUvcGuXWdMMNT11DcU1KppkR8QBHov437NFYh6aGyjrHUVeM4T5Ls8yg==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - "@mdit/plugin-tasklist@0.13.1": resolution: { @@ -738,22 +735,10 @@ packages: markdown-it: optional: true - "@mdit/plugin-tex@0.12.0": + "@mdit/plugin-tex@0.13.1": resolution: { - integrity: sha512-ejeSgSeZvcI5P4hFFQ4q5pHrZBGO2fQWVGm6dZ3BhX4ldoV8LjCIzkcMMXhrhSOVjwHnqmF6xOh9EvI0jzak1w==, - } - engines: { node: ">= 18" } - peerDependencies: - markdown-it: ^14.1.0 - peerDependenciesMeta: - markdown-it: - optional: true - - "@mdit/plugin-uml@0.12.0": - resolution: - { - integrity: sha512-EfVMmq0CwLJcssxhkvGS2ESenNNEMeK04j702Z9v3am1M9DdEj6zHTrHQd9tA0jNVuFY8ZlmMgDfkkG5k6Rm3Q==, + integrity: sha512-lkRf6XrfVfS11FzT3hiooWdOUPJfAd/cnAv4NN/4WU7qOEz0e0HBVQO8PQb5CPwrE94Ld4+E6rQwJfVH1grkwQ==, } engines: { node: ">= 18" } peerDependencies: @@ -774,6 +759,20 @@ packages: markdown-it: optional: true + "@mermaid-js/mermaid-zenuml@0.2.0": + resolution: + { + integrity: sha512-Lv7xNlFT5y2TIlts+yYl1HfeEgjoqw5cfSZsWYejoJvt9K0QfdPBoj5D9Tft1aN0pj1mxjuTZbZQ1Anmem/RMg==, + } + peerDependencies: + mermaid: ">=10.0.0" + + "@mermaid-js/parser@0.3.0": + resolution: + { + integrity: sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA==, + } + "@nodelib/fs.scandir@2.1.5": resolution: { @@ -795,139 +794,146 @@ packages: } engines: { node: ">= 8" } - "@rollup/rollup-android-arm-eabi@4.21.2": + "@pkgjs/parseargs@0.11.0": resolution: { - integrity: sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==, + integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, + } + engines: { node: ">=14" } + + "@rollup/rollup-android-arm-eabi@4.24.0": + resolution: + { + integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==, } cpu: [arm] os: [android] - "@rollup/rollup-android-arm64@4.21.2": + "@rollup/rollup-android-arm64@4.24.0": resolution: { - integrity: sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==, + integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==, } cpu: [arm64] os: [android] - "@rollup/rollup-darwin-arm64@4.21.2": + "@rollup/rollup-darwin-arm64@4.24.0": resolution: { - integrity: sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==, + integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==, } cpu: [arm64] os: [darwin] - "@rollup/rollup-darwin-x64@4.21.2": + "@rollup/rollup-darwin-x64@4.24.0": resolution: { - integrity: sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==, + integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==, } cpu: [x64] os: [darwin] - "@rollup/rollup-linux-arm-gnueabihf@4.21.2": + "@rollup/rollup-linux-arm-gnueabihf@4.24.0": resolution: { - integrity: sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==, + integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==, } cpu: [arm] os: [linux] libc: [glibc] - "@rollup/rollup-linux-arm-musleabihf@4.21.2": + "@rollup/rollup-linux-arm-musleabihf@4.24.0": resolution: { - integrity: sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==, + integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==, } cpu: [arm] os: [linux] libc: [musl] - "@rollup/rollup-linux-arm64-gnu@4.21.2": + "@rollup/rollup-linux-arm64-gnu@4.24.0": resolution: { - integrity: sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==, + integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==, } cpu: [arm64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-arm64-musl@4.21.2": + "@rollup/rollup-linux-arm64-musl@4.24.0": resolution: { - integrity: sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==, + integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==, } cpu: [arm64] os: [linux] libc: [musl] - "@rollup/rollup-linux-powerpc64le-gnu@4.21.2": + "@rollup/rollup-linux-powerpc64le-gnu@4.24.0": resolution: { - integrity: sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==, + integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==, } cpu: [ppc64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-riscv64-gnu@4.21.2": + "@rollup/rollup-linux-riscv64-gnu@4.24.0": resolution: { - integrity: sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==, + integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==, } cpu: [riscv64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-s390x-gnu@4.21.2": + "@rollup/rollup-linux-s390x-gnu@4.24.0": resolution: { - integrity: sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==, + integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==, } cpu: [s390x] os: [linux] libc: [glibc] - "@rollup/rollup-linux-x64-gnu@4.21.2": + "@rollup/rollup-linux-x64-gnu@4.24.0": resolution: { - integrity: sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==, + integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==, } cpu: [x64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-x64-musl@4.21.2": + "@rollup/rollup-linux-x64-musl@4.24.0": resolution: { - integrity: sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==, + integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==, } cpu: [x64] os: [linux] libc: [musl] - "@rollup/rollup-win32-arm64-msvc@4.21.2": + "@rollup/rollup-win32-arm64-msvc@4.24.0": resolution: { - integrity: sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==, + integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==, } cpu: [arm64] os: [win32] - "@rollup/rollup-win32-ia32-msvc@4.21.2": + "@rollup/rollup-win32-ia32-msvc@4.24.0": resolution: { - integrity: sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==, + integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==, } cpu: [ia32] os: [win32] - "@rollup/rollup-win32-x64-msvc@4.21.2": + "@rollup/rollup-win32-x64-msvc@4.24.0": resolution: { - integrity: sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==, + integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==, } cpu: [x64] os: [win32] @@ -938,16 +944,40 @@ packages: integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==, } - "@shikijs/core@1.10.3": + "@shikijs/core@1.22.0": resolution: { - integrity: sha512-D45PMaBaeDHxww+EkcDQtDAtzv00Gcsp72ukBtaLSmqRvh0WgGMq3Al0rl1QQBZfuneO75NXMIzEZGFitThWbg==, + integrity: sha512-S8sMe4q71TJAW+qG93s5VaiihujRK6rqDFqBnxqvga/3LvqHEnxqBIOPkt//IdXVtHkQWKu4nOQNk0uBGicU7Q==, } - "@shikijs/transformers@1.10.3": + "@shikijs/engine-javascript@1.22.0": resolution: { - integrity: sha512-MNjsyye2WHVdxfZUSr5frS97sLGe6G1T+1P41QjyBFJehZphMcr4aBlRLmq6OSPBslYe9byQPVvt/LJCOfxw8Q==, + integrity: sha512-AeEtF4Gcck2dwBqCFUKYfsCq0s+eEbCEbkUuFou53NZ0sTGnJnJ/05KHQFZxpii5HMXbocV9URYVowOP2wH5kw==, + } + + "@shikijs/engine-oniguruma@1.22.0": + resolution: + { + integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==, + } + + "@shikijs/transformers@1.22.0": + resolution: + { + integrity: sha512-k7iMOYuGQA62KwAuJOQBgH2IQb5vP8uiB3lMvAMGUgAMMurePOx3Z7oNqJdcpxqZP6I9cc7nc4DNqSKduCxmdg==, + } + + "@shikijs/types@1.22.0": + resolution: + { + integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==, + } + + "@shikijs/vscode-textmate@9.3.0": + resolution: + { + integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==, } "@sindresorhus/merge-streams@2.3.0": @@ -970,16 +1000,36 @@ packages: integrity: sha512-DFQGANNkEZRzFk1/rDP6TcFdM82ycHE+zfl9C/M/jXlH68jiqHWHFMQURLELoD8koxvu/eW5uhg94NSAZlYrUQ==, } + "@tanstack/virtual-core@3.10.8": + resolution: + { + integrity: sha512-PBu00mtt95jbKFi6Llk9aik8bnR3tR/oQP1o3TSi+iG//+Q2RTIzCEgKkHG8BB86kxMNW6O8wku+Lmi+QFR6jA==, + } + + "@tanstack/vue-virtual@3.10.8": + resolution: + { + integrity: sha512-DB5QA8c/LfqOqIUCpSs3RdOTVroRRdqeHMqBkYrcashSZtOzIv8xbiqHgg7RYxDfkH5F3Y+e0MkuuyGNDVB0BQ==, + } + peerDependencies: + vue: ^2.7.0 || ^3.0.0 + + "@types/assert@1.5.10": + resolution: + { + integrity: sha512-qEO+AUgYab7GVbeDDgUNCU3o0aZUoIMpNAe+w5LDbRxfxQX7vQAdDgwj1AroX+i8KaV56FWg0srXlSZROnsrIQ==, + } + "@types/debug@4.1.12": resolution: { integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, } - "@types/estree@1.0.5": + "@types/estree@1.0.6": resolution: { - integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, + integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==, } "@types/fs-extra@11.0.4": @@ -1030,6 +1080,12 @@ packages: integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==, } + "@types/mdast@4.0.4": + resolution: + { + integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, + } + "@types/mdurl@2.0.0": resolution: { @@ -1054,6 +1110,12 @@ packages: integrity: sha512-M/GPWVS2wLkSkNHVeLkrF2fD5Lx5UC4PxA0uZcKc6QqbIQUJyW1jVjueJYi1z8n0I5PxYrtpnPnWglE+y9A0KA==, } + "@types/ramda@0.28.25": + resolution: + { + integrity: sha512-HrQNqQAGcITpn9HAJFamDxm7iZeeXiP/95pN5OMbNniDjzCCeOHbBKNGmUy8NRi0fhYS+/cXeo91MFC+06gbow==, + } + "@types/sax@1.2.7": resolution: { @@ -1078,16 +1140,30 @@ packages: integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==, } - "@vitejs/plugin-vue@5.1.3": + "@ungap/structured-clone@1.2.0": resolution: { - integrity: sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==, + integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, + } + + "@vitejs/plugin-vue@5.1.4": + resolution: + { + integrity: sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==, } engines: { node: ^18.0.0 || >=20.0.0 } peerDependencies: vite: ^5.0.0 vue: ^3.2.25 + "@vue/compat@3.5.12": + resolution: + { + integrity: sha512-44keSoMGAf9l6DVEKpyCUVZXU4KzGPzqtSoauZX5Jde7odhYHep3dBumurJXX64MIa4ZfPnN1whJOoqUAph4PA==, + } + peerDependencies: + vue: 3.5.12 + "@vue/compiler-core@3.5.12": resolution: { @@ -1136,10 +1212,28 @@ packages: integrity: sha512-VpWbaZrEOCqnmqjE83xdwegtr5qO/2OPUC6veWgvNqTJ3bYysz6vY3VqMuOijubuUYPRpG3OOKIh9TD0Stxb9A==, } - "@vue/devtools-api@6.6.3": + "@vue/devtools-api@6.6.4": resolution: { - integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==, + integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==, + } + + "@vue/devtools-api@7.4.6": + resolution: + { + integrity: sha512-XipBV5k0/IfTr0sNBDTg7OBUCp51cYMMXyPxLXJZ4K/wmUeMqt8cVdr2ZZGOFq+si/jTyCYnNxeKoyev5DOUUA==, + } + + "@vue/devtools-kit@7.4.6": + resolution: + { + integrity: sha512-NbYBwPWgEic1AOd9bWExz9weBzFdjiIfov0yRn4DrRfR+EQJCI9dn4I0XS7IxYGdkmUJi8mFW42LLk18WsGqew==, + } + + "@vue/devtools-shared@7.4.6": + resolution: + { + integrity: sha512-rPeSBzElnHYMB05Cc056BQiJpgocQjY8XVulgni+O9a9Gr9tNXgPteSzFFD+fT/iWMxNuUgGKs9CuW5DZewfIg==, } "@vue/reactivity@3.5.12": @@ -1200,51 +1294,43 @@ packages: integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==, } - "@vue/shared@3.5.3": - resolution: - { - integrity: sha512-Jp2v8nylKBT+PlOUjun2Wp/f++TfJVFjshLzNtJDdmFJabJa7noGMncqXRM1vXGX+Yo2V7WykQFNxusSim8SCA==, - } - "@vue/shared@3.5.6": resolution: { integrity: sha512-eidH0HInnL39z6wAt6SFIwBrvGOpDWsDxlw3rCgo1B+CQ1781WzQUSU3YjxgdkcJo9Q8S6LmXTkvI+cLHGkQfA==, } - "@vuepress/bundler-vite@2.0.0-rc.15": + "@vuepress/bundler-vite@2.0.0-rc.17": resolution: { - integrity: sha512-xPJBOvrt9hn+3dkMuWIpVy1Jb3a29ZPkEZ0nE10ULzLaGvN+Lv6tB7FPTN9d67LGT4wi09X0EXSvWg9Eun+6pQ==, + integrity: sha512-K2osFYuAX1y1m50IxSA7ykM0wdxvQBD3LsYsqAltMk/yM26cF8BjTOfpAbfBw4/gTbQHv2pzJbfUgOm9o/LbvQ==, } - "@vuepress/cli@2.0.0-rc.15": + "@vuepress/bundlerutils@2.0.0-rc.17": resolution: { - integrity: sha512-frJ0G4sOWUicpa6P1avpgYT0ZLfaAPeRCugghaQGVPnssYuddsP9KBIwfsJ5RP4lWpwfcsdZEuJKKrVJDh6PkQ==, + integrity: sha512-+Hxv3N8XRr6TTzBcXtaXlzq8r3YY/+HLeQHZ9mCGAhBXRCv5BeBgjpMP4BiQT1jd1FxfxRguyyFwioC6g5dOdA==, + } + + "@vuepress/cli@2.0.0-rc.17": + resolution: + { + integrity: sha512-naib+o5MRmkimjzHykuTLojltebv4+VpstK2KyOp7oR8XBBLAbpgVOgTLnTnDSooR9e313wQzYUzrgI+TKOwdQ==, } hasBin: true - "@vuepress/client@2.0.0-rc.15": + "@vuepress/client@2.0.0-rc.17": resolution: { - integrity: sha512-73TWRIFKFqDRI+JHFjVWUJNfeExBYUxR7QuB5ZrtbntvN7Tu+Qr6wMwTU9bwDttRIaxUzoTBuTN5wfAiijokHg==, + integrity: sha512-dnCU+spOgVw1V7vU/Gkj6e7bkfsGbezUuPAQMiWkBdrNTZ2BJctOHhhi+F8OBRR02hZ9JldlToA5vBoVsPKRpw==, } - "@vuepress/core@2.0.0-rc.15": + "@vuepress/core@2.0.0-rc.17": resolution: { - integrity: sha512-CcVuANpF3k5QH6k27uShpQc+fdb35QdMbqNr4YEBleCVM2M5fHPeA8Did2OgzDzdr15G+AX2aP98yNVLgNR8cw==, + integrity: sha512-Ux5zAqnSAAnaE4qFgIGkGRMWObyZaAeRk6Pj30tVRCC7zkYIRWXii7sUK6aehPyugQz02TKMvW5FlrJeA40ogw==, } - "@vuepress/helper@2.0.0-rc.39": - resolution: - { - integrity: sha512-X9KiTUjtrT6gxrDUDJhiB5+/kO4via8yzudowOPu55p/MKtPbShlJw/zEDivH3P4nD1LFWnjWWuEBgZLFymLFQ==, - } - peerDependencies: - vuepress: 2.0.0-rc.14 - "@vuepress/helper@2.0.0-rc.52": resolution: { @@ -1253,62 +1339,66 @@ packages: peerDependencies: vuepress: 2.0.0-rc.17 - "@vuepress/highlighter-helper@2.0.0-rc.39": + "@vuepress/highlighter-helper@2.0.0-rc.52": resolution: { - integrity: sha512-da4wob8vmrB8DGsBsJCF1ox4E50/9Yc3F9CkNvuH/BS/Touk5KabAw36dCDW/420jTrm5UjRgwfVzfkakcaRIQ==, + integrity: sha512-imyoo7gQxJ2/uhyPL1uQ1FexD2BpsJ7gYp4BXHY3iaaDuJ6KVnF+FSIbxaLW4XW3qivJ7IjWWfv5Q3gi0/xQxQ==, } peerDependencies: - vuepress: 2.0.0-rc.14 + "@vueuse/core": ^11.1.0 + vuepress: 2.0.0-rc.17 + peerDependenciesMeta: + "@vueuse/core": + optional: true - "@vuepress/markdown@2.0.0-rc.15": + "@vuepress/markdown@2.0.0-rc.17": resolution: { - integrity: sha512-q+yuwV+PzvFCs92Q/O/3HHRDY9CNYKJgc+fKbqE98P3qGBATnDtABUjc+NjtPvG4OdYt2fELTXOzyprE8omFIw==, + integrity: sha512-eIwRostE3t3zsJzPjmOufVyyBpsaWQkZluk6o0i1e9WLW3EoinKrDZdzej0Jw8IQlq6nvOPD2JMFWyXwu8fv7w==, } - "@vuepress/plugin-active-header-links@2.0.0-rc.39": + "@vuepress/plugin-active-header-links@2.0.0-rc.52": resolution: { - integrity: sha512-Nm4srR+/kEoawFikbpXdJmi3dvXKU4RcsuOW6d0Aa6JWdiB8sX9PbCWbJD+ZWvAa8o+ySBBHFNd4exTzfCtBlw==, + integrity: sha512-2QJbVTurvHuIAkO6YqXHoHkY6t4H6o0nktxbUjCiezkOGtiN2DHn4wpD2AFKjYstezIWDGbPianbBuGAZKr+aQ==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-back-to-top@2.0.0-rc.39": + "@vuepress/plugin-back-to-top@2.0.0-rc.52": resolution: { - integrity: sha512-rG9HVgvpxURGfDZeuVRCjXLFHIEqPh1VPqkQpldh1zpDbB4+V2xqq73TYfpjFBRekN8lJZ0JO3BJ8f7p9t4wLg==, + integrity: sha512-Ea1r8bNma61vxAAxwuA62md4cZlP8Dmfl0kqlA9u++90l95Dc3z/lw+Rju/ENlBqxvv17lTN4NWMMbwcnXK21w==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-blog@2.0.0-rc.39": + "@vuepress/plugin-blog@2.0.0-rc.52": resolution: { - integrity: sha512-YHxsZxlIeJGCcOdEm4c4lQoNHx358Zxu/0tvRC/jEwXgyZUnqSpbMd3FLJ9Yl7CPsp18PMLIN7d8YQOetR17zA==, + integrity: sha512-W9FrpR/ynV1lztdCrtEmnfZizNbnhLdzl/BdLxbDoVrKcjAWktqmfx8VJI+zrWyHmPzwIxrY0FdttQDUXPj+VA==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-catalog@2.0.0-rc.39": + "@vuepress/plugin-catalog@2.0.0-rc.52": resolution: { - integrity: sha512-WAxCpDAZO4Pzozh6l5zPk/XYXgxAMq96PksgrVjlWsp1c4UKM7QiUMAXKH0UfbgcQhtLJoWQ37F8EZnJAMEXDQ==, + integrity: sha512-NMT0Iyi8F4eRiHd8KoP2Wje9vzY6shzwxuqYpXULNKsc9e3gPpCP63N6AqjSEaEO/NyqN8EzJftYIiK7KorYbw==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-comment@2.0.0-rc.39": + "@vuepress/plugin-comment@2.0.0-rc.53": resolution: { - integrity: sha512-/oCS+0wH/MtE4c1HUKlqH/tj70oXSz/tfR1hsHj8F8wiZ+IVJxexvtzMKk0vdRmYnH4nqeZh6dg5ggSJjrLEZQ==, + integrity: sha512-1nzUCKqTHf/zrwBKs9hSwUMo/f7tI2SKhTAwAWFY0sHo1uYTtSV7gllDXrhpeoprlO4S3R3oQc/0ZkSIFpe08Q==, } peerDependencies: - "@waline/client": ^3.1.0 - artalk: ^2.8.7 - twikoo: ^1.5.0 - vuepress: 2.0.0-rc.14 + "@waline/client": ^3.3.1 + artalk: ^2.9.0 + twikoo: ^1.6.39 + vuepress: 2.0.0-rc.17 peerDependenciesMeta: "@waline/client": optional: true @@ -1317,89 +1407,125 @@ packages: twikoo: optional: true - "@vuepress/plugin-copy-code@2.0.0-rc.39": + "@vuepress/plugin-copy-code@2.0.0-rc.52": resolution: { - integrity: sha512-Udd73yfUvjCQadE+QRXCC+Rw2zxRNsBIcpDcFMzs3Vz93LbZxbG0cv6pO4rdKb3OrFH9M0JTawoWyANZspt3QQ==, + integrity: sha512-YQeWH3EZrZsiQGUC/9tkhKXk5LuWZKIRDnYgit03+i/1hoivgVO8sRRAKCf9gQpX2EEbyyyiCqBTSByOFNAHag==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-copyright@2.0.0-rc.39": + "@vuepress/plugin-copyright@2.0.0-rc.52": resolution: { - integrity: sha512-webOz7vcBydcpqRdLMQYtykEGD5NqZ8ykoZ6dLF9Yk7LteUgsSVUSMm7cJ2vxG2dD/SeH5dPlsr02lH+PH0VbQ==, + integrity: sha512-eDGSqisi9Fnu3ODd4JwVepxd+ACrRbcO1ugAFukVeTQqySodnh5c70aDJN32QuYN7RmxIt1FvPJoS9/hWiOSrw==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-git@2.0.0-rc.38": + "@vuepress/plugin-git@2.0.0-rc.52": resolution: { - integrity: sha512-dRJiZ5PVuhhyu+R2BZOlyeqgxVikUUh2Vf6RNVN2DNWv4VHdYybFQuQ+kYDpldYyzoP8932aFRV0d2ocpvxEug==, + integrity: sha512-IHCHAKvia0NCv64Y1NQcmAeJKZvT3lFddhl3yrd79KiIZ4HLoBjni7jII0dsx77FtTJLeXHYkkNhnY1l/j1Diw==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-links-check@2.0.0-rc.39": + "@vuepress/plugin-links-check@2.0.0-rc.52": resolution: { - integrity: sha512-2lQHIMO49jYcJnEWHf7yoXnuFUrAQC+LfzSvaeCMUzshEIDTJXy96LSCQCjRWwW02GL65qS9ODfr6b8DDuXMgg==, + integrity: sha512-peu3Fzv/TNb+rpiNByKfbira79sR8vGVpF8u9mZXgM/xsQH5IvO0g7Zgwub8fkoIxsNjEN2SnA0k3bCbOWGUgw==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-notice@2.0.0-rc.39": + "@vuepress/plugin-markdown-hint@2.0.0-rc.52": resolution: { - integrity: sha512-GNnNIxZJBt2q8XAtgrpCxovEB0vRXjrCccu4TBjPnSimjreo/i7uaHkxDyCb3O9tNQGEd6OaObOkHFBJ7vXaTg==, + integrity: sha512-8c3RVFvjh9ntgmqpU3ZWiolCMIBcKZXmd4utTU9EGBaNeIBGtdGyY2dYhbMkR89/OUBP1NfEtuSTNa2PkVW9Cg==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-nprogress@2.0.0-rc.39": + "@vuepress/plugin-markdown-image@2.0.0-rc.52": resolution: { - integrity: sha512-HH+GuR2sxzVQ5uIQxDHnQF5RevjefviLuAbB1UH4u1R6DRUDd9+DrqXm4T/0LJJWo4OCPO4DLzPpmRESjuZifw==, + integrity: sha512-Qu21KKNOvQPOaW++WtJ43XHT8tj1HlV7eDOGZJzc2Gv+0aeRHxCZ6Ljycbs6cSsekP6Rg9GOlMOv2902pCu4Pg==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-photo-swipe@2.0.0-rc.39": + "@vuepress/plugin-markdown-math@2.0.0-rc.52": resolution: { - integrity: sha512-MS9xlTAEd7/nJHSPphS2diyvyRzuXRk0zYVlBSDcv8ge3X9gxkMhEcOoRfU6PymxMuovJKBIeTE4mvZQ9Wl9eQ==, + integrity: sha512-Dnez/mkxLe/EgpGcORUwi0oNwwxOpdY8hzfjTGgOEONxQOhO9MwTzgp75aNbVKGG5Df/xqEpKjU8plncNIg7eA==, } peerDependencies: - vuepress: 2.0.0-rc.14 - - "@vuepress/plugin-reading-time@2.0.0-rc.39": - resolution: - { - integrity: sha512-ChfVi6be4hAXd0XIgyfdNGayIQTzRKFZB2JFWB12+TYBJr6TQ7j6tmL7FWOiYPXUPetVPm6CfuY+mdiaBq2vqg==, - } - peerDependencies: - vuepress: 2.0.0-rc.14 - - "@vuepress/plugin-rtl@2.0.0-rc.39": - resolution: - { - integrity: sha512-1ndKbzpGxJ6qLIOjTeZkAcsqq4eJ54hUrhraOmv21UneVIVDSAt80VeKnSwl8p269T94AxqNqfLsnnaCQ5uvRw==, - } - peerDependencies: - vuepress: 2.0.0-rc.14 - - "@vuepress/plugin-sass-palette@2.0.0-rc.39": - resolution: - { - integrity: sha512-jBo/4Lz7H9pa7TCqMSFiEyZRowsLCOVHj+yrp0PE1fAwx+qTm9dNSDKauWIKGplFGQqf4BdKITE7hPDoBePiDw==, - } - peerDependencies: - sass-loader: ^14.0.0 - vuepress: 2.0.0-rc.14 + katex: ^0.16.10 + mathjax-full: ^3.2.2 + vuepress: 2.0.0-rc.17 peerDependenciesMeta: - sass-loader: + katex: optional: true + mathjax-full: + optional: true + + "@vuepress/plugin-markdown-tab@2.0.0-rc.52": + resolution: + { + integrity: sha512-ZIeRllMZR/pRKLLID2xW++cjE7JGJLutjUVvqLRF9BPb2t425zurZUE3ahI8z338UZr8UhUosZeb/5HDHJ7MTQ==, + } + peerDependencies: + vuepress: 2.0.0-rc.17 + + "@vuepress/plugin-notice@2.0.0-rc.52": + resolution: + { + integrity: sha512-kBu5uTJWwgK9n3g62vayAlMx8m7PKPdCOUOSza3x6VTI0pkANHIgwVH0jyRosfnJjrfbcZRF86lpGjMnmW6+sw==, + } + peerDependencies: + vuepress: 2.0.0-rc.17 + + "@vuepress/plugin-nprogress@2.0.0-rc.52": + resolution: + { + integrity: sha512-TxDd4y+RWytToja0fOF4GL0k500g8zB0LpCxsc33gHvVUsJ7qVXcq8XPyYH6FgZPX4BuiPexVxE6FG7XUat/fg==, + } + peerDependencies: + vuepress: 2.0.0-rc.17 + + "@vuepress/plugin-photo-swipe@2.0.0-rc.52": + resolution: + { + integrity: sha512-ybrAzJZfZwd6oK7uMHckR/rsZ8T9v3TZrWYRVZQ08rSlW71YKLA0Lsi+UaD+ECMJh2onSALhipb9WGGVTDMd0A==, + } + peerDependencies: + vuepress: 2.0.0-rc.17 + + "@vuepress/plugin-reading-time@2.0.0-rc.52": + resolution: + { + integrity: sha512-LRpxo55wPOomeDZF+TQV4QxgEM5hb18aVsFRlyDy55tHvjwtv7zJJOtcROkDXTgMqWqe1ipqoDyo4IAoRglxXQ==, + } + peerDependencies: + vuepress: 2.0.0-rc.17 + + "@vuepress/plugin-redirect@2.0.0-rc.52": + resolution: + { + integrity: sha512-57j8ycJ5CBS7MfuhpWCxkhphTO67MoEcm3ZfZJpvUCXiX/D9l9uPuK+JD2/Ky+60p7Md0YfBnYsenfk/0zFlYQ==, + } + hasBin: true + peerDependencies: + vuepress: 2.0.0-rc.17 + + "@vuepress/plugin-rtl@2.0.0-rc.52": + resolution: + { + integrity: sha512-Uz7IVWazFE4IfkEZpArImUmOQhJVDU1/CcfUOOb4UY0ZStrLOtJrbgOYoBLgNYZrfcCsQtxSKD/syFuyM5RLcg==, + } + peerDependencies: + vuepress: 2.0.0-rc.17 "@vuepress/plugin-sass-palette@2.0.0-rc.52": resolution: @@ -1419,62 +1545,56 @@ packages: sass-loader: optional: true - "@vuepress/plugin-seo@2.0.0-rc.39": + "@vuepress/plugin-seo@2.0.0-rc.52": resolution: { - integrity: sha512-n6w3ifBU2HK3b6twxJQiiv7vZxjCi0DCgW3Ellp7pNI/uZU6PnfkZ+UjtlHieScThe7A8Q+mxW/T7CyWC6/8cw==, + integrity: sha512-q3BhGXnhrDBms4QZbMryKnCLR+TIY79J8Xt01SfkhD8UanYWvMg3+pXg7+Wn9HNLNAUsuuXfLZ4tLQwlF0OxJQ==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-shiki@2.0.0-rc.39": + "@vuepress/plugin-shiki@2.0.0-rc.52": resolution: { - integrity: sha512-QnD8VhOqpkgLCnwLGzcyPY8eC1dam2Navud9DyisLtqWOJ6zmjFZEE1O5elUjh6cPUtarN8bQQ/zn1M1ebRURA==, + integrity: sha512-UBbDCCHVr1jp4xWS1at+iCZnBih/Gt+b4Md/VISFfKUZ+ZbZsZQqtF2jmeJ0kj2rCwJSRWTaqAQJg/DlM2eDyQ==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-sitemap@2.0.0-rc.39": + "@vuepress/plugin-sitemap@2.0.0-rc.52": resolution: { - integrity: sha512-/dgI8JK4oFaFG3Dmw34cwY5J/gYXNWto7RwR7H8wcK10cWuoT2tNV56BeixWiaqsKj1BZjv2GMwZTLpPgYxgZw==, + integrity: sha512-16SBEXox2IwztBBjJRCQbecz/K3aEBKkQRsxI4cUhSGU3BaMk1DiGyTSYhge+e4DaQQvcjfrDOTWNJTPg46L7A==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-theme-data@2.0.0-rc.39": + "@vuepress/plugin-theme-data@2.0.0-rc.52": resolution: { - integrity: sha512-fNwaPpqM46gI23n5d4UrwC8Y+JRDi7mKs1sjawqKU9PdJpUQKd/2lOSOSx/farLqxiswHTQdZtLCxWjvWlcZRw==, + integrity: sha512-eCqCNgYUcLA6zISgWLUXMMLLP+5BJj3gx/v9Eczd7vtyYHaNwEZ+MRC1GMJHcCUK25o5KzMUXnzR1JKFCGobAQ==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/plugin-watermark@2.0.0-rc.39": + "@vuepress/plugin-watermark@2.0.0-rc.52": resolution: { - integrity: sha512-16BZnwIZa+AEBcnXI59udHX04/VLiCwrdy8wsdBf3vy5co8/PPyG3iDC1Tlwbkotsuz/+J23KG7MjN4Fr9dFEQ==, + integrity: sha512-iiCrcJOYqHgBA9CRYeAEMzcG0PT5FmB9iSoNnrWWzKEBBlXfEvdx9dZSe+KBytJ1TBAPQ99Ddy4lMxs6EQ5NzQ==, } peerDependencies: - vuepress: 2.0.0-rc.14 + vuepress: 2.0.0-rc.17 - "@vuepress/shared@2.0.0-rc.15": + "@vuepress/shared@2.0.0-rc.17": resolution: { - integrity: sha512-KLTTw0MWXrLw5XQ8h6y1iI11zJdlZcB8jXgAdOHFJ3a++InDYmUC0aCE0KbXyQTH46ODpMadJnz8/RewCftVXg==, + integrity: sha512-meBWLJCCHqj+edHY+U2q64Q8AIqqlHzau6T0j95Q58WkWOQdgn8MUCx1/TXXh2mKVyTt4g6Kgci/3fK2Hi97HQ==, } - "@vuepress/utils@2.0.0-rc.15": + "@vuepress/utils@2.0.0-rc.17": resolution: { - integrity: sha512-yHdMxPg8yxlAz/QL5G7U1IQ+jk34sCtn8H8X5j+A2U1x/j2lnr8LLDWzl84TyN78pdEA1cQL5g7Ks/zTzrIWhQ==, - } - - "@vueuse/core@10.11.0": - resolution: - { - integrity: sha512-x3sD4Mkm7PJ+pcq3HX8PLPBadXCAlSDR/waK87dz0gQE+qJnaaFhc/dZVfJz+IUYzTMVGum2QlR7ImiJQN4s6g==, + integrity: sha512-5QFG8arU01QxJm+pzaNpNxfvSy3ttSjouwcefyr/6dO/cKbnjgmmaDOoy3UKnHYQtEDycybNOg4ebn2AHslEKw==, } "@vueuse/core@11.1.0": @@ -1483,30 +1603,40 @@ packages: integrity: sha512-P6dk79QYA6sKQnghrUz/1tHi0n9mrb/iO1WTMk/ElLmTyNqgDeSZ3wcDf6fRBGzRJbeG1dxzEOvLENMjr+E3fg==, } - "@vueuse/metadata@10.11.0": - resolution: - { - integrity: sha512-kQX7l6l8dVWNqlqyN3ePW3KmjCQO3ZMgXuBMddIu83CmucrsBfXlH+JoviYyRBws/yLTQO8g3Pbw+bdIoVm4oQ==, - } - "@vueuse/metadata@11.1.0": resolution: { integrity: sha512-l9Q502TBTaPYGanl1G+hPgd3QX5s4CGnpXriVBR5fEZ/goI6fvDaVmIl3Td8oKFurOxTmbXvBPSsgrd6eu6HYg==, } - "@vueuse/shared@10.11.0": - resolution: - { - integrity: sha512-fyNoIXEq3PfX1L3NkNhtVQUSRtqYwJtJg+Bp9rIzculIZWHTkKSysujrOk2J+NrRulLTQH9+3gGSfYLWSEWU1A==, - } - "@vueuse/shared@11.1.0": resolution: { integrity: sha512-YUtIpY122q7osj+zsNMFAfMTubGz0sn5QzE5gPzAIiCmtt2ha3uQUY1+JPyL4gRCTsLPX82Y9brNbo/aqlA91w==, } + "@zenuml/core@3.24.12": + resolution: + { + integrity: sha512-SM9TYgyWl1Bm7oWc4lZLq0q9ejT6RdqxBYav8a4BhVvWkFgND088YCL9xlvo9vPJenwIuVNK+xukgqL1nwfztw==, + } + engines: { node: ">=12.0.0" } + + abort-controller@3.0.0: + resolution: + { + integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, + } + engines: { node: ">=6.5" } + + acorn@8.12.1: + resolution: + { + integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==, + } + engines: { node: ">=0.4.0" } + hasBin: true + ansi-regex@5.0.1: resolution: { @@ -1528,6 +1658,26 @@ packages: } engines: { node: ">=8" } + ansi-styles@6.2.1: + resolution: + { + integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, + } + engines: { node: ">=12" } + + antlr4@4.11.0: + resolution: + { + integrity: sha512-GUGlpE2JUjAN+G8G5vY+nOoeyNhHsXoIJwP1XF1oRw89vifA1K46T6SEkwLwr7drihN7I/lf0DIjKc4OZvBX8w==, + } + engines: { node: ">=14" } + + any-promise@1.3.0: + resolution: + { + integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==, + } + anymatch@3.1.3: resolution: { @@ -1553,6 +1703,13 @@ packages: integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, } + atomic-sleep@1.0.0: + resolution: + { + integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==, + } + engines: { node: ">=8.0.0" } + autoprefixer@10.4.20: resolution: { @@ -1563,12 +1720,24 @@ packages: peerDependencies: postcss: ^8.1.0 + balanced-match@1.0.2: + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } + balloon-css@1.2.0: resolution: { integrity: sha512-urXwkHgwp6GsXVF+it01485Z2Cj4pnW02ICnM0TemOlkKmCNnDLmyy+ZZiRXBpwldUXO+aRNr7Hdia4CBvXJ5A==, } + base64-js@1.5.1: + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, + } + bcrypt-ts@5.0.2: resolution: { @@ -1583,12 +1752,24 @@ packages: } engines: { node: ">=8" } + birpc@0.2.19: + resolution: + { + integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==, + } + boolbase@1.0.0: resolution: { integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, } + brace-expansion@2.0.1: + resolution: + { + integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, + } + braces@3.0.2: resolution: { @@ -1604,6 +1785,12 @@ packages: engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true + buffer@6.0.3: + resolution: + { + integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==, + } + cac@6.7.14: resolution: { @@ -1611,6 +1798,13 @@ packages: } engines: { node: ">=8" } + camelcase-css@2.0.1: + resolution: + { + integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==, + } + engines: { node: ">= 6" } + camelcase@5.3.1: resolution: { @@ -1624,6 +1818,12 @@ packages: integrity: sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==, } + ccount@2.0.1: + resolution: + { + integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, + } + chalk@5.3.0: resolution: { @@ -1631,6 +1831,18 @@ packages: } engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } + character-entities-html4@2.1.0: + resolution: + { + integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, + } + + character-entities-legacy@3.0.0: + resolution: + { + integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==, + } + cheerio-select@2.1.0: resolution: { @@ -1644,12 +1856,19 @@ packages: } engines: { node: ">=18.17" } - cheerio@1.0.0-rc.12: + chevrotain-allstar@0.3.1: resolution: { - integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==, + integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==, + } + peerDependencies: + chevrotain: ^11.0.0 + + chevrotain@11.0.3: + resolution: + { + integrity: sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==, } - engines: { node: ">= 6" } chokidar@3.6.0: resolution: @@ -1665,12 +1884,12 @@ packages: } engines: { node: ">= 14.16.0" } - cli-cursor@4.0.0: + cli-cursor@5.0.0: resolution: { - integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==, + integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==, } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + engines: { node: ">=18" } cli-spinners@2.9.2: resolution: @@ -1698,6 +1917,45 @@ packages: integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, } + color-string@1.9.1: + resolution: + { + integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==, + } + + comma-separated-tokens@2.0.3: + resolution: + { + integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==, + } + + commander@4.1.1: + resolution: + { + integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==, + } + engines: { node: ">= 6" } + + commander@7.2.0: + resolution: + { + integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==, + } + engines: { node: ">= 10" } + + commander@8.3.0: + resolution: + { + integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==, + } + engines: { node: ">= 12" } + + confbox@0.1.8: + resolution: + { + integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==, + } + connect-history-api-fallback@2.0.0: resolution: { @@ -1705,6 +1963,25 @@ packages: } engines: { node: ">=0.8" } + copy-anything@3.0.5: + resolution: + { + integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==, + } + engines: { node: ">=12.13" } + + cose-base@1.0.3: + resolution: + { + integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==, + } + + cose-base@2.2.0: + resolution: + { + integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==, + } + create-codepen@2.0.0: resolution: { @@ -1732,12 +2009,293 @@ packages: } engines: { node: ">= 6" } + cssesc@3.0.0: + resolution: + { + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, + } + engines: { node: ">=4" } + hasBin: true + csstype@3.1.3: resolution: { integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, } + cytoscape-cose-bilkent@4.1.0: + resolution: + { + integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==, + } + peerDependencies: + cytoscape: ^3.2.0 + + cytoscape-fcose@2.2.0: + resolution: + { + integrity: sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==, + } + peerDependencies: + cytoscape: ^3.2.0 + + cytoscape@3.30.2: + resolution: + { + integrity: sha512-oICxQsjW8uSaRmn4UK/jkczKOqTrVqt5/1WL0POiJUT2EKNc9STM4hYFHv917yu55aTBMFNRzymlJhVAiWPCxw==, + } + engines: { node: ">=0.10" } + + d3-array@2.12.1: + resolution: + { + integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==, + } + + d3-array@3.2.4: + resolution: + { + integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==, + } + engines: { node: ">=12" } + + d3-axis@3.0.0: + resolution: + { + integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==, + } + engines: { node: ">=12" } + + d3-brush@3.0.0: + resolution: + { + integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==, + } + engines: { node: ">=12" } + + d3-chord@3.0.1: + resolution: + { + integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==, + } + engines: { node: ">=12" } + + d3-color@3.1.0: + resolution: + { + integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==, + } + engines: { node: ">=12" } + + d3-contour@4.0.2: + resolution: + { + integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==, + } + engines: { node: ">=12" } + + d3-delaunay@6.0.4: + resolution: + { + integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==, + } + engines: { node: ">=12" } + + d3-dispatch@3.0.1: + resolution: + { + integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==, + } + engines: { node: ">=12" } + + d3-drag@3.0.0: + resolution: + { + integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==, + } + engines: { node: ">=12" } + + d3-dsv@3.0.1: + resolution: + { + integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==, + } + engines: { node: ">=12" } + hasBin: true + + d3-ease@3.0.1: + resolution: + { + integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==, + } + engines: { node: ">=12" } + + d3-fetch@3.0.1: + resolution: + { + integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==, + } + engines: { node: ">=12" } + + d3-force@3.0.0: + resolution: + { + integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==, + } + engines: { node: ">=12" } + + d3-format@3.1.0: + resolution: + { + integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==, + } + engines: { node: ">=12" } + + d3-geo@3.1.1: + resolution: + { + integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==, + } + engines: { node: ">=12" } + + d3-hierarchy@3.1.2: + resolution: + { + integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==, + } + engines: { node: ">=12" } + + d3-interpolate@3.0.1: + resolution: + { + integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==, + } + engines: { node: ">=12" } + + d3-path@1.0.9: + resolution: + { + integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==, + } + + d3-path@3.1.0: + resolution: + { + integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==, + } + engines: { node: ">=12" } + + d3-polygon@3.0.1: + resolution: + { + integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==, + } + engines: { node: ">=12" } + + d3-quadtree@3.0.1: + resolution: + { + integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==, + } + engines: { node: ">=12" } + + d3-random@3.0.1: + resolution: + { + integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==, + } + engines: { node: ">=12" } + + d3-sankey@0.12.3: + resolution: + { + integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==, + } + + d3-scale-chromatic@3.1.0: + resolution: + { + integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==, + } + engines: { node: ">=12" } + + d3-scale@4.0.2: + resolution: + { + integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==, + } + engines: { node: ">=12" } + + d3-selection@3.0.0: + resolution: + { + integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==, + } + engines: { node: ">=12" } + + d3-shape@1.3.7: + resolution: + { + integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==, + } + + d3-shape@3.2.0: + resolution: + { + integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==, + } + engines: { node: ">=12" } + + d3-time-format@4.1.0: + resolution: + { + integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==, + } + engines: { node: ">=12" } + + d3-time@3.1.0: + resolution: + { + integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==, + } + engines: { node: ">=12" } + + d3-timer@3.0.1: + resolution: + { + integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==, + } + engines: { node: ">=12" } + + d3-transition@3.0.1: + resolution: + { + integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==, + } + engines: { node: ">=12" } + peerDependencies: + d3-selection: 2 - 3 + + d3-zoom@3.0.0: + resolution: + { + integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==, + } + engines: { node: ">=12" } + + d3@7.9.0: + resolution: + { + integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==, + } + engines: { node: ">=12" } + + dagre-d3-es@7.0.10: + resolution: + { + integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==, + } + dayjs@1.11.13: resolution: { @@ -1756,6 +2314,18 @@ packages: supports-color: optional: true + debug@4.3.7: + resolution: + { + integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==, + } + engines: { node: ">=6.0" } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + decamelize@1.2.0: resolution: { @@ -1763,18 +2333,55 @@ packages: } engines: { node: ">=0.10.0" } + delaunator@5.0.1: + resolution: + { + integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==, + } + + dequal@2.0.3: + resolution: + { + integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, + } + engines: { node: ">=6" } + + devlop@1.1.0: + resolution: + { + integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, + } + + didyoumean@1.2.2: + resolution: + { + integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==, + } + dijkstrajs@1.0.3: resolution: { integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==, } + dlv@1.1.3: + resolution: + { + integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, + } + dom-serializer@2.0.0: resolution: { integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, } + dom-to-image-more@2.16.0: + resolution: + { + integrity: sha512-RyjtkaM/zVy90uJ20lT+/G7MwBZx6l/ePliq5CQOeAnPeew7aUGS6IqRWBkHpstU+POmhaKA8A9H9qf476gisQ==, + } + domelementtype@2.3.0: resolution: { @@ -1788,12 +2395,30 @@ packages: } engines: { node: ">= 4" } + dompurify@3.1.6: + resolution: + { + integrity: sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==, + } + + dompurify@3.1.7: + resolution: + { + integrity: sha512-VaTstWtsneJY8xzy7DekmYWEOZcmzIe3Qb3zPd4STve1OBTa+e+WmS1ITQec1fZYXI3HCsOZZiSMpG6oxoWMWQ==, + } + domutils@3.1.0: resolution: { integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==, } + eastasianwidth@0.2.0: + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, + } + electron-to-chromium@1.5.13: resolution: { @@ -1812,10 +2437,10 @@ packages: integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, } - encode-utf8@1.0.3: + emoji-regex@9.2.2: resolution: { - integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==, + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, } encoding-sniffer@0.2.0: @@ -1831,10 +2456,10 @@ packages: } engines: { node: ">=0.12" } - envinfo@7.13.0: + envinfo@7.14.0: resolution: { - integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==, + integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==, } engines: { node: ">=4" } hasBin: true @@ -1868,10 +2493,24 @@ packages: integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, } - execa@9.3.0: + event-target-shim@5.0.1: resolution: { - integrity: sha512-l6JFbqnHEadBoVAVpN5dl2yCyfX28WoBAGaoQcNmLLSedOxTxcn2Qa83s8I/PA5i56vWru2OHOtrwF7Om2vqlg==, + integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, + } + engines: { node: ">=6" } + + events@3.3.0: + resolution: + { + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, + } + engines: { node: ">=0.8.x" } + + execa@9.4.0: + resolution: + { + integrity: sha512-yKHlle2YGxZE842MERVIplWwNH5VYmqqcPFgtnlU//K8gxuFFXu0pwd/CrfXTumFpeEiufsP7+opT/bPJa1yVw==, } engines: { node: ^18.19.0 || >=20.5.0 } @@ -1889,6 +2528,13 @@ packages: } engines: { node: ">=8.6.0" } + fast-redact@3.5.0: + resolution: + { + integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==, + } + engines: { node: ">=6" } + fastq@1.17.1: resolution: { @@ -1908,6 +2554,12 @@ packages: } engines: { node: ">=18" } + file-saver@2.0.5: + resolution: + { + integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==, + } + fill-range@7.0.1: resolution: { @@ -1922,6 +2574,13 @@ packages: } engines: { node: ">=8" } + foreground-child@3.3.0: + resolution: + { + integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==, + } + engines: { node: ">=14" } + fraction.js@4.3.7: resolution: { @@ -1943,6 +2602,12 @@ packages: engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] + function-bind@1.1.2: + resolution: + { + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, + } + get-caller-file@2.0.5: resolution: { @@ -1977,6 +2642,20 @@ packages: } engines: { node: ">= 6" } + glob-parent@6.0.2: + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, + } + engines: { node: ">=10.13.0" } + + glob@10.4.5: + resolution: + { + integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==, + } + hasBin: true + globby@14.0.2: resolution: { @@ -1997,16 +2676,59 @@ packages: } engines: { node: ">=6.0" } + hachure-fill@0.5.2: + resolution: + { + integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==, + } + hash-sum@2.0.0: resolution: { integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==, } - htmlparser2@8.0.2: + hasown@2.0.2: resolution: { - integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==, + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, + } + engines: { node: ">= 0.4" } + + hast-util-to-html@9.0.3: + resolution: + { + integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==, + } + + hast-util-whitespace@3.0.0: + resolution: + { + integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==, + } + + highlight.js@10.7.3: + resolution: + { + integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==, + } + + hookable@5.5.3: + resolution: + { + integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==, + } + + html-to-image@1.11.11: + resolution: + { + integrity: sha512-9gux8QhvjRO/erSnDPv28noDZcPZmYE7e1vFsBLKLlRlKDSqNJYebj6Qz1TGd5lsRV+X+xYyjCKjuZdABinWjA==, + } + + html-void-elements@3.0.0: + resolution: + { + integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==, } htmlparser2@9.1.0: @@ -2015,10 +2737,10 @@ packages: integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==, } - human-signals@7.0.0: + human-signals@8.0.0: resolution: { - integrity: sha512-74kytxOUSvNbjrT9KisAbaTZ/eJwD/LrbM/kh5j0IhPuJzwuA19dWvniFGwBzN9rVjg+O/e+F310PjObDXS+9Q==, + integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==, } engines: { node: ">=18.18.0" } @@ -2029,6 +2751,12 @@ packages: } engines: { node: ">=0.10.0" } + ieee754@1.2.1: + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + } + ignore@5.3.1: resolution: { @@ -2036,10 +2764,23 @@ packages: } engines: { node: ">= 4" } - immutable@4.3.5: + internmap@1.0.1: resolution: { - integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==, + integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==, + } + + internmap@2.0.3: + resolution: + { + integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==, + } + engines: { node: ">=12" } + + is-arrayish@0.3.2: + resolution: + { + integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==, } is-binary-path@2.1.0: @@ -2049,6 +2790,13 @@ packages: } engines: { node: ">=8" } + is-core-module@2.15.1: + resolution: + { + integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==, + } + engines: { node: ">= 0.4" } + is-extendable@0.1.1: resolution: { @@ -2119,12 +2867,32 @@ packages: } engines: { node: ">=18" } + is-what@4.1.16: + resolution: + { + integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==, + } + engines: { node: ">=12.13" } + isexe@2.0.0: resolution: { integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, } + jackspeak@3.4.3: + resolution: + { + integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==, + } + + jiti@1.21.6: + resolution: + { + integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==, + } + hasBin: true + js-yaml@3.14.1: resolution: { @@ -2145,6 +2913,19 @@ packages: integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, } + katex@0.16.11: + resolution: + { + integrity: sha512-RQrI8rlHY92OLf3rho/Ts8i/XvjgguEjOkO1BEXcU3N8BqPpSzBNwV/G0Ukr+P/l3ivvJUE/Fa/CwbS6HesGNQ==, + } + hasBin: true + + khroma@2.1.0: + resolution: + { + integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==, + } + kind-of@6.0.3: resolution: { @@ -2152,6 +2933,38 @@ packages: } engines: { node: ">=0.10.0" } + kolorist@1.8.0: + resolution: + { + integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==, + } + + langium@3.0.0: + resolution: + { + integrity: sha512-+Ez9EoiByeoTu/2BXmEaZ06iPNXM6thWJp02KfBO/raSMyCJ4jw7AkWWa+zBCTm0+Tw1Fj9FOxdqSskyN5nAwg==, + } + engines: { node: ">=16.0.0" } + + layout-base@1.0.2: + resolution: + { + integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==, + } + + layout-base@2.0.1: + resolution: + { + integrity: sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==, + } + + lilconfig@2.1.0: + resolution: + { + integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==, + } + engines: { node: ">=10" } + lilconfig@3.1.1: resolution: { @@ -2159,6 +2972,12 @@ packages: } engines: { node: ">=14" } + lines-and-columns@1.2.4: + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } + linkify-it@5.0.0: resolution: { @@ -2183,6 +3002,13 @@ packages: integrity: sha512-VZx5iAyMtX7CV4K8iTLdCkMaYZ7ipjJZ0JcSdJ0zIdGxxyurjIn7yuuSxNBD7QmjvcNJwr0JS4cAdAtsy7gZ6w==, } + local-pkg@0.5.0: + resolution: + { + integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==, + } + engines: { node: ">=14" } + locate-path@5.0.0: resolution: { @@ -2190,6 +3016,18 @@ packages: } engines: { node: ">=8" } + lodash-es@4.17.21: + resolution: + { + integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==, + } + + lodash@4.17.21: + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } + log-symbols@6.0.0: resolution: { @@ -2197,16 +3035,22 @@ packages: } engines: { node: ">=18" } + lru-cache@10.4.3: + resolution: + { + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, + } + magic-string@0.30.11: resolution: { integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==, } - markdown-it-anchor@9.0.1: + markdown-it-anchor@9.2.0: resolution: { - integrity: sha512-cBt7aAzmkfX8X7FqAe8EBryiKmToXgMQEEMqkXzWCm0toDtfDYIGboKeTKd8cpNJArJtutrf+977wFJTsvNGmQ==, + integrity: sha512-sa2ErMQ6kKOA4l31gLGYliFQrMKkqSO0ZJgGhDHKijPf0pNFM9vghjAh3gn26pS4JDRs7Iwa9S36gxm3vgZTzg==, } peerDependencies: "@types/markdown-it": "*" @@ -2225,6 +3069,28 @@ packages: } hasBin: true + marked@13.0.3: + resolution: + { + integrity: sha512-rqRix3/TWzE9rIoFGIn8JmsVfhiuC8VIQ8IdX5TfzmeBucdY05/0UlzKaw0eVtpcN/OdVFpBk7CjKGo9iHJ/zA==, + } + engines: { node: ">= 18" } + hasBin: true + + marked@4.3.0: + resolution: + { + integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==, + } + engines: { node: ">= 12" } + hasBin: true + + mdast-util-to-hast@13.2.0: + resolution: + { + integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==, + } + mdurl@2.0.0: resolution: { @@ -2238,6 +3104,42 @@ packages: } engines: { node: ">= 8" } + mermaid@11.3.0: + resolution: + { + integrity: sha512-fFmf2gRXLtlGzug4wpIGN+rQdZ30M8IZEB1D3eZkXNqC7puhqeURBcD/9tbwXsqBO+A6Nzzo3MSSepmnw5xSeg==, + } + + micromark-util-character@2.1.0: + resolution: + { + integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==, + } + + micromark-util-encode@2.0.0: + resolution: + { + integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==, + } + + micromark-util-sanitize-uri@2.0.0: + resolution: + { + integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==, + } + + micromark-util-symbol@2.0.0: + resolution: + { + integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==, + } + + micromark-util-types@2.0.0: + resolution: + { + integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==, + } + micromatch@4.0.5: resolution: { @@ -2245,12 +3147,38 @@ packages: } engines: { node: ">=8.6" } - mimic-fn@2.1.0: + mimic-function@5.0.1: resolution: { - integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==, + } + engines: { node: ">=18" } + + minimatch@9.0.5: + resolution: + { + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, + } + engines: { node: ">=16 || 14 >=14.17" } + + minipass@7.1.2: + resolution: + { + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, + } + engines: { node: ">=16 || 14 >=14.17" } + + mitt@3.0.1: + resolution: + { + integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==, + } + + mlly@1.7.2: + resolution: + { + integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==, } - engines: { node: ">=6" } ms@2.1.2: resolution: @@ -2258,6 +3186,18 @@ packages: integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, } + ms@2.1.3: + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } + + mz@2.7.0: + resolution: + { + integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, + } + nanoid@3.3.7: resolution: { @@ -2294,12 +3234,12 @@ packages: } engines: { node: ">=0.10.0" } - npm-run-path@5.3.0: + npm-run-path@6.0.0: resolution: { - integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, + integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==, } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + engines: { node: ">=18" } nth-check@2.1.1: resolution: @@ -2307,17 +3247,44 @@ packages: integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==, } - onetime@5.1.2: + object-assign@4.1.1: resolution: { - integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, } - engines: { node: ">=6" } + engines: { node: ">=0.10.0" } - ora@8.0.1: + object-hash@3.0.0: resolution: { - integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==, + integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==, + } + engines: { node: ">= 6" } + + on-exit-leak-free@2.1.2: + resolution: + { + integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==, + } + engines: { node: ">=14.0.0" } + + onetime@7.0.0: + resolution: + { + integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==, + } + engines: { node: ">=18" } + + oniguruma-to-js@0.4.3: + resolution: + { + integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==, + } + + ora@8.1.0: + resolution: + { + integrity: sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==, } engines: { node: ">=18" } @@ -2342,6 +3309,18 @@ packages: } engines: { node: ">=6" } + package-json-from-dist@1.0.1: + resolution: + { + integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==, + } + + package-manager-detector@0.2.2: + resolution: + { + integrity: sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg==, + } + parse-ms@4.0.0: resolution: { @@ -2367,6 +3346,12 @@ packages: integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==, } + path-data-parser@0.1.0: + resolution: + { + integrity: sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==, + } + path-exists@4.0.0: resolution: { @@ -2388,6 +3373,19 @@ packages: } engines: { node: ">=12" } + path-parse@1.0.7: + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } + + path-scurry@1.11.1: + resolution: + { + integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, + } + engines: { node: ">=16 || 14 >=14.18" } + path-type@5.0.0: resolution: { @@ -2395,6 +3393,18 @@ packages: } engines: { node: ">=12" } + pathe@1.1.2: + resolution: + { + integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==, + } + + perfect-debounce@1.0.0: + resolution: + { + integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==, + } + photoswipe@5.4.4: resolution: { @@ -2402,12 +3412,6 @@ packages: } engines: { node: ">= 0.12.0" } - picocolors@1.0.1: - resolution: - { - integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==, - } - picocolors@1.1.0: resolution: { @@ -2421,6 +3425,45 @@ packages: } engines: { node: ">=8.6" } + pify@2.3.0: + resolution: + { + integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, + } + engines: { node: ">=0.10.0" } + + pino-abstract-transport@1.2.0: + resolution: + { + integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==, + } + + pino-std-serializers@6.2.2: + resolution: + { + integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==, + } + + pino@8.21.0: + resolution: + { + integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==, + } + hasBin: true + + pirates@4.0.6: + resolution: + { + integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, + } + engines: { node: ">= 6" } + + pkg-types@1.2.1: + resolution: + { + integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==, + } + pngjs@5.0.0: resolution: { @@ -2428,6 +3471,51 @@ packages: } engines: { node: ">=10.13.0" } + points-on-curve@0.2.0: + resolution: + { + integrity: sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==, + } + + points-on-path@0.2.1: + resolution: + { + integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==, + } + + postcss-import@15.1.0: + resolution: + { + integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==, + } + engines: { node: ">=14.0.0" } + peerDependencies: + postcss: ^8.0.0 + + postcss-js@4.0.1: + resolution: + { + integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==, + } + engines: { node: ^12 || ^14 || >= 16 } + peerDependencies: + postcss: ^8.4.21 + + postcss-load-config@4.0.2: + resolution: + { + integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==, + } + engines: { node: ">= 14" } + peerDependencies: + postcss: ">=8.0.9" + ts-node: ">=9.0.0" + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + postcss-load-config@6.0.1: resolution: { @@ -2449,19 +3537,28 @@ packages: yaml: optional: true + postcss-nested@6.2.0: + resolution: + { + integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==, + } + engines: { node: ">=12.0" } + peerDependencies: + postcss: ^8.2.14 + + postcss-selector-parser@6.1.2: + resolution: + { + integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==, + } + engines: { node: ">=4" } + postcss-value-parser@4.2.0: resolution: { integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, } - postcss@8.4.44: - resolution: - { - integrity: sha512-Aweb9unOEpQ3ezu4Q00DPvvM2ZTUitJdNKeP/+uQgr1IBIqu574IaZoURId7BKtWMREwzKa9OgzPzezWGPWFQw==, - } - engines: { node: ^10 || ^12 || >=14 } - postcss@8.4.47: resolution: { @@ -2476,6 +3573,25 @@ packages: } engines: { node: ">=18" } + process-warning@3.0.0: + resolution: + { + integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==, + } + + process@0.11.10: + resolution: + { + integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, + } + engines: { node: ">= 0.6.0" } + + property-information@6.5.0: + resolution: + { + integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==, + } + punycode.js@2.3.1: resolution: { @@ -2483,10 +3599,10 @@ packages: } engines: { node: ">=6" } - qrcode@1.5.3: + qrcode@1.5.4: resolution: { - integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==, + integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==, } engines: { node: ">=10.13.0" } hasBin: true @@ -2497,6 +3613,31 @@ packages: integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, } + quick-format-unescaped@4.0.4: + resolution: + { + integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==, + } + + ramda@0.28.0: + resolution: + { + integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==, + } + + read-cache@1.0.0: + resolution: + { + integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==, + } + + readable-stream@4.5.2: + resolution: + { + integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + readdirp@3.6.0: resolution: { @@ -2511,6 +3652,19 @@ packages: } engines: { node: ">= 14.16.0" } + real-require@0.2.0: + resolution: + { + integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==, + } + engines: { node: ">= 12.13.0" } + + regex@4.3.3: + resolution: + { + integrity: sha512-r/AadFO7owAq1QJVeZ/nq9jNS1vyZt+6t1p/E59B56Rn2GCya+gr1KSyOzNL/er+r+B7phv5jG2xU2Nz1YkmJg==, + } + require-directory@2.1.1: resolution: { @@ -2524,12 +3678,19 @@ packages: integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, } - restore-cursor@4.0.0: + resolve@1.22.8: resolution: { - integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==, + integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + hasBin: true + + restore-cursor@5.1.0: + resolution: + { + integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==, + } + engines: { node: ">=18" } reusify@1.0.4: resolution: @@ -2538,34 +3699,63 @@ packages: } engines: { iojs: ">=1.0.0", node: ">=0.10.0" } - rollup@4.21.2: + rfdc@1.4.1: resolution: { - integrity: sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==, + integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==, + } + + robust-predicates@3.0.2: + resolution: + { + integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==, + } + + rollup@4.24.0: + resolution: + { + integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==, } engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true + roughjs@4.6.6: + resolution: + { + integrity: sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==, + } + run-parallel@1.2.0: resolution: { integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, } + rw@1.3.3: + resolution: + { + integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==, + } + + safe-buffer@5.2.1: + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } + + safe-stable-stringify@2.5.0: + resolution: + { + integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==, + } + engines: { node: ">=10" } + safer-buffer@2.1.2: resolution: { integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, } - sass@1.77.8: - resolution: - { - integrity: sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==, - } - engines: { node: ">=14.0.0" } - hasBin: true - sax@1.3.0: resolution: { @@ -2579,14 +3769,6 @@ packages: } engines: { node: ">=4" } - semver@7.6.3: - resolution: - { - integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==, - } - engines: { node: ">=10" } - hasBin: true - set-blocking@2.0.0: resolution: { @@ -2607,16 +3789,10 @@ packages: } engines: { node: ">=8" } - shiki@1.10.3: + shiki@1.22.0: resolution: { - integrity: sha512-eneCLncGuvPdTutJuLyUGS8QNPAVFO5Trvld2wgEq1e002mwctAhJKeMGWtWVXOIEzmlcLRqcgPSorR6AVzOmQ==, - } - - signal-exit@3.0.7: - resolution: - { - integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, + integrity: sha512-/t5LlhNs+UOKQCYBtl5ZsH/Vclz73GIqT2yQsCBygr8L/ppTdmpL4w3kPLoZJbMKVWtoG77Ue1feOjZfDxvMkw==, } signal-exit@4.1.0: @@ -2626,6 +3802,12 @@ packages: } engines: { node: ">=14" } + simple-swizzle@0.2.2: + resolution: + { + integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, + } + sitemap@8.0.0: resolution: { @@ -2641,6 +3823,12 @@ packages: } engines: { node: ">=14.16" } + sonic-boom@3.8.1: + resolution: + { + integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==, + } + source-map-js@1.2.0: resolution: { @@ -2655,6 +3843,26 @@ packages: } engines: { node: ">=0.10.0" } + space-separated-tokens@2.0.2: + resolution: + { + integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, + } + + speakingurl@14.0.1: + resolution: + { + integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==, + } + engines: { node: ">=0.10.0" } + + split2@4.2.0: + resolution: + { + integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, + } + engines: { node: ">= 10.x" } + sprintf-js@1.0.3: resolution: { @@ -2675,13 +3883,32 @@ packages: } engines: { node: ">=8" } - string-width@7.1.0: + string-width@5.1.2: resolution: { - integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==, + integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, + } + engines: { node: ">=12" } + + string-width@7.2.0: + resolution: + { + integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, } engines: { node: ">=18" } + string_decoder@1.3.0: + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, + } + + stringify-entities@4.0.4: + resolution: + { + integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==, + } + strip-ansi@6.0.1: resolution: { @@ -2710,6 +3937,67 @@ packages: } engines: { node: ">=18" } + stylis@4.3.4: + resolution: + { + integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==, + } + + sucrase@3.35.0: + resolution: + { + integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==, + } + engines: { node: ">=16 || 14 >=14.17" } + hasBin: true + + superjson@2.2.1: + resolution: + { + integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==, + } + engines: { node: ">=16" } + + supports-preserve-symlinks-flag@1.0.0: + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: { node: ">= 0.4" } + + tailwindcss@3.4.14: + resolution: + { + integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==, + } + engines: { node: ">=14.0.0" } + hasBin: true + + thenify-all@1.6.0: + resolution: + { + integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==, + } + engines: { node: ">=0.8" } + + thenify@3.3.1: + resolution: + { + integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==, + } + + thread-stream@2.7.0: + resolution: + { + integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==, + } + + tinyexec@0.3.0: + resolution: + { + integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==, + } + to-fast-properties@2.0.0: resolution: { @@ -2724,12 +4012,43 @@ packages: } engines: { node: ">=8.0" } + trim-lines@3.0.1: + resolution: + { + integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==, + } + + ts-dedent@2.2.0: + resolution: + { + integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==, + } + engines: { node: ">=6.10" } + + ts-interface-checker@0.1.13: + resolution: + { + integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==, + } + + ts-toolbelt@6.15.5: + resolution: + { + integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==, + } + uc.micro@2.1.0: resolution: { integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==, } + ufo@1.5.4: + resolution: + { + integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==, + } + undici-types@5.26.5: resolution: { @@ -2750,6 +4069,43 @@ packages: } engines: { node: ">=18" } + unicorn-magic@0.3.0: + resolution: + { + integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==, + } + engines: { node: ">=18" } + + unist-util-is@6.0.0: + resolution: + { + integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==, + } + + unist-util-position@5.0.0: + resolution: + { + integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==, + } + + unist-util-stringify-position@4.0.0: + resolution: + { + integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==, + } + + unist-util-visit-parents@6.0.1: + resolution: + { + integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, + } + + unist-util-visit@5.0.0: + resolution: + { + integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==, + } + universalify@2.0.1: resolution: { @@ -2773,10 +4129,35 @@ packages: peerDependencies: browserslist: ">= 4.21.0" - vite@5.4.6: + util-deprecate@1.0.2: resolution: { - integrity: sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==, + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } + + uuid@9.0.1: + resolution: + { + integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==, + } + hasBin: true + + vfile-message@4.0.2: + resolution: + { + integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==, + } + + vfile@6.0.3: + resolution: + { + integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==, + } + + vite@5.4.9: + resolution: + { + integrity: sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==, } engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true @@ -2807,6 +4188,44 @@ packages: terser: optional: true + vscode-jsonrpc@8.2.0: + resolution: + { + integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==, + } + engines: { node: ">=14.0.0" } + + vscode-languageserver-protocol@3.17.5: + resolution: + { + integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==, + } + + vscode-languageserver-textdocument@1.0.12: + resolution: + { + integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==, + } + + vscode-languageserver-types@3.17.5: + resolution: + { + integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==, + } + + vscode-languageserver@9.0.1: + resolution: + { + integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==, + } + hasBin: true + + vscode-uri@3.0.8: + resolution: + { + integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==, + } + vue-demi@0.14.10: resolution: { @@ -2821,24 +4240,10 @@ packages: "@vue/composition-api": optional: true - vue-demi@0.14.8: + vue-router@4.4.5: resolution: { - integrity: sha512-Uuqnk9YE9SsWeReYqK2alDI5YzciATE0r2SkA6iMAtuXvNTMNACJLJEXNXaEy94ECuBe4Sk6RzRU80kjdbIo1Q==, - } - engines: { node: ">=12" } - hasBin: true - peerDependencies: - "@vue/composition-api": ^1.0.0-rc.1 - vue: ^3.0.0-0 || ^2.6.0 - peerDependenciesMeta: - "@vue/composition-api": - optional: true - - vue-router@4.4.3: - resolution: - { - integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==, + integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==, } peerDependencies: vue: ^3.2.0 @@ -2865,10 +4270,10 @@ packages: typescript: optional: true - vuepress-plugin-components@2.0.0-rc.52: + vuepress-plugin-components@2.0.0-rc.57: resolution: { - integrity: sha512-mQRi0XzdUD025ewjBXlhlh948ReOcohMlBEdkxQVNZaLa5OM2mtZm8TJvN1MkSKeiTMZjtzARO1AJNGyhZWFpw==, + integrity: sha512-/YEQS46Y87Sqn55PAhBaJI31J221qq+twpl62u7yLgVZmtE1P6ibnRCSqzsu/D8OscMjDSUlN4yFuuVZvdtCqA==, } engines: { node: ">=18.19.0", npm: ">=8", pnpm: ">=7", yarn: ">=2" } peerDependencies: @@ -2876,9 +4281,11 @@ packages: dashjs: 4.7.4 hls.js: ^1.4.12 mpegts.js: ^1.7.3 - sass-loader: ^14.0.0 - vidstack: ^1.11.21 - vuepress: 2.0.0-rc.14 + sass: ^1.79.3 + sass-embedded: ^1.79.3 + sass-loader: ^16.0.2 + vidstack: ^1.12.9 + vuepress: 2.0.0-rc.17 peerDependenciesMeta: artplayer: optional: true @@ -2888,66 +4295,15 @@ packages: optional: true mpegts.js: optional: true + sass: + optional: true + sass-embedded: + optional: true sass-loader: optional: true vidstack: optional: true - vuepress-plugin-md-enhance@2.0.0-rc.52: - resolution: - { - integrity: sha512-4lED2FSelBbtBVE5Hon9FQpCgmG1xQbi3+rFrj/Aa1VF+8PTjqFdG4NkdRTx94beOeu/A5jvWp5TFWMbaXD7hA==, - } - engines: { node: ">=18.19.0", npm: ">=8", pnpm: ">=7", yarn: ">=2" } - peerDependencies: - "@types/reveal.js": ^5.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.17.0 - markmap-toolbar: ^0.17.0 - markmap-view: ^0.17.0 - mathjax-full: ^3.2.2 - mermaid: ^10.8.0 - reveal.js: ^5.0.0 - sandpack-vue3: ^3.0.0 - sass-loader: ^14.0.0 - vuepress: 2.0.0-rc.14 - peerDependenciesMeta: - "@types/reveal.js": - optional: true - "@vue/repl": - optional: true - chart.js: - optional: true - echarts: - optional: true - flowchart.ts: - optional: true - katex: - optional: true - kotlin-playground: - optional: true - markmap-lib: - optional: true - markmap-toolbar: - optional: true - markmap-view: - optional: true - mathjax-full: - optional: true - mermaid: - optional: true - reveal.js: - optional: true - sandpack-vue3: - optional: true - sass-loader: - optional: true - vuepress-plugin-md-enhance@2.0.0-rc.57: resolution: { @@ -2997,15 +4353,6 @@ packages: sass-loader: optional: true - vuepress-shared@2.0.0-rc.52: - resolution: - { - integrity: sha512-/Y5Qpl8ueqiggqFAyeJ9U2PhLyE7O5hl3r1k4vER/gKpaeYIqmPxf0ToJMFa3uc4luoNEe/9NJb6LJCrcPjFEA==, - } - engines: { node: ">=18.19.0", npm: ">=8", pnpm: ">=7", yarn: ">=2" } - peerDependencies: - vuepress: 2.0.0-rc.14 - vuepress-shared@2.0.0-rc.57: resolution: { @@ -3015,23 +4362,25 @@ packages: peerDependencies: vuepress: 2.0.0-rc.17 - vuepress-theme-hope@2.0.0-rc.52: + vuepress-theme-hope@2.0.0-rc.58: resolution: { - integrity: sha512-QCfIxIQCFOUpJsOUEPi1QtLPUbKjA0alvjb5JJPMGvHqqP2HHOtSuTdoODqy1qWPUg2/GBR/OLjfpqs14joP+w==, + integrity: sha512-7C2UEhtNm1+ILoDLXyS+wNDz3Exjq6dwJnKbMIB1JnyZI+90kTmfZ/MtK1vCXBsA8Y4lbZE6dHxbhDLowwHypw==, } engines: { node: ">=18.19.0", npm: ">=8", pnpm: ">=7", yarn: ">=2" } peerDependencies: - "@vuepress/plugin-docsearch": 2.0.0-rc.39 - "@vuepress/plugin-feed": 2.0.0-rc.39 - "@vuepress/plugin-prismjs": 2.0.0-rc.39 - "@vuepress/plugin-pwa": 2.0.0-rc.39 - "@vuepress/plugin-redirect": 2.0.0-rc.39 - "@vuepress/plugin-search": 2.0.0-rc.39 + "@vuepress/plugin-docsearch": 2.0.0-rc.52 + "@vuepress/plugin-feed": 2.0.0-rc.52 + "@vuepress/plugin-prismjs": 2.0.0-rc.52 + "@vuepress/plugin-pwa": 2.0.0-rc.52 + "@vuepress/plugin-revealjs": 2.0.0-rc.52 + "@vuepress/plugin-search": 2.0.0-rc.52 nodejs-jieba: ^0.1.2 - sass-loader: ^14.0.0 - vuepress: 2.0.0-rc.14 - vuepress-plugin-search-pro: 2.0.0-rc.52 + sass: ^1.79.3 + sass-embedded: ^1.79.3 + sass-loader: ^16.0.2 + vuepress: 2.0.0-rc.17 + vuepress-plugin-search-pro: 2.0.0-rc.57 peerDependenciesMeta: "@vuepress/plugin-docsearch": optional: true @@ -3041,40 +4390,52 @@ packages: optional: true "@vuepress/plugin-pwa": optional: true - "@vuepress/plugin-redirect": + "@vuepress/plugin-revealjs": optional: true "@vuepress/plugin-search": optional: true nodejs-jieba: optional: true + sass: + optional: true + sass-embedded: + optional: true sass-loader: optional: true vuepress-plugin-search-pro: optional: true - vuepress@2.0.0-rc.15: + vuepress@2.0.0-rc.17: resolution: { - integrity: sha512-8DRaONwIaG0Jn3P8OKBysTfcO1yPO1UwfUUNQjbToLrbYSsGFiFwpuTMSL3HbdaX7ou6TuJHgK/wuslsUV8jCQ==, + integrity: sha512-KUWHbB4c9bEeFa8Zx9OAz0e1n8Ae9bEvu0T+Yuhm73cnLONxvhLveBdaLjCwrQZC78auP1L5xL8R1voq0ahXYQ==, } - engines: { node: ">=18.16.0" } + engines: { node: ^18.19.0 || >=20.4.0 } hasBin: true peerDependencies: - "@vuepress/bundler-vite": 2.0.0-rc.15 - "@vuepress/bundler-webpack": 2.0.0-rc.15 - vue: ^3.4.0 + "@vuepress/bundler-vite": 2.0.0-rc.17 + "@vuepress/bundler-webpack": 2.0.0-rc.17 + vue: ^3.5.0 peerDependenciesMeta: "@vuepress/bundler-vite": optional: true "@vuepress/bundler-webpack": optional: true - watermark-js-plus@1.5.2: + vuex@4.1.0: resolution: { - integrity: sha512-iqgSeAfwnCKNpClmyjl7rhj0SEbt8j+MqZc6C3YKY5xjMdxlRMIOcnYdBYBiznzILVyJ6YbwxD5OMajK1D+uCA==, + integrity: sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ==, } - engines: { node: ">=16.0.0" } + peerDependencies: + vue: ^3.2.0 + + watermark-js-plus@1.5.7: + resolution: + { + integrity: sha512-KaQEUnvBX5em2hBeuKcpAASpV+sO1j8NbXY7FL7jb0w1TCKmMSyn8nkj2e+KeleuQ1iwyXHEMFdSWXDIQsACYQ==, + } + engines: { node: ">=20.0.0" } whatwg-encoding@3.1.1: resolution: @@ -3111,12 +4472,34 @@ packages: } engines: { node: ">=8" } + wrap-ansi@7.0.0: + resolution: + { + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, + } + engines: { node: ">=10" } + + wrap-ansi@8.1.0: + resolution: + { + integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, + } + engines: { node: ">=12" } + y18n@4.0.3: resolution: { integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, } + yaml@2.6.0: + resolution: + { + integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==, + } + engines: { node: ">= 14" } + hasBin: true + yargs-parser@18.1.3: resolution: { @@ -3138,7 +4521,22 @@ packages: } engines: { node: ">=18" } + zwitch@2.0.4: + resolution: + { + integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, + } + snapshots: + "@alloc/quick-lru@5.2.0": {} + + "@antfu/install-pkg@0.4.1": + dependencies: + package-manager-detector: 0.2.2 + tinyexec: 0.3.0 + + "@antfu/utils@0.7.10": {} + "@babel/helper-string-parser@7.24.8": {} "@babel/helper-validator-identifier@7.24.7": {} @@ -3153,6 +4551,25 @@ snapshots: "@babel/helper-validator-identifier": 7.24.7 to-fast-properties: 2.0.0 + "@braintree/sanitize-url@7.1.0": {} + + "@chevrotain/cst-dts-gen@11.0.3": + dependencies: + "@chevrotain/gast": 11.0.3 + "@chevrotain/types": 11.0.3 + lodash-es: 4.17.21 + + "@chevrotain/gast@11.0.3": + dependencies: + "@chevrotain/types": 11.0.3 + lodash-es: 4.17.21 + + "@chevrotain/regexp-to-ast@11.0.3": {} + + "@chevrotain/types@11.0.3": {} + + "@chevrotain/utils@11.0.3": {} + "@esbuild/aix-ppc64@0.21.5": optional: true @@ -3222,8 +4639,85 @@ snapshots: "@esbuild/win32-x64@0.21.5": optional: true + "@floating-ui/core@1.6.8": + dependencies: + "@floating-ui/utils": 0.2.8 + + "@floating-ui/dom@1.6.11": + dependencies: + "@floating-ui/core": 1.6.8 + "@floating-ui/utils": 0.2.8 + + "@floating-ui/utils@0.2.8": {} + + "@floating-ui/vue@1.1.5(vue@3.5.12)": + dependencies: + "@floating-ui/dom": 1.6.11 + "@floating-ui/utils": 0.2.8 + vue-demi: 0.14.10(vue@3.5.12) + transitivePeerDependencies: + - "@vue/composition-api" + - vue + + "@headlessui-float/vue@0.14.4(@headlessui/vue@1.7.23(vue@3.5.12))(vue@3.5.12)": + dependencies: + "@floating-ui/core": 1.6.8 + "@floating-ui/dom": 1.6.11 + "@floating-ui/vue": 1.1.5(vue@3.5.12) + "@headlessui/vue": 1.7.23(vue@3.5.12) + vue: 3.5.12 + transitivePeerDependencies: + - "@vue/composition-api" + + "@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.14)": + dependencies: + tailwindcss: 3.4.14 + + "@headlessui/vue@1.7.23(vue@3.5.12)": + dependencies: + "@tanstack/vue-virtual": 3.10.8(vue@3.5.12) + vue: 3.5.12 + + "@iconify/types@2.0.0": {} + + "@iconify/utils@2.1.33": + dependencies: + "@antfu/install-pkg": 0.4.1 + "@antfu/utils": 0.7.10 + "@iconify/types": 2.0.0 + debug: 4.3.6 + kolorist: 1.8.0 + local-pkg: 0.5.0 + mlly: 1.7.2 + transitivePeerDependencies: + - supports-color + + "@isaacs/cliui@8.0.2": + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + "@jridgewell/gen-mapping@0.3.5": + dependencies: + "@jridgewell/set-array": 1.2.1 + "@jridgewell/sourcemap-codec": 1.5.0 + "@jridgewell/trace-mapping": 0.3.25 + + "@jridgewell/resolve-uri@3.1.2": {} + + "@jridgewell/set-array@1.2.1": {} + "@jridgewell/sourcemap-codec@1.5.0": {} + "@jridgewell/trace-mapping@0.3.25": + dependencies: + "@jridgewell/resolve-uri": 3.1.2 + "@jridgewell/sourcemap-codec": 1.5.0 + "@lit-labs/ssr-dom-shim@1.2.0": {} "@lit/reactive-element@2.0.4": @@ -3277,25 +4771,12 @@ snapshots: "@mdit-vue/types@2.1.0": {} - "@mdit/plugin-alert@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-alert@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-align@0.12.0(markdown-it@14.1.0)": - dependencies: - "@mdit/plugin-container": 0.12.0(markdown-it@14.1.0) - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-align@0.13.1(markdown-it@14.1.0)": dependencies: "@mdit/plugin-container": 0.13.1(markdown-it@14.1.0) @@ -3303,83 +4784,53 @@ snapshots: optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-attrs@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-attrs@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-container@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-container@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-demo@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-demo@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-figure@0.12.0(markdown-it@14.1.0)": + "@mdit/plugin-figure@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-footnote@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - markdown-it: 14.1.0 - "@mdit/plugin-footnote@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 markdown-it: 14.1.0 - "@mdit/plugin-img-lazyload@0.12.0(markdown-it@14.1.0)": + "@mdit/plugin-img-lazyload@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-img-mark@0.12.0(markdown-it@14.1.0)": + "@mdit/plugin-img-mark@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-img-size@0.12.0(markdown-it@14.1.0)": + "@mdit/plugin-img-size@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-include@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - upath: 2.0.1 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-include@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 @@ -3387,18 +4838,13 @@ snapshots: optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-katex-slim@0.12.0(markdown-it@14.1.0)": + "@mdit/plugin-katex-slim@0.13.1(katex@0.16.11)(markdown-it@14.1.0)": dependencies: - "@mdit/plugin-tex": 0.12.0(markdown-it@14.1.0) + "@mdit/plugin-tex": 0.13.1(markdown-it@14.1.0) "@types/katex": 0.16.7 "@types/markdown-it": 14.1.2 optionalDependencies: - markdown-it: 14.1.0 - - "@mdit/plugin-mark@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: + katex: 0.16.11 markdown-it: 14.1.0 "@mdit/plugin-mark@0.13.1(markdown-it@14.1.0)": @@ -3407,21 +4853,14 @@ snapshots: optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-mathjax-slim@0.12.0(markdown-it@14.1.0)": + "@mdit/plugin-mathjax-slim@0.13.1(markdown-it@14.1.0)": dependencies: - "@mdit/plugin-tex": 0.12.0(markdown-it@14.1.0) + "@mdit/plugin-tex": 0.13.1(markdown-it@14.1.0) "@types/markdown-it": 14.1.2 upath: 2.0.1 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-plantuml@0.12.0(markdown-it@14.1.0)": - dependencies: - "@mdit/plugin-uml": 0.12.0(markdown-it@14.1.0) - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-plantuml@0.13.1(markdown-it@14.1.0)": dependencies: "@mdit/plugin-uml": 0.13.1(markdown-it@14.1.0) @@ -3429,61 +4868,31 @@ snapshots: optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-spoiler@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-spoiler@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-stylize@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-stylize@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-sub@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-sub@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-sup@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - "@mdit/plugin-sup@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-tab@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - - "@mdit/plugin-tasklist@0.12.0(markdown-it@14.1.0)": + "@mdit/plugin-tab@0.13.2(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: @@ -3495,13 +4904,7 @@ snapshots: optionalDependencies: markdown-it: 14.1.0 - "@mdit/plugin-tex@0.12.0(markdown-it@14.1.0)": - dependencies: - "@types/markdown-it": 14.1.2 - optionalDependencies: - markdown-it: 14.1.0 - - "@mdit/plugin-uml@0.12.0(markdown-it@14.1.0)": + "@mdit/plugin-tex@0.13.1(markdown-it@14.1.0)": dependencies: "@types/markdown-it": 14.1.2 optionalDependencies: @@ -3513,6 +4916,19 @@ snapshots: optionalDependencies: markdown-it: 14.1.0 + "@mermaid-js/mermaid-zenuml@0.2.0(mermaid@11.3.0)": + dependencies: + "@zenuml/core": 3.24.12 + mermaid: 11.3.0 + transitivePeerDependencies: + - "@vue/composition-api" + - ts-node + - typescript + + "@mermaid-js/parser@0.3.0": + dependencies: + langium: 3.0.0 + "@nodelib/fs.scandir@2.1.5": dependencies: "@nodelib/fs.stat": 2.0.5 @@ -3525,63 +4941,89 @@ snapshots: "@nodelib/fs.scandir": 2.1.5 fastq: 1.17.1 - "@rollup/rollup-android-arm-eabi@4.21.2": + "@pkgjs/parseargs@0.11.0": optional: true - "@rollup/rollup-android-arm64@4.21.2": + "@rollup/rollup-android-arm-eabi@4.24.0": optional: true - "@rollup/rollup-darwin-arm64@4.21.2": + "@rollup/rollup-android-arm64@4.24.0": optional: true - "@rollup/rollup-darwin-x64@4.21.2": + "@rollup/rollup-darwin-arm64@4.24.0": optional: true - "@rollup/rollup-linux-arm-gnueabihf@4.21.2": + "@rollup/rollup-darwin-x64@4.24.0": optional: true - "@rollup/rollup-linux-arm-musleabihf@4.21.2": + "@rollup/rollup-linux-arm-gnueabihf@4.24.0": optional: true - "@rollup/rollup-linux-arm64-gnu@4.21.2": + "@rollup/rollup-linux-arm-musleabihf@4.24.0": optional: true - "@rollup/rollup-linux-arm64-musl@4.21.2": + "@rollup/rollup-linux-arm64-gnu@4.24.0": optional: true - "@rollup/rollup-linux-powerpc64le-gnu@4.21.2": + "@rollup/rollup-linux-arm64-musl@4.24.0": optional: true - "@rollup/rollup-linux-riscv64-gnu@4.21.2": + "@rollup/rollup-linux-powerpc64le-gnu@4.24.0": optional: true - "@rollup/rollup-linux-s390x-gnu@4.21.2": + "@rollup/rollup-linux-riscv64-gnu@4.24.0": optional: true - "@rollup/rollup-linux-x64-gnu@4.21.2": + "@rollup/rollup-linux-s390x-gnu@4.24.0": optional: true - "@rollup/rollup-linux-x64-musl@4.21.2": + "@rollup/rollup-linux-x64-gnu@4.24.0": optional: true - "@rollup/rollup-win32-arm64-msvc@4.21.2": + "@rollup/rollup-linux-x64-musl@4.24.0": optional: true - "@rollup/rollup-win32-ia32-msvc@4.21.2": + "@rollup/rollup-win32-arm64-msvc@4.24.0": optional: true - "@rollup/rollup-win32-x64-msvc@4.21.2": + "@rollup/rollup-win32-ia32-msvc@4.24.0": + optional: true + + "@rollup/rollup-win32-x64-msvc@4.24.0": optional: true "@sec-ant/readable-stream@0.4.1": {} - "@shikijs/core@1.10.3": + "@shikijs/core@1.22.0": dependencies: + "@shikijs/engine-javascript": 1.22.0 + "@shikijs/engine-oniguruma": 1.22.0 + "@shikijs/types": 1.22.0 + "@shikijs/vscode-textmate": 9.3.0 + "@types/hast": 3.0.4 + hast-util-to-html: 9.0.3 + + "@shikijs/engine-javascript@1.22.0": + dependencies: + "@shikijs/types": 1.22.0 + "@shikijs/vscode-textmate": 9.3.0 + oniguruma-to-js: 0.4.3 + + "@shikijs/engine-oniguruma@1.22.0": + dependencies: + "@shikijs/types": 1.22.0 + "@shikijs/vscode-textmate": 9.3.0 + + "@shikijs/transformers@1.22.0": + dependencies: + shiki: 1.22.0 + + "@shikijs/types@1.22.0": + dependencies: + "@shikijs/vscode-textmate": 9.3.0 "@types/hast": 3.0.4 - "@shikijs/transformers@1.10.3": - dependencies: - shiki: 1.10.3 + "@shikijs/vscode-textmate@9.3.0": {} "@sindresorhus/merge-streams@2.3.0": {} @@ -3589,11 +5031,20 @@ snapshots: "@stackblitz/sdk@1.11.0": {} + "@tanstack/virtual-core@3.10.8": {} + + "@tanstack/vue-virtual@3.10.8(vue@3.5.12)": + dependencies: + "@tanstack/virtual-core": 3.10.8 + vue: 3.5.12 + + "@types/assert@1.5.10": {} + "@types/debug@4.1.12": dependencies: "@types/ms": 0.7.34 - "@types/estree@1.0.5": {} + "@types/estree@1.0.6": {} "@types/fs-extra@11.0.4": dependencies: @@ -3623,6 +5074,10 @@ snapshots: "@types/linkify-it": 5.0.0 "@types/mdurl": 2.0.0 + "@types/mdast@4.0.4": + dependencies: + "@types/unist": 3.0.2 + "@types/mdurl@2.0.0": {} "@types/ms@0.7.34": {} @@ -3633,6 +5088,10 @@ snapshots: dependencies: undici-types: 5.26.5 + "@types/ramda@0.28.25": + dependencies: + ts-toolbelt: 6.15.5 + "@types/sax@1.2.7": dependencies: "@types/node": 20.11.28 @@ -3643,10 +5102,19 @@ snapshots: "@types/web-bluetooth@0.0.20": {} - "@vitejs/plugin-vue@5.1.3(vite@5.4.6(@types/node@20.11.28))(vue@3.5.6)": + "@ungap/structured-clone@1.2.0": {} + + "@vitejs/plugin-vue@5.1.4(vite@5.4.9(@types/node@20.11.28))(vue@3.5.12)": dependencies: - vite: 5.4.6(@types/node@20.11.28) - vue: 3.5.6 + vite: 5.4.9(@types/node@20.11.28) + vue: 3.5.12 + + "@vue/compat@3.5.12(vue@3.5.12)": + dependencies: + "@babel/parser": 7.25.6 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + vue: 3.5.12 "@vue/compiler-core@3.5.12": dependencies: @@ -3708,7 +5176,25 @@ snapshots: "@vue/compiler-dom": 3.5.6 "@vue/shared": 3.5.6 - "@vue/devtools-api@6.6.3": {} + "@vue/devtools-api@6.6.4": {} + + "@vue/devtools-api@7.4.6": + dependencies: + "@vue/devtools-kit": 7.4.6 + + "@vue/devtools-kit@7.4.6": + dependencies: + "@vue/devtools-shared": 7.4.6 + birpc: 0.2.19 + hookable: 5.5.3 + mitt: 3.0.1 + perfect-debounce: 1.0.0 + speakingurl: 14.0.1 + superjson: 2.2.1 + + "@vue/devtools-shared@7.4.6": + dependencies: + rfdc: 1.4.1 "@vue/reactivity@3.5.12": dependencies: @@ -3756,25 +5242,24 @@ snapshots: "@vue/shared@3.5.12": {} - "@vue/shared@3.5.3": {} - "@vue/shared@3.5.6": {} - "@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28)": + "@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0)": dependencies: - "@vitejs/plugin-vue": 5.1.3(vite@5.4.6(@types/node@20.11.28))(vue@3.5.6) - "@vuepress/client": 2.0.0-rc.15 - "@vuepress/core": 2.0.0-rc.15 - "@vuepress/shared": 2.0.0-rc.15 - "@vuepress/utils": 2.0.0-rc.15 - autoprefixer: 10.4.20(postcss@8.4.44) + "@vitejs/plugin-vue": 5.1.4(vite@5.4.9(@types/node@20.11.28))(vue@3.5.12) + "@vuepress/bundlerutils": 2.0.0-rc.17 + "@vuepress/client": 2.0.0-rc.17 + "@vuepress/core": 2.0.0-rc.17 + "@vuepress/shared": 2.0.0-rc.17 + "@vuepress/utils": 2.0.0-rc.17 + autoprefixer: 10.4.20(postcss@8.4.47) connect-history-api-fallback: 2.0.0 - postcss: 8.4.44 - postcss-load-config: 6.0.1(postcss@8.4.44) - rollup: 4.21.2 - vite: 5.4.6(@types/node@20.11.28) - vue: 3.5.6 - vue-router: 4.4.3(vue@3.5.6) + postcss: 8.4.47 + postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.47)(yaml@2.6.0) + rollup: 4.24.0 + vite: 5.4.9(@types/node@20.11.28) + vue: 3.5.12 + vue-router: 4.4.5(vue@3.5.12) transitivePeerDependencies: - "@types/node" - jiti @@ -3790,51 +5275,52 @@ snapshots: - typescript - yaml - "@vuepress/cli@2.0.0-rc.15": + "@vuepress/bundlerutils@2.0.0-rc.17": dependencies: - "@vuepress/core": 2.0.0-rc.15 - "@vuepress/shared": 2.0.0-rc.15 - "@vuepress/utils": 2.0.0-rc.15 + "@vuepress/client": 2.0.0-rc.17 + "@vuepress/core": 2.0.0-rc.17 + "@vuepress/shared": 2.0.0-rc.17 + "@vuepress/utils": 2.0.0-rc.17 + vue: 3.5.12 + vue-router: 4.4.5(vue@3.5.12) + transitivePeerDependencies: + - supports-color + - typescript + + "@vuepress/cli@2.0.0-rc.17": + dependencies: + "@vuepress/core": 2.0.0-rc.17 + "@vuepress/shared": 2.0.0-rc.17 + "@vuepress/utils": 2.0.0-rc.17 cac: 6.7.14 chokidar: 3.6.0 - envinfo: 7.13.0 + envinfo: 7.14.0 esbuild: 0.21.5 transitivePeerDependencies: - supports-color - typescript - "@vuepress/client@2.0.0-rc.15": + "@vuepress/client@2.0.0-rc.17": dependencies: - "@vue/devtools-api": 6.6.3 - "@vuepress/shared": 2.0.0-rc.15 - vue: 3.5.6 - vue-router: 4.4.3(vue@3.5.6) + "@vue/devtools-api": 7.4.6 + "@vuepress/shared": 2.0.0-rc.17 + vue: 3.5.12 + vue-router: 4.4.5(vue@3.5.12) transitivePeerDependencies: - typescript - "@vuepress/core@2.0.0-rc.15": + "@vuepress/core@2.0.0-rc.17": dependencies: - "@vuepress/client": 2.0.0-rc.15 - "@vuepress/markdown": 2.0.0-rc.15 - "@vuepress/shared": 2.0.0-rc.15 - "@vuepress/utils": 2.0.0-rc.15 - vue: 3.5.6 + "@vuepress/client": 2.0.0-rc.17 + "@vuepress/markdown": 2.0.0-rc.17 + "@vuepress/shared": 2.0.0-rc.17 + "@vuepress/utils": 2.0.0-rc.17 + vue: 3.5.12 transitivePeerDependencies: - supports-color - typescript - "@vuepress/helper@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": - dependencies: - "@vue/shared": 3.5.3 - cheerio: 1.0.0-rc.12 - fflate: 0.8.2 - gray-matter: 4.0.3 - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - transitivePeerDependencies: - - typescript - - "@vuepress/helper@2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/helper@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: "@vue/shared": 3.5.12 "@vueuse/core": 11.1.0(vue@3.5.12) @@ -3842,16 +5328,18 @@ snapshots: fflate: 0.8.2 gray-matter: 4.0.3 vue: 3.5.12 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - "@vue/composition-api" - typescript - "@vuepress/highlighter-helper@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/highlighter-helper@2.0.0-rc.52(@vueuse/core@11.1.0(vue@3.5.12))(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + optionalDependencies: + "@vueuse/core": 11.1.0(vue@3.5.12) - "@vuepress/markdown@2.0.0-rc.15": + "@vuepress/markdown@2.0.0-rc.17": dependencies: "@mdit-vue/plugin-component": 2.1.3 "@mdit-vue/plugin-frontmatter": 2.1.3 @@ -3863,226 +5351,288 @@ snapshots: "@mdit-vue/types": 2.1.0 "@types/markdown-it": 14.1.2 "@types/markdown-it-emoji": 3.0.1 - "@vuepress/shared": 2.0.0-rc.15 - "@vuepress/utils": 2.0.0-rc.15 + "@vuepress/shared": 2.0.0-rc.17 + "@vuepress/utils": 2.0.0-rc.17 markdown-it: 14.1.0 - markdown-it-anchor: 9.0.1(@types/markdown-it@14.1.2)(markdown-it@14.1.0) + markdown-it-anchor: 9.2.0(@types/markdown-it@14.1.2)(markdown-it@14.1.0) markdown-it-emoji: 3.0.0 mdurl: 2.0.0 transitivePeerDependencies: - supports-color - "@vuepress/plugin-active-header-links@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-active-header-links@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vueuse/core": 10.11.0(vue@3.5.6) - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vueuse/core": 11.1.0(vue@3.5.12) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - "@vue/composition-api" - typescript - "@vuepress/plugin-back-to-top@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-back-to-top@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vueuse/core": 10.11.0(vue@3.5.6) - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - "@vue/composition-api" - typescript - "@vuepress/plugin-blog@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-blog@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) chokidar: 3.6.0 - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: + - "@vue/composition-api" - typescript - "@vuepress/plugin-catalog@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-catalog@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: + - "@vue/composition-api" - typescript - "@vuepress/plugin-comment@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-comment@2.0.0-rc.53(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) giscus: 1.5.0 - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - transitivePeerDependencies: - - typescript - - "@vuepress/plugin-copy-code@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": - dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vueuse/core": 10.11.0(vue@3.5.6) - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - "@vue/composition-api" - typescript - "@vuepress/plugin-copyright@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-copy-code@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vueuse/core": 10.11.0(vue@3.5.6) - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - "@vue/composition-api" - typescript - "@vuepress/plugin-git@2.0.0-rc.38(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-copyright@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - execa: 9.3.0 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - - "@vuepress/plugin-links-check@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": - dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - transitivePeerDependencies: - - typescript - - "@vuepress/plugin-notice@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": - dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vueuse/core": 10.11.0(vue@3.5.6) - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - "@vue/composition-api" - typescript - "@vuepress/plugin-nprogress@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-git@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + execa: 9.4.0 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + + "@vuepress/plugin-links-check@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": + dependencies: + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: + - "@vue/composition-api" - typescript - "@vuepress/plugin-photo-swipe@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-markdown-hint@2.0.0-rc.52(markdown-it@14.1.0)(vue@3.5.12)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vueuse/core": 10.11.0(vue@3.5.6) + "@mdit/plugin-alert": 0.13.1(markdown-it@14.1.0) + "@mdit/plugin-container": 0.13.1(markdown-it@14.1.0) + "@types/markdown-it": 14.1.2 + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + transitivePeerDependencies: + - "@vue/composition-api" + - markdown-it + - typescript + - vue + + "@vuepress/plugin-markdown-image@2.0.0-rc.52(markdown-it@14.1.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": + dependencies: + "@mdit/plugin-figure": 0.13.1(markdown-it@14.1.0) + "@mdit/plugin-img-lazyload": 0.13.1(markdown-it@14.1.0) + "@mdit/plugin-img-mark": 0.13.1(markdown-it@14.1.0) + "@mdit/plugin-img-size": 0.13.1(markdown-it@14.1.0) + "@types/markdown-it": 14.1.2 + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + transitivePeerDependencies: + - "@vue/composition-api" + - markdown-it + - typescript + + "@vuepress/plugin-markdown-math@2.0.0-rc.52(katex@0.16.11)(markdown-it@14.1.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": + dependencies: + "@mdit/plugin-katex-slim": 0.13.1(katex@0.16.11)(markdown-it@14.1.0) + "@mdit/plugin-mathjax-slim": 0.13.1(markdown-it@14.1.0) + "@types/markdown-it": 14.1.2 + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + optionalDependencies: + katex: 0.16.11 + transitivePeerDependencies: + - "@vue/composition-api" + - markdown-it + - typescript + + "@vuepress/plugin-markdown-tab@2.0.0-rc.52(markdown-it@14.1.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": + dependencies: + "@mdit/plugin-tab": 0.13.2(markdown-it@14.1.0) + "@types/markdown-it": 14.1.2 + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + transitivePeerDependencies: + - "@vue/composition-api" + - markdown-it + - typescript + + "@vuepress/plugin-notice@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": + dependencies: + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + transitivePeerDependencies: + - "@vue/composition-api" + - typescript + + "@vuepress/plugin-nprogress@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": + dependencies: + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + transitivePeerDependencies: + - "@vue/composition-api" + - typescript + + "@vuepress/plugin-photo-swipe@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": + dependencies: + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) photoswipe: 5.4.4 - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - "@vue/composition-api" - typescript - "@vuepress/plugin-reading-time@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-reading-time@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: + - "@vue/composition-api" - typescript - "@vuepress/plugin-rtl@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-redirect@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) + cac: 6.7.14 + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: + - "@vue/composition-api" - typescript - "@vuepress/plugin-sass-palette@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-rtl@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - chokidar: 3.6.0 - sass: 1.77.8 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: + - "@vue/composition-api" - typescript - "@vuepress/plugin-sass-palette@2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-sass-palette@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) chokidar: 4.0.1 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - "@vue/composition-api" - typescript - "@vuepress/plugin-seo@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-seo@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: + - "@vue/composition-api" - typescript - "@vuepress/plugin-shiki@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-shiki@2.0.0-rc.52(@vueuse/core@11.1.0(vue@3.5.12))(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@shikijs/transformers": 1.10.3 - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/highlighter-helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + "@shikijs/transformers": 1.22.0 + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/highlighter-helper": 2.0.0-rc.52(@vueuse/core@11.1.0(vue@3.5.12))(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) nanoid: 5.0.7 - shiki: 1.10.3 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + shiki: 1.22.0 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: + - "@vue/composition-api" + - "@vueuse/core" - typescript - "@vuepress/plugin-sitemap@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-sitemap@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) sitemap: 8.0.0 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: + - "@vue/composition-api" - typescript - "@vuepress/plugin-theme-data@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-theme-data@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vue/devtools-api": 6.6.3 - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + "@vue/devtools-api": 7.4.6 + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - typescript - "@vuepress/plugin-watermark@2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6))": + "@vuepress/plugin-watermark@2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6))": dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - watermark-js-plus: 1.5.2 + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + watermark-js-plus: 1.5.7 transitivePeerDependencies: + - "@vue/composition-api" - typescript - "@vuepress/shared@2.0.0-rc.15": + "@vuepress/shared@2.0.0-rc.17": dependencies: "@mdit-vue/types": 2.1.0 - "@vuepress/utils@2.0.0-rc.15": + "@vuepress/utils@2.0.0-rc.17": dependencies: "@types/debug": 4.1.12 "@types/fs-extra": 11.0.4 "@types/hash-sum": 1.0.2 - "@vuepress/shared": 2.0.0-rc.15 - debug: 4.3.6 + "@vuepress/shared": 2.0.0-rc.17 + debug: 4.3.7 fs-extra: 11.2.0 globby: 14.0.2 hash-sum: 2.0.0 - ora: 8.0.1 - picocolors: 1.0.1 + ora: 8.1.0 + picocolors: 1.1.0 upath: 2.0.1 transitivePeerDependencies: - supports-color - "@vueuse/core@10.11.0(vue@3.5.6)": - dependencies: - "@types/web-bluetooth": 0.0.20 - "@vueuse/metadata": 10.11.0 - "@vueuse/shared": 10.11.0(vue@3.5.6) - vue-demi: 0.14.8(vue@3.5.6) - transitivePeerDependencies: - - "@vue/composition-api" - - vue - "@vueuse/core@11.1.0(vue@3.5.12)": dependencies: "@types/web-bluetooth": 0.0.20 @@ -4093,17 +5643,8 @@ snapshots: - "@vue/composition-api" - vue - "@vueuse/metadata@10.11.0": {} - "@vueuse/metadata@11.1.0": {} - "@vueuse/shared@10.11.0(vue@3.5.6)": - dependencies: - vue-demi: 0.14.8(vue@3.5.6) - transitivePeerDependencies: - - "@vue/composition-api" - - vue - "@vueuse/shared@11.1.0(vue@3.5.12)": dependencies: vue-demi: 0.14.10(vue@3.5.12) @@ -4111,6 +5652,40 @@ snapshots: - "@vue/composition-api" - vue + "@zenuml/core@3.24.12": + dependencies: + "@headlessui-float/vue": 0.14.4(@headlessui/vue@1.7.23(vue@3.5.12))(vue@3.5.12) + "@headlessui/tailwindcss": 0.2.1(tailwindcss@3.4.14) + "@headlessui/vue": 1.7.23(vue@3.5.12) + "@types/assert": 1.5.10 + "@types/ramda": 0.28.25 + "@vue/compat": 3.5.12(vue@3.5.12) + antlr4: 4.11.0 + color-string: 1.9.1 + dom-to-image-more: 2.16.0 + dompurify: 3.1.7 + file-saver: 2.0.5 + highlight.js: 10.7.3 + html-to-image: 1.11.11 + lodash: 4.17.21 + marked: 4.3.0 + pino: 8.21.0 + postcss: 8.4.47 + ramda: 0.28.0 + tailwindcss: 3.4.14 + vue: 3.5.12 + vuex: 4.1.0(vue@3.5.12) + transitivePeerDependencies: + - "@vue/composition-api" + - ts-node + - typescript + + abort-controller@3.0.0: + dependencies: + event-target-shim: 5.0.1 + + acorn@8.12.1: {} + ansi-regex@5.0.1: {} ansi-regex@6.0.1: {} @@ -4119,6 +5694,12 @@ snapshots: dependencies: color-convert: 2.0.1 + ansi-styles@6.2.1: {} + + antlr4@4.11.0: {} + + any-promise@1.3.0: {} + anymatch@3.1.3: dependencies: normalize-path: 3.0.0 @@ -4132,24 +5713,36 @@ snapshots: argparse@2.0.1: {} - autoprefixer@10.4.20(postcss@8.4.44): + atomic-sleep@1.0.0: {} + + autoprefixer@10.4.20(postcss@8.4.47): dependencies: browserslist: 4.23.3 caniuse-lite: 1.0.30001655 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.0.1 - postcss: 8.4.44 + picocolors: 1.1.0 + postcss: 8.4.47 postcss-value-parser: 4.2.0 + balanced-match@1.0.2: {} + balloon-css@1.2.0: {} + base64-js@1.5.1: {} + bcrypt-ts@5.0.2: {} binary-extensions@2.3.0: {} + birpc@0.2.19: {} + boolbase@1.0.0: {} + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + braces@3.0.2: dependencies: fill-range: 7.0.1 @@ -4161,14 +5754,27 @@ snapshots: node-releases: 2.0.18 update-browserslist-db: 1.1.0(browserslist@4.23.3) + buffer@6.0.3: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + cac@6.7.14: {} + camelcase-css@2.0.1: {} + camelcase@5.3.1: {} caniuse-lite@1.0.30001655: {} + ccount@2.0.1: {} + chalk@5.3.0: {} + character-entities-html4@2.1.0: {} + + character-entities-legacy@3.0.0: {} + cheerio-select@2.1.0: dependencies: boolbase: 1.0.0 @@ -4192,15 +5798,19 @@ snapshots: undici: 6.20.0 whatwg-mimetype: 4.0.0 - cheerio@1.0.0-rc.12: + chevrotain-allstar@0.3.1(chevrotain@11.0.3): dependencies: - cheerio-select: 2.1.0 - dom-serializer: 2.0.0 - domhandler: 5.0.3 - domutils: 3.1.0 - htmlparser2: 8.0.2 - parse5: 7.1.2 - parse5-htmlparser2-tree-adapter: 7.0.0 + chevrotain: 11.0.3 + lodash-es: 4.17.21 + + chevrotain@11.0.3: + dependencies: + "@chevrotain/cst-dts-gen": 11.0.3 + "@chevrotain/gast": 11.0.3 + "@chevrotain/regexp-to-ast": 11.0.3 + "@chevrotain/types": 11.0.3 + "@chevrotain/utils": 11.0.3 + lodash-es: 4.17.21 chokidar@3.6.0: dependencies: @@ -4218,9 +5828,9 @@ snapshots: dependencies: readdirp: 4.0.2 - cli-cursor@4.0.0: + cli-cursor@5.0.0: dependencies: - restore-cursor: 4.0.0 + restore-cursor: 5.1.0 cli-spinners@2.9.2: {} @@ -4236,8 +5846,35 @@ snapshots: color-name@1.1.4: {} + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + + comma-separated-tokens@2.0.3: {} + + commander@4.1.1: {} + + commander@7.2.0: {} + + commander@8.3.0: {} + + confbox@0.1.8: {} + connect-history-api-fallback@2.0.0: {} + copy-anything@3.0.5: + dependencies: + is-what: 4.1.16 + + cose-base@1.0.3: + dependencies: + layout-base: 1.0.2 + + cose-base@2.2.0: + dependencies: + layout-base: 2.0.1 + create-codepen@2.0.0: {} cross-spawn@7.0.3: @@ -4256,43 +5893,255 @@ snapshots: css-what@6.1.0: {} + cssesc@3.0.0: {} + csstype@3.1.3: {} + cytoscape-cose-bilkent@4.1.0(cytoscape@3.30.2): + dependencies: + cose-base: 1.0.3 + cytoscape: 3.30.2 + + cytoscape-fcose@2.2.0(cytoscape@3.30.2): + dependencies: + cose-base: 2.2.0 + cytoscape: 3.30.2 + + cytoscape@3.30.2: {} + + d3-array@2.12.1: + dependencies: + internmap: 1.0.1 + + d3-array@3.2.4: + dependencies: + internmap: 2.0.3 + + d3-axis@3.0.0: {} + + d3-brush@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-transition: 3.0.1(d3-selection@3.0.0) + + d3-chord@3.0.1: + dependencies: + d3-path: 3.1.0 + + d3-color@3.1.0: {} + + d3-contour@4.0.2: + dependencies: + d3-array: 3.2.4 + + d3-delaunay@6.0.4: + dependencies: + delaunator: 5.0.1 + + d3-dispatch@3.0.1: {} + + d3-drag@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-selection: 3.0.0 + + d3-dsv@3.0.1: + dependencies: + commander: 7.2.0 + iconv-lite: 0.6.3 + rw: 1.3.3 + + d3-ease@3.0.1: {} + + d3-fetch@3.0.1: + dependencies: + d3-dsv: 3.0.1 + + d3-force@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-quadtree: 3.0.1 + d3-timer: 3.0.1 + + d3-format@3.1.0: {} + + d3-geo@3.1.1: + dependencies: + d3-array: 3.2.4 + + d3-hierarchy@3.1.2: {} + + d3-interpolate@3.0.1: + dependencies: + d3-color: 3.1.0 + + d3-path@1.0.9: {} + + d3-path@3.1.0: {} + + d3-polygon@3.0.1: {} + + d3-quadtree@3.0.1: {} + + d3-random@3.0.1: {} + + d3-sankey@0.12.3: + dependencies: + d3-array: 2.12.1 + d3-shape: 1.3.7 + + d3-scale-chromatic@3.1.0: + dependencies: + d3-color: 3.1.0 + d3-interpolate: 3.0.1 + + d3-scale@4.0.2: + dependencies: + d3-array: 3.2.4 + d3-format: 3.1.0 + d3-interpolate: 3.0.1 + d3-time: 3.1.0 + d3-time-format: 4.1.0 + + d3-selection@3.0.0: {} + + d3-shape@1.3.7: + dependencies: + d3-path: 1.0.9 + + d3-shape@3.2.0: + dependencies: + d3-path: 3.1.0 + + d3-time-format@4.1.0: + dependencies: + d3-time: 3.1.0 + + d3-time@3.1.0: + dependencies: + d3-array: 3.2.4 + + d3-timer@3.0.1: {} + + d3-transition@3.0.1(d3-selection@3.0.0): + dependencies: + d3-color: 3.1.0 + d3-dispatch: 3.0.1 + d3-ease: 3.0.1 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-timer: 3.0.1 + + d3-zoom@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-transition: 3.0.1(d3-selection@3.0.0) + + d3@7.9.0: + dependencies: + d3-array: 3.2.4 + d3-axis: 3.0.0 + d3-brush: 3.0.0 + d3-chord: 3.0.1 + d3-color: 3.1.0 + d3-contour: 4.0.2 + d3-delaunay: 6.0.4 + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-dsv: 3.0.1 + d3-ease: 3.0.1 + d3-fetch: 3.0.1 + d3-force: 3.0.0 + d3-format: 3.1.0 + d3-geo: 3.1.1 + d3-hierarchy: 3.1.2 + d3-interpolate: 3.0.1 + d3-path: 3.1.0 + d3-polygon: 3.0.1 + d3-quadtree: 3.0.1 + d3-random: 3.0.1 + d3-scale: 4.0.2 + d3-scale-chromatic: 3.1.0 + d3-selection: 3.0.0 + d3-shape: 3.2.0 + d3-time: 3.1.0 + d3-time-format: 4.1.0 + d3-timer: 3.0.1 + d3-transition: 3.0.1(d3-selection@3.0.0) + d3-zoom: 3.0.0 + + dagre-d3-es@7.0.10: + dependencies: + d3: 7.9.0 + lodash-es: 4.17.21 + dayjs@1.11.13: {} debug@4.3.6: dependencies: ms: 2.1.2 + debug@4.3.7: + dependencies: + ms: 2.1.3 + decamelize@1.2.0: {} + delaunator@5.0.1: + dependencies: + robust-predicates: 3.0.2 + + dequal@2.0.3: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + didyoumean@1.2.2: {} + dijkstrajs@1.0.3: {} + dlv@1.1.3: {} + dom-serializer@2.0.0: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 entities: 4.5.0 + dom-to-image-more@2.16.0: {} + domelementtype@2.3.0: {} domhandler@5.0.3: dependencies: domelementtype: 2.3.0 + dompurify@3.1.6: {} + + dompurify@3.1.7: {} + domutils@3.1.0: dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 domhandler: 5.0.3 + eastasianwidth@0.2.0: {} + electron-to-chromium@1.5.13: {} emoji-regex@10.3.0: {} emoji-regex@8.0.0: {} - encode-utf8@1.0.3: {} + emoji-regex@9.2.2: {} encoding-sniffer@0.2.0: dependencies: @@ -4301,7 +6150,7 @@ snapshots: entities@4.5.0: {} - envinfo@7.13.0: {} + envinfo@7.14.0: {} esbuild@0.21.5: optionalDependencies: @@ -4335,16 +6184,20 @@ snapshots: estree-walker@2.0.2: {} - execa@9.3.0: + event-target-shim@5.0.1: {} + + events@3.3.0: {} + + execa@9.4.0: dependencies: "@sindresorhus/merge-streams": 4.0.0 cross-spawn: 7.0.3 figures: 6.1.0 get-stream: 9.0.1 - human-signals: 7.0.0 + human-signals: 8.0.0 is-plain-obj: 4.1.0 is-stream: 4.0.1 - npm-run-path: 5.3.0 + npm-run-path: 6.0.0 pretty-ms: 9.0.0 signal-exit: 4.1.0 strip-final-newline: 4.0.0 @@ -4362,6 +6215,8 @@ snapshots: merge2: 1.4.1 micromatch: 4.0.5 + fast-redact@3.5.0: {} + fastq@1.17.1: dependencies: reusify: 1.0.4 @@ -4372,6 +6227,8 @@ snapshots: dependencies: is-unicode-supported: 2.0.0 + file-saver@2.0.5: {} + fill-range@7.0.1: dependencies: to-regex-range: 5.0.1 @@ -4381,6 +6238,11 @@ snapshots: locate-path: 5.0.0 path-exists: 4.0.0 + foreground-child@3.3.0: + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + fraction.js@4.3.7: {} fs-extra@11.2.0: @@ -4392,6 +6254,8 @@ snapshots: fsevents@2.3.3: optional: true + function-bind@1.1.2: {} + get-caller-file@2.0.5: {} get-east-asian-width@1.2.0: {} @@ -4409,6 +6273,19 @@ snapshots: dependencies: is-glob: 4.0.3 + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob@10.4.5: + dependencies: + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + globby@14.0.2: dependencies: "@sindresorhus/merge-streams": 2.3.0 @@ -4427,14 +6304,39 @@ snapshots: section-matter: 1.0.0 strip-bom-string: 1.0.0 + hachure-fill@0.5.2: {} + hash-sum@2.0.0: {} - htmlparser2@8.0.2: + hasown@2.0.2: dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils: 3.1.0 - entities: 4.5.0 + function-bind: 1.1.2 + + hast-util-to-html@9.0.3: + dependencies: + "@types/hast": 3.0.4 + "@types/unist": 3.0.2 + ccount: 2.0.1 + comma-separated-tokens: 2.0.3 + hast-util-whitespace: 3.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.0 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + stringify-entities: 4.0.4 + zwitch: 2.0.4 + + hast-util-whitespace@3.0.0: + dependencies: + "@types/hast": 3.0.4 + + highlight.js@10.7.3: {} + + hookable@5.5.3: {} + + html-to-image@1.11.11: {} + + html-void-elements@3.0.0: {} htmlparser2@9.1.0: dependencies: @@ -4443,20 +6345,30 @@ snapshots: domutils: 3.1.0 entities: 4.5.0 - human-signals@7.0.0: {} + human-signals@8.0.0: {} iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 + ieee754@1.2.1: {} + ignore@5.3.1: {} - immutable@4.3.5: {} + internmap@1.0.1: {} + + internmap@2.0.3: {} + + is-arrayish@0.3.2: {} is-binary-path@2.1.0: dependencies: binary-extensions: 2.3.0 + is-core-module@2.15.1: + dependencies: + hasown: 2.0.2 + is-extendable@0.1.1: {} is-extglob@2.1.1: {} @@ -4479,8 +6391,18 @@ snapshots: is-unicode-supported@2.0.0: {} + is-what@4.1.16: {} + isexe@2.0.0: {} + jackspeak@3.4.3: + dependencies: + "@isaacs/cliui": 8.0.2 + optionalDependencies: + "@pkgjs/parseargs": 0.11.0 + + jiti@1.21.6: {} + js-yaml@3.14.1: dependencies: argparse: 1.0.10 @@ -4496,10 +6418,34 @@ snapshots: optionalDependencies: graceful-fs: 4.2.11 + katex@0.16.11: + dependencies: + commander: 8.3.0 + + khroma@2.1.0: {} + kind-of@6.0.3: {} + kolorist@1.8.0: {} + + langium@3.0.0: + dependencies: + chevrotain: 11.0.3 + chevrotain-allstar: 0.3.1(chevrotain@11.0.3) + vscode-languageserver: 9.0.1 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + + layout-base@1.0.2: {} + + layout-base@2.0.1: {} + + lilconfig@2.1.0: {} + lilconfig@3.1.1: {} + lines-and-columns@1.2.4: {} + linkify-it@5.0.0: dependencies: uc.micro: 2.1.0 @@ -4520,20 +6466,31 @@ snapshots: lit-element: 4.0.4 lit-html: 3.1.2 + local-pkg@0.5.0: + dependencies: + mlly: 1.7.2 + pkg-types: 1.2.1 + locate-path@5.0.0: dependencies: p-locate: 4.1.0 + lodash-es@4.17.21: {} + + lodash@4.17.21: {} + log-symbols@6.0.0: dependencies: chalk: 5.3.0 is-unicode-supported: 1.3.0 + lru-cache@10.4.3: {} + magic-string@0.30.11: dependencies: "@jridgewell/sourcemap-codec": 1.5.0 - markdown-it-anchor@9.0.1(@types/markdown-it@14.1.2)(markdown-it@14.1.0): + markdown-it-anchor@9.2.0(@types/markdown-it@14.1.2)(markdown-it@14.1.0): dependencies: "@types/markdown-it": 14.1.2 markdown-it: 14.1.0 @@ -4549,19 +6506,99 @@ snapshots: punycode.js: 2.3.1 uc.micro: 2.1.0 + marked@13.0.3: {} + + marked@4.3.0: {} + + mdast-util-to-hast@13.2.0: + dependencies: + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 + "@ungap/structured-clone": 1.2.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.0 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + mdurl@2.0.0: {} merge2@1.4.1: {} + mermaid@11.3.0: + dependencies: + "@braintree/sanitize-url": 7.1.0 + "@iconify/utils": 2.1.33 + "@mermaid-js/parser": 0.3.0 + cytoscape: 3.30.2 + cytoscape-cose-bilkent: 4.1.0(cytoscape@3.30.2) + cytoscape-fcose: 2.2.0(cytoscape@3.30.2) + d3: 7.9.0 + d3-sankey: 0.12.3 + dagre-d3-es: 7.0.10 + dayjs: 1.11.13 + dompurify: 3.1.6 + katex: 0.16.11 + khroma: 2.1.0 + lodash-es: 4.17.21 + marked: 13.0.3 + roughjs: 4.6.6 + stylis: 4.3.4 + ts-dedent: 2.2.0 + uuid: 9.0.1 + transitivePeerDependencies: + - supports-color + + micromark-util-character@2.1.0: + dependencies: + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-encode@2.0.0: {} + + micromark-util-sanitize-uri@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-encode: 2.0.0 + micromark-util-symbol: 2.0.0 + + micromark-util-symbol@2.0.0: {} + + micromark-util-types@2.0.0: {} + micromatch@4.0.5: dependencies: braces: 3.0.2 picomatch: 2.3.1 - mimic-fn@2.1.0: {} + mimic-function@5.0.1: {} + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + + minipass@7.1.2: {} + + mitt@3.0.1: {} + + mlly@1.7.2: + dependencies: + acorn: 8.12.1 + pathe: 1.1.2 + pkg-types: 1.2.1 + ufo: 1.5.4 ms@2.1.2: {} + ms@2.1.3: {} + + mz@2.7.0: + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + nanoid@3.3.7: {} nanoid@5.0.7: {} @@ -4572,28 +6609,39 @@ snapshots: normalize-range@0.1.2: {} - npm-run-path@5.3.0: + npm-run-path@6.0.0: dependencies: path-key: 4.0.0 + unicorn-magic: 0.3.0 nth-check@2.1.1: dependencies: boolbase: 1.0.0 - onetime@5.1.2: - dependencies: - mimic-fn: 2.1.0 + object-assign@4.1.1: {} - ora@8.0.1: + object-hash@3.0.0: {} + + on-exit-leak-free@2.1.2: {} + + onetime@7.0.0: + dependencies: + mimic-function: 5.0.1 + + oniguruma-to-js@0.4.3: + dependencies: + regex: 4.3.3 + + ora@8.1.0: dependencies: chalk: 5.3.0 - cli-cursor: 4.0.0 + cli-cursor: 5.0.0 cli-spinners: 2.9.2 is-interactive: 2.0.0 is-unicode-supported: 2.0.0 log-symbols: 6.0.0 stdin-discarder: 0.2.2 - string-width: 7.1.0 + string-width: 7.2.0 strip-ansi: 7.1.0 p-limit@2.3.0: @@ -4606,6 +6654,10 @@ snapshots: p-try@2.2.0: {} + package-json-from-dist@1.0.1: {} + + package-manager-detector@0.2.2: {} + parse-ms@4.0.0: {} parse5-htmlparser2-tree-adapter@7.0.0: @@ -4621,38 +6673,112 @@ snapshots: dependencies: entities: 4.5.0 + path-data-parser@0.1.0: {} + path-exists@4.0.0: {} path-key@3.1.1: {} path-key@4.0.0: {} + path-parse@1.0.7: {} + + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + path-type@5.0.0: {} - photoswipe@5.4.4: {} + pathe@1.1.2: {} - picocolors@1.0.1: {} + perfect-debounce@1.0.0: {} + + photoswipe@5.4.4: {} picocolors@1.1.0: {} picomatch@2.3.1: {} + pify@2.3.0: {} + + pino-abstract-transport@1.2.0: + dependencies: + readable-stream: 4.5.2 + split2: 4.2.0 + + pino-std-serializers@6.2.2: {} + + pino@8.21.0: + dependencies: + atomic-sleep: 1.0.0 + fast-redact: 3.5.0 + on-exit-leak-free: 2.1.2 + pino-abstract-transport: 1.2.0 + pino-std-serializers: 6.2.2 + process-warning: 3.0.0 + quick-format-unescaped: 4.0.4 + real-require: 0.2.0 + safe-stable-stringify: 2.5.0 + sonic-boom: 3.8.1 + thread-stream: 2.7.0 + + pirates@4.0.6: {} + + pkg-types@1.2.1: + dependencies: + confbox: 0.1.8 + mlly: 1.7.2 + pathe: 1.1.2 + pngjs@5.0.0: {} - postcss-load-config@6.0.1(postcss@8.4.44): + points-on-curve@0.2.0: {} + + points-on-path@0.2.1: + dependencies: + path-data-parser: 0.1.0 + points-on-curve: 0.2.0 + + postcss-import@15.1.0(postcss@8.4.47): + dependencies: + postcss: 8.4.47 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.8 + + postcss-js@4.0.1(postcss@8.4.47): + dependencies: + camelcase-css: 2.0.1 + postcss: 8.4.47 + + postcss-load-config@4.0.2(postcss@8.4.47): + dependencies: + lilconfig: 3.1.1 + yaml: 2.6.0 + optionalDependencies: + postcss: 8.4.47 + + postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.47)(yaml@2.6.0): dependencies: lilconfig: 3.1.1 optionalDependencies: - postcss: 8.4.44 + jiti: 1.21.6 + postcss: 8.4.47 + yaml: 2.6.0 + + postcss-nested@6.2.0(postcss@8.4.47): + dependencies: + postcss: 8.4.47 + postcss-selector-parser: 6.1.2 + + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 postcss-value-parser@4.2.0: {} - postcss@8.4.44: - dependencies: - nanoid: 3.3.7 - picocolors: 1.0.1 - source-map-js: 1.2.0 - postcss@8.4.47: dependencies: nanoid: 3.3.7 @@ -4663,67 +6789,109 @@ snapshots: dependencies: parse-ms: 4.0.0 + process-warning@3.0.0: {} + + process@0.11.10: {} + + property-information@6.5.0: {} + punycode.js@2.3.1: {} - qrcode@1.5.3: + qrcode@1.5.4: dependencies: dijkstrajs: 1.0.3 - encode-utf8: 1.0.3 pngjs: 5.0.0 yargs: 15.4.1 queue-microtask@1.2.3: {} + quick-format-unescaped@4.0.4: {} + + ramda@0.28.0: {} + + read-cache@1.0.0: + dependencies: + pify: 2.3.0 + + readable-stream@4.5.2: + dependencies: + abort-controller: 3.0.0 + buffer: 6.0.3 + events: 3.3.0 + process: 0.11.10 + string_decoder: 1.3.0 + readdirp@3.6.0: dependencies: picomatch: 2.3.1 readdirp@4.0.2: {} + real-require@0.2.0: {} + + regex@4.3.3: {} + require-directory@2.1.1: {} require-main-filename@2.0.0: {} - restore-cursor@4.0.0: + resolve@1.22.8: dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 + is-core-module: 2.15.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + restore-cursor@5.1.0: + dependencies: + onetime: 7.0.0 + signal-exit: 4.1.0 reusify@1.0.4: {} - rollup@4.21.2: + rfdc@1.4.1: {} + + robust-predicates@3.0.2: {} + + rollup@4.24.0: dependencies: - "@types/estree": 1.0.5 + "@types/estree": 1.0.6 optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.21.2 - "@rollup/rollup-android-arm64": 4.21.2 - "@rollup/rollup-darwin-arm64": 4.21.2 - "@rollup/rollup-darwin-x64": 4.21.2 - "@rollup/rollup-linux-arm-gnueabihf": 4.21.2 - "@rollup/rollup-linux-arm-musleabihf": 4.21.2 - "@rollup/rollup-linux-arm64-gnu": 4.21.2 - "@rollup/rollup-linux-arm64-musl": 4.21.2 - "@rollup/rollup-linux-powerpc64le-gnu": 4.21.2 - "@rollup/rollup-linux-riscv64-gnu": 4.21.2 - "@rollup/rollup-linux-s390x-gnu": 4.21.2 - "@rollup/rollup-linux-x64-gnu": 4.21.2 - "@rollup/rollup-linux-x64-musl": 4.21.2 - "@rollup/rollup-win32-arm64-msvc": 4.21.2 - "@rollup/rollup-win32-ia32-msvc": 4.21.2 - "@rollup/rollup-win32-x64-msvc": 4.21.2 + "@rollup/rollup-android-arm-eabi": 4.24.0 + "@rollup/rollup-android-arm64": 4.24.0 + "@rollup/rollup-darwin-arm64": 4.24.0 + "@rollup/rollup-darwin-x64": 4.24.0 + "@rollup/rollup-linux-arm-gnueabihf": 4.24.0 + "@rollup/rollup-linux-arm-musleabihf": 4.24.0 + "@rollup/rollup-linux-arm64-gnu": 4.24.0 + "@rollup/rollup-linux-arm64-musl": 4.24.0 + "@rollup/rollup-linux-powerpc64le-gnu": 4.24.0 + "@rollup/rollup-linux-riscv64-gnu": 4.24.0 + "@rollup/rollup-linux-s390x-gnu": 4.24.0 + "@rollup/rollup-linux-x64-gnu": 4.24.0 + "@rollup/rollup-linux-x64-musl": 4.24.0 + "@rollup/rollup-win32-arm64-msvc": 4.24.0 + "@rollup/rollup-win32-ia32-msvc": 4.24.0 + "@rollup/rollup-win32-x64-msvc": 4.24.0 fsevents: 2.3.3 + roughjs@4.6.6: + dependencies: + hachure-fill: 0.5.2 + path-data-parser: 0.1.0 + points-on-curve: 0.2.0 + points-on-path: 0.2.1 + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - safer-buffer@2.1.2: {} + rw@1.3.3: {} - sass@1.77.8: - dependencies: - chokidar: 3.6.0 - immutable: 4.3.5 - source-map-js: 1.2.0 + safe-buffer@5.2.1: {} + + safe-stable-stringify@2.5.0: {} + + safer-buffer@2.1.2: {} sax@1.3.0: {} @@ -4732,8 +6900,6 @@ snapshots: extend-shallow: 2.0.1 kind-of: 6.0.3 - semver@7.6.3: {} - set-blocking@2.0.0: {} shebang-command@2.0.0: @@ -4742,15 +6908,21 @@ snapshots: shebang-regex@3.0.0: {} - shiki@1.10.3: + shiki@1.22.0: dependencies: - "@shikijs/core": 1.10.3 + "@shikijs/core": 1.22.0 + "@shikijs/engine-javascript": 1.22.0 + "@shikijs/engine-oniguruma": 1.22.0 + "@shikijs/types": 1.22.0 + "@shikijs/vscode-textmate": 9.3.0 "@types/hast": 3.0.4 - signal-exit@3.0.7: {} - signal-exit@4.1.0: {} + simple-swizzle@0.2.2: + dependencies: + is-arrayish: 0.3.2 + sitemap@8.0.0: dependencies: "@types/node": 17.0.45 @@ -4760,10 +6932,20 @@ snapshots: slash@5.1.0: {} + sonic-boom@3.8.1: + dependencies: + atomic-sleep: 1.0.0 + source-map-js@1.2.0: {} source-map-js@1.2.1: {} + space-separated-tokens@2.0.2: {} + + speakingurl@14.0.1: {} + + split2@4.2.0: {} + sprintf-js@1.0.3: {} stdin-discarder@0.2.2: {} @@ -4774,12 +6956,27 @@ snapshots: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - string-width@7.1.0: + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + + string-width@7.2.0: dependencies: emoji-regex: 10.3.0 get-east-asian-width: 1.2.0 strip-ansi: 7.1.0 + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 @@ -4792,20 +6989,114 @@ snapshots: strip-final-newline@4.0.0: {} + stylis@4.3.4: {} + + sucrase@3.35.0: + dependencies: + "@jridgewell/gen-mapping": 0.3.5 + commander: 4.1.1 + glob: 10.4.5 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.6 + ts-interface-checker: 0.1.13 + + superjson@2.2.1: + dependencies: + copy-anything: 3.0.5 + + supports-preserve-symlinks-flag@1.0.0: {} + + tailwindcss@3.4.14: + dependencies: + "@alloc/quick-lru": 5.2.0 + arg: 5.0.2 + chokidar: 3.6.0 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.2 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.21.6 + lilconfig: 2.1.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.1.0 + postcss: 8.4.47 + postcss-import: 15.1.0(postcss@8.4.47) + postcss-js: 4.0.1(postcss@8.4.47) + postcss-load-config: 4.0.2(postcss@8.4.47) + postcss-nested: 6.2.0(postcss@8.4.47) + postcss-selector-parser: 6.1.2 + resolve: 1.22.8 + sucrase: 3.35.0 + transitivePeerDependencies: + - ts-node + + thenify-all@1.6.0: + dependencies: + thenify: 3.3.1 + + thenify@3.3.1: + dependencies: + any-promise: 1.3.0 + + thread-stream@2.7.0: + dependencies: + real-require: 0.2.0 + + tinyexec@0.3.0: {} + to-fast-properties@2.0.0: {} to-regex-range@5.0.1: dependencies: is-number: 7.0.0 + trim-lines@3.0.1: {} + + ts-dedent@2.2.0: {} + + ts-interface-checker@0.1.13: {} + + ts-toolbelt@6.15.5: {} + uc.micro@2.1.0: {} + ufo@1.5.4: {} + undici-types@5.26.5: {} undici@6.20.0: {} unicorn-magic@0.1.0: {} + unicorn-magic@0.3.0: {} + + unist-util-is@6.0.0: + dependencies: + "@types/unist": 3.0.2 + + unist-util-position@5.0.0: + dependencies: + "@types/unist": 3.0.2 + + unist-util-stringify-position@4.0.0: + dependencies: + "@types/unist": 3.0.2 + + unist-util-visit-parents@6.0.1: + dependencies: + "@types/unist": 3.0.2 + unist-util-is: 6.0.0 + + unist-util-visit@5.0.0: + dependencies: + "@types/unist": 3.0.2 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + universalify@2.0.1: {} upath@2.0.1: {} @@ -4814,29 +7105,56 @@ snapshots: dependencies: browserslist: 4.23.3 escalade: 3.1.2 - picocolors: 1.0.1 + picocolors: 1.1.0 - vite@5.4.6(@types/node@20.11.28): + util-deprecate@1.0.2: {} + + uuid@9.0.1: {} + + vfile-message@4.0.2: + dependencies: + "@types/unist": 3.0.2 + unist-util-stringify-position: 4.0.0 + + vfile@6.0.3: + dependencies: + "@types/unist": 3.0.2 + vfile-message: 4.0.2 + + vite@5.4.9(@types/node@20.11.28): dependencies: esbuild: 0.21.5 - postcss: 8.4.44 - rollup: 4.21.2 + postcss: 8.4.47 + rollup: 4.24.0 optionalDependencies: "@types/node": 20.11.28 fsevents: 2.3.3 + vscode-jsonrpc@8.2.0: {} + + vscode-languageserver-protocol@3.17.5: + dependencies: + vscode-jsonrpc: 8.2.0 + vscode-languageserver-types: 3.17.5 + + vscode-languageserver-textdocument@1.0.12: {} + + vscode-languageserver-types@3.17.5: {} + + vscode-languageserver@9.0.1: + dependencies: + vscode-languageserver-protocol: 3.17.5 + + vscode-uri@3.0.8: {} + vue-demi@0.14.10(vue@3.5.12): dependencies: vue: 3.5.12 - vue-demi@0.14.8(vue@3.5.6): + vue-router@4.4.5(vue@3.5.12): dependencies: - vue: 3.5.6 - - vue-router@4.4.3(vue@3.5.6): - dependencies: - "@vue/devtools-api": 6.6.3 - vue: 3.5.6 + "@vue/devtools-api": 6.6.4 + vue: 3.5.12 vue@3.5.12: dependencies: @@ -4854,62 +7172,23 @@ snapshots: "@vue/server-renderer": 3.5.6(vue@3.5.6) "@vue/shared": 3.5.6 - vuepress-plugin-components@2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)): + vuepress-plugin-components@2.0.0-rc.57(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)): dependencies: "@stackblitz/sdk": 1.11.0 - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-sass-palette": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vueuse/core": 10.11.0(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-sass-palette": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) balloon-css: 1.2.0 create-codepen: 2.0.0 - qrcode: 1.5.3 - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - vuepress-shared: 2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + qrcode: 1.5.4 + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + vuepress-shared: 2.0.0-rc.57(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) transitivePeerDependencies: - "@vue/composition-api" - typescript - vuepress-plugin-md-enhance@2.0.0-rc.52(markdown-it@14.1.0)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)): - dependencies: - "@mdit/plugin-alert": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-align": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-attrs": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-container": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-demo": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-figure": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-footnote": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-img-lazyload": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-img-mark": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-img-size": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-include": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-katex-slim": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-mark": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-mathjax-slim": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-plantuml": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-spoiler": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-stylize": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-sub": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-sup": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-tab": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-tasklist": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-tex": 0.12.0(markdown-it@14.1.0) - "@mdit/plugin-uml": 0.12.0(markdown-it@14.1.0) - "@types/markdown-it": 14.1.2 - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-sass-palette": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vueuse/core": 10.11.0(vue@3.5.6) - balloon-css: 1.2.0 - js-yaml: 4.1.0 - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - vuepress-shared: 2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - transitivePeerDependencies: - - "@vue/composition-api" - - markdown-it - - typescript - - vuepress-plugin-md-enhance@2.0.0-rc.57(markdown-it@14.1.0)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)): + vuepress-plugin-md-enhance@2.0.0-rc.57(markdown-it@14.1.0)(mermaid@11.3.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)): dependencies: "@mdit/plugin-alert": 0.13.1(markdown-it@14.1.0) "@mdit/plugin-align": 0.13.1(markdown-it@14.1.0) @@ -4927,82 +7206,70 @@ snapshots: "@mdit/plugin-tasklist": 0.13.1(markdown-it@14.1.0) "@mdit/plugin-uml": 0.13.1(markdown-it@14.1.0) "@types/markdown-it": 14.1.2 - "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-sass-palette": 2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-sass-palette": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) "@vueuse/core": 11.1.0(vue@3.5.12) balloon-css: 1.2.0 js-yaml: 4.1.0 vue: 3.5.12 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - vuepress-shared: 2.0.0-rc.57(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + vuepress-shared: 2.0.0-rc.57(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + optionalDependencies: + mermaid: 11.3.0 transitivePeerDependencies: - "@vue/composition-api" - markdown-it - typescript - vuepress-shared@2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)): + vuepress-shared@2.0.0-rc.57(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)): dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vueuse/core": 10.11.0(vue@3.5.6) - cheerio: 1.0.0-rc.12 - dayjs: 1.11.13 - execa: 9.3.0 - fflate: 0.8.2 - gray-matter: 4.0.3 - semver: 7.6.3 - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - transitivePeerDependencies: - - "@vue/composition-api" - - typescript - - vuepress-shared@2.0.0-rc.57(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)): - dependencies: - "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) "@vueuse/core": 11.1.0(vue@3.5.12) dayjs: 1.11.13 vue: 3.5.12 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) transitivePeerDependencies: - "@vue/composition-api" - typescript - vuepress-theme-hope@2.0.0-rc.52(markdown-it@14.1.0)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)): + vuepress-theme-hope@2.0.0-rc.58(katex@0.16.11)(markdown-it@14.1.0)(mermaid@11.3.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)): dependencies: - "@vuepress/helper": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-active-header-links": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-back-to-top": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-blog": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-catalog": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-comment": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-copy-code": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-copyright": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-git": 2.0.0-rc.38(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-links-check": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-notice": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-nprogress": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-photo-swipe": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-reading-time": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-rtl": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-sass-palette": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-seo": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-shiki": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-sitemap": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-theme-data": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vuepress/plugin-watermark": 2.0.0-rc.39(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - "@vueuse/core": 10.11.0(vue@3.5.6) + "@vuepress/helper": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-active-header-links": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-back-to-top": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-blog": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-catalog": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-comment": 2.0.0-rc.53(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-copy-code": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-copyright": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-git": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-links-check": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-markdown-hint": 2.0.0-rc.52(markdown-it@14.1.0)(vue@3.5.12)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-markdown-image": 2.0.0-rc.52(markdown-it@14.1.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-markdown-math": 2.0.0-rc.52(katex@0.16.11)(markdown-it@14.1.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-markdown-tab": 2.0.0-rc.52(markdown-it@14.1.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-notice": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-nprogress": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-photo-swipe": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-reading-time": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-redirect": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-rtl": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-sass-palette": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-seo": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-shiki": 2.0.0-rc.52(@vueuse/core@11.1.0(vue@3.5.12))(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-sitemap": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-theme-data": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vuepress/plugin-watermark": 2.0.0-rc.52(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + "@vueuse/core": 11.1.0(vue@3.5.12) balloon-css: 1.2.0 bcrypt-ts: 5.0.2 - cheerio: 1.0.0-rc.12 chokidar: 3.6.0 - gray-matter: 4.0.3 - vue: 3.5.6 - vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6) - vuepress-plugin-components: 2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - vuepress-plugin-md-enhance: 2.0.0-rc.52(markdown-it@14.1.0)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) - vuepress-shared: 2.0.0-rc.52(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6)) + vue: 3.5.12 + vuepress: 2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6) + vuepress-plugin-components: 2.0.0-rc.57(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vuepress-plugin-md-enhance: 2.0.0-rc.57(markdown-it@14.1.0)(mermaid@11.3.0)(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) + vuepress-shared: 2.0.0-rc.57(vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6)) transitivePeerDependencies: - - "@types/reveal.js" - "@vue/composition-api" - "@vue/repl" - "@waline/client" @@ -5022,28 +7289,32 @@ snapshots: - mathjax-full - mermaid - mpegts.js - - reveal.js - sandpack-vue3 - twikoo - typescript - vidstack - vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.11.28))(vue@3.5.6): + vuepress@2.0.0-rc.17(@vuepress/bundler-vite@2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0))(vue@3.5.6): dependencies: - "@vuepress/cli": 2.0.0-rc.15 - "@vuepress/client": 2.0.0-rc.15 - "@vuepress/core": 2.0.0-rc.15 - "@vuepress/markdown": 2.0.0-rc.15 - "@vuepress/shared": 2.0.0-rc.15 - "@vuepress/utils": 2.0.0-rc.15 + "@vuepress/cli": 2.0.0-rc.17 + "@vuepress/client": 2.0.0-rc.17 + "@vuepress/core": 2.0.0-rc.17 + "@vuepress/markdown": 2.0.0-rc.17 + "@vuepress/shared": 2.0.0-rc.17 + "@vuepress/utils": 2.0.0-rc.17 vue: 3.5.6 optionalDependencies: - "@vuepress/bundler-vite": 2.0.0-rc.15(@types/node@20.11.28) + "@vuepress/bundler-vite": 2.0.0-rc.17(@types/node@20.11.28)(jiti@1.21.6)(yaml@2.6.0) transitivePeerDependencies: - supports-color - typescript - watermark-js-plus@1.5.2: {} + vuex@4.1.0(vue@3.5.12): + dependencies: + "@vue/devtools-api": 6.6.4 + vue: 3.5.12 + + watermark-js-plus@1.5.7: {} whatwg-encoding@3.1.1: dependencies: @@ -5063,8 +7334,22 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + y18n@4.0.3: {} + yaml@2.6.0: {} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1 @@ -5085,3 +7370,5 @@ snapshots: yargs-parser: 18.1.3 yoctocolors@2.1.1: {} + + zwitch@2.0.4: {}