@cryptotaxi247 / CoPilot / commits / 1f326d06

Fix/cp eslint (#797)

* feat(portal): configure nginx and ssl setup * chore(frontend): update pnpm to 10.33.0 * fix(frontend): resolve eslint issues and cleanup * fix(lint): update eslint mirror to v10.2.1 * chore(portal): update axios and vue-tsc * chore(frontend): update dependencies --------- Co-authored-by: Davide Di Modica <webmaster.ddm@gmail.com>

taylor_socfortress committed Apr 19, 2026 at 15:29 UTC 1f326d064bb0f7d107b0c21062ae21a6e5c93704
19 files changed +1503 -1793
.pre-commit-config.yaml
+1 -1
@@ -48,7 +48,7 @@ repos:
48 name: Check project styling
49
50 - repo: https://github.com/pre-commit/mirrors-eslint
51 - rev: v10.0.0
51 + rev: v10.2.1
52 hooks:
53 - id: eslint
54 args: ["--config", "frontend/eslint.config.mjs"]
customer-portal/build/docker-entrypoint.d/90-copilot-ssl.sh new
+25
@@ -0,0 +1,25 @@
1 +#!/bin/sh
2 +
3 +if [[ -z "${SERVER_HOST}" ]]; then
4 + echo "No SERVER_HOST set!"
5 + echo "Please set the SERVER_HOST environment variable to use CoPilot"
6 + exit 1;
7 +else
8 + echo "Host is now https://${SERVER_HOST}:${SERVER_PORT}"
9 +fi
10 +
11 +if [[ ! -f "${TLS_CERT_PATH}" || ! -f "${TLS_KEY_PATH}" ]]; then
12 + echo "No TLS certs found. Generating...."
13 + mkdir -p $(dirname "${TLS_CERT_PATH}")
14 + openssl req -x509 -subj "/CN=${SERVER_HOST}" -nodes -newkey rsa:4096 -keyout "${TLS_KEY_PATH}" -out "${TLS_CERT_PATH}" -days 365
15 +else
16 + echo "TLS certificates found"
17 +fi
18 +
19 +if [[ ! -f /etc/nginx/certs/dhparams.pem ]]; then
20 + echo "Generating new DH parameters - this may take a while..."
21 + mkdir -p /etc/nginx/certs/
22 + openssl dhparam -out /etc/nginx/certs/dhparams.pem 2048
23 +else
24 + echo "... DH parameters found"
25 +fi
customer-portal/build/etc/nginx/sites-enabled/default.conf new
+79
@@ -0,0 +1,79 @@
1 +server {
2 + listen 80 default_server;
3 + listen [::]:80 default_server;
4 +
5 + # Disable access logs
6 + access_log off;
7 + log_not_found off;
8 + error_log /dev/stderr error;
9 +
10 + return 301 https://$host$request_uri;
11 +}
12 +
13 +server {
14 + listen 443 ssl http2;
15 + listen [::]:443 ssl http2;
16 +
17 + # define the root dir
18 + root /var/www/copilot;
19 + index index.html;
20 +
21 + client_max_body_size 0;
22 +
23 + # disable access logs
24 + access_log off;
25 + log_not_found off;
26 + error_log /dev/stderr error;
27 +
28 + ssl_certificate ${TLS_CERT_PATH};
29 + ssl_certificate_key ${TLS_KEY_PATH};
30 + ssl_session_timeout 1d;
31 + ssl_session_cache shared:MozSSL:10m; # about 40000 sessions
32 + ssl_session_tickets off;
33 +
34 + # intermediate configuration
35 + ssl_dhparam /etc/nginx/certs/dhparams.pem;
36 + ssl_protocols TLSv1.2 TLSv1.3;
37 + ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
38 + ssl_prefer_server_ciphers off;
39 +
40 + # enable HSTS
41 + add_header Strict-Transport-Security "max-age=15768000; includeSubdomains";
42 + add_header X-Frame-Options SAMEORIGIN;
43 +
44 + # added headers for hardening browser security
45 + add_header Referrer-Policy "no-referrer" always;
46 + add_header X-Content-Type-Options "nosniff" always;
47 + add_header X-Download-Options "noopen" always;
48 + add_header X-Frame-Options "SAMEORIGIN" always;
49 + add_header X-Permitted-Cross-Domain-Policies "none" always;
50 + add_header X-Robots-Tag "none" always;
51 + add_header X-XSS-Protection "1; mode=block" always;
52 +
53 + # remove X-Powered-By, which is an information leak
54 + fastcgi_hide_header X-Powered-By;
55 +
56 + # Proxy /api requests to the FastAPI backend
57 + location /api {
58 + proxy_set_header Host $host;
59 + proxy_set_header X-Real-IP $remote_addr;
60 + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
61 + proxy_set_header X-Forwarded-Proto $scheme;
62 + proxy_pass http://copilot-backend:5000;
63 + }
64 +
65 + # location for scoutsuite-report
66 + location /scoutsuite-report {
67 + proxy_set_header Host $host;
68 + proxy_set_header X-Real-IP $remote_addr;
69 + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
70 + proxy_set_header X-Forwarded-Proto $scheme;
71 + proxy_pass http://copilot-backend:5000;
72 + }
73 +
74 + # Run all other routes through the frontend
75 + location / {
76 + client_max_body_size 0;
77 + try_files $uri $uri/ /index.html;
78 + }
79 +}
customer-portal/package.json
+3 -3
@@ -38,7 +38,7 @@
38 "@shikijs/markdown-it": "^4.0.2",
39 "@vueuse/core": "^14.2.1",
40 "@vueuse/motion": "^3.0.3",
41 - "axios": "^1.15.0",
41 + "axios": "^1.15.1",
42 "bytes": "^3.1.2",
43 "colord": "^2.9.3",
44 "dayjs": "^1.11.20",
@@ -109,7 +109,7 @@
109 "vite-plugin-inspect": "^11.3.3",
110 "vite-plugin-vue-devtools": "^8.1.1",
111 "vite-svg-loader": "^5.1.1",
112 - "vue-tsc": "^3.2.6"
112 + "vue-tsc": "^3.2.7"
113 },
114 "pnpm": {
115 "peerDependencyRules": {
@@ -124,4 +124,4 @@
124 "unrs-resolver"
125 ]
126 }
127 -}
127 +}
\ No newline at end of file
customer-portal/pnpm-lock.yaml
+779 -1223
@@ -30,8 +30,8 @@ importers:
30 specifier: ^3.0.3
31 version: 3.0.3(vue@3.5.32(typescript@5.9.3))
32 axios:
33 - specifier: ^1.15.0
34 - version: 1.15.0
33 + specifier: ^1.15.1
34 + version: 1.15.1
35 bytes:
36 specifier: ^3.1.2
37 version: 3.1.2
@@ -79,7 +79,7 @@ importers:
79 version: 3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3))
80 pinia-plugin-persistedstate:
81 specifier: ^4.7.1
82 - version: 4.7.1(@nuxt/kit@3.20.2)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3)))
82 + version: 4.7.1(@nuxt/kit@3.21.2)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3)))
83 secure-ls:
84 specifier: ^2.0.0
85 version: 2.0.0
@@ -88,7 +88,7 @@ importers:
88 version: 4.0.2
89 thememirror:
90 specifier: ^2.0.1
91 - version: 2.0.1(@codemirror/language@6.12.1)(@codemirror/state@6.5.3)(@codemirror/view@6.39.7)
91 + version: 2.0.1(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.41.1)
92 validator:
93 specifier: ^13.15.35
94 version: 13.15.35
@@ -109,7 +109,7 @@ importers:
109 version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3)))(vue@3.5.32(typescript@5.9.3))
110 vue3-apexcharts:
111 specifier: ^1.11.1
112 - version: 1.11.1(apexcharts@5.3.6)(vue@3.5.32(typescript@5.9.3))
112 + version: 1.11.1(apexcharts@5.10.6)(vue@3.5.32(typescript@5.9.3))
113 vue3-marquee:
114 specifier: ^4.2.2
115 version: 4.2.2(vue@3.5.32(typescript@5.9.3))
@@ -119,7 +119,7 @@ importers:
119 devDependencies:
120 '@antfu/eslint-config':
121 specifier: ~8.2.0
122 - version: 8.2.0(@typescript-eslint/rule-tester@8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@vue/compiler-sfc@3.5.32)(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
122 + version: 8.2.0(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@vue/compiler-sfc@3.5.32)(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
123 '@clack/prompts':
124 specifier: ^1.2.0
125 version: 1.2.0
@@ -128,7 +128,7 @@ importers:
128 version: 5.0.0(vue@3.5.32(typescript@5.9.3))
129 '@tailwindcss/vite':
130 specifier: ^4.2.2
131 - version: 4.2.2(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
131 + version: 4.2.2(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
132 '@tsconfig/node20':
133 specifier: ^20.1.9
134 version: 20.1.9
@@ -158,10 +158,10 @@ importers:
158 version: 13.15.10
159 '@vitejs/plugin-vue':
160 specifier: ^6.0.6
161 - version: 6.0.6(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))
161 + version: 6.0.6(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))
162 '@vitejs/plugin-vue-jsx':
163 specifier: ^5.1.5
164 - version: 5.1.5(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))
164 + version: 5.1.5(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))
165 '@vue/tsconfig':
166 specifier: ~0.9.1
167 version: 0.9.1(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3))
@@ -209,26 +209,26 @@ importers:
209 version: 5.9.3
210 vite:
211 specifier: ^7.3.1
212 - version: 7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
212 + version: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
213 vite-bundle-visualizer:
214 specifier: ^1.2.1
215 - version: 1.2.1(rollup@4.54.0)
215 + version: 1.2.1(rollup@4.60.2)
216 vite-plugin-inspect:
217 specifier: ^11.3.3
218 - version: 11.3.3(@nuxt/kit@3.20.2)(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
218 + version: 11.3.3(@nuxt/kit@3.21.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
219 vite-plugin-vue-devtools:
220 specifier: ^8.1.1
221 - version: 8.1.1(@nuxt/kit@3.20.2)(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))
221 + version: 8.1.1(@nuxt/kit@3.21.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))
222 vite-svg-loader:
223 specifier: ^5.1.1
224 version: 5.1.1(vue@3.5.32(typescript@5.9.3))
225 vue-tsc:
226 - specifier: ^3.2.6
227 - version: 3.2.6(typescript@5.9.3)
226 + specifier: ^3.2.7
227 + version: 3.2.7(typescript@5.9.3)
228 optionalDependencies:
229 '@rollup/rollup-linux-x64-gnu':
230 specifier: ^4.46.2
231 - version: 4.54.0
231 + version: 4.60.2
232 treemate:
233 specifier: ^0.3.11
234 version: 0.3.11
@@ -311,8 +311,8 @@ packages:
311 resolution: {integrity: sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg==}
312 engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
313
314 - '@asamuzakjp/dom-selector@7.0.10':
315 - resolution: {integrity: sha512-KyOb19eytNSELkmdqzZZUXWCU25byIlOld5qVFg0RYdS0T3tt7jeDByxk9hIAC73frclD8GKrHttr0SUjKCCdQ==}
314 + '@asamuzakjp/dom-selector@7.1.1':
315 + resolution: {integrity: sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ==}
316 engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
317
318 '@asamuzakjp/generational-cache@1.0.1':
@@ -322,10 +322,6 @@ packages:
322 '@asamuzakjp/nwsapi@2.3.9':
323 resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==}
324
325 - '@babel/code-frame@7.27.1':
326 - resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
327 - engines: {node: '>=6.9.0'}
328 -
325 '@babel/code-frame@7.29.0':
326 resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
327 engines: {node: '>=6.9.0'}
@@ -338,12 +334,8 @@ packages:
334 resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
335 engines: {node: '>=6.9.0'}
336
341 - '@babel/generator@7.28.5':
342 - resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
343 - engines: {node: '>=6.9.0'}
344 -
345 - '@babel/generator@7.29.0':
346 - resolution: {integrity: sha512-vSH118/wwM/pLR38g/Sgk05sNtro6TlTJKuiMXDaZqPUfjTFcudpCOt00IhOfj+1BFAX+UFAlzCU+6WXr3GLFQ==}
337 + '@babel/generator@7.29.1':
338 + resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
339 engines: {node: '>=6.9.0'}
340
341 '@babel/helper-annotate-as-pure@7.27.3':
@@ -382,10 +374,6 @@ packages:
374 resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
375 engines: {node: '>=6.9.0'}
376
385 - '@babel/helper-plugin-utils@7.27.1':
386 - resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
387 - engines: {node: '>=6.9.0'}
388 -
377 '@babel/helper-plugin-utils@7.28.6':
378 resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
379 engines: {node: '>=6.9.0'}
@@ -412,39 +400,29 @@ packages:
400 resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
401 engines: {node: '>=6.9.0'}
402
415 - '@babel/helpers@7.28.6':
416 - resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
403 + '@babel/helpers@7.29.2':
404 + resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==}
405 engines: {node: '>=6.9.0'}
406
419 - '@babel/parser@7.28.5':
420 - resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
421 - engines: {node: '>=6.0.0'}
422 - hasBin: true
423 -
424 - '@babel/parser@7.29.0':
425 - resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
426 - engines: {node: '>=6.0.0'}
427 - hasBin: true
428 -
407 '@babel/parser@7.29.2':
408 resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
409 engines: {node: '>=6.0.0'}
410 hasBin: true
411
434 - '@babel/plugin-proposal-decorators@7.28.0':
435 - resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==}
412 + '@babel/plugin-proposal-decorators@7.29.0':
413 + resolution: {integrity: sha512-CVBVv3VY/XRMxRYq5dwr2DS7/MvqPm23cOCjbwNnVrfOqcWlnefua1uUs0sjdKOGjvPUG633o07uWzJq4oI6dA==}
414 engines: {node: '>=6.9.0'}
415 peerDependencies:
416 '@babel/core': ^7.0.0-0
417
440 - '@babel/plugin-syntax-decorators@7.27.1':
441 - resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==}
418 + '@babel/plugin-syntax-decorators@7.28.6':
419 + resolution: {integrity: sha512-71EYI0ONURHJBL4rSFXnITXqXrrY8q4P0q006DPfN+Rk+ASM+++IBXem/ruokgBZR8YNEWZ8R6B+rCb8VcUTqA==}
420 engines: {node: '>=6.9.0'}
421 peerDependencies:
422 '@babel/core': ^7.0.0-0
423
446 - '@babel/plugin-syntax-import-attributes@7.27.1':
447 - resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
424 + '@babel/plugin-syntax-import-attributes@7.28.6':
425 + resolution: {integrity: sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==}
426 engines: {node: '>=6.9.0'}
427 peerDependencies:
428 '@babel/core': ^7.0.0-0
@@ -454,8 +432,8 @@ packages:
432 peerDependencies:
433 '@babel/core': ^7.0.0-0
434
457 - '@babel/plugin-syntax-jsx@7.27.1':
458 - resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
435 + '@babel/plugin-syntax-jsx@7.28.6':
436 + resolution: {integrity: sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==}
437 engines: {node: '>=6.9.0'}
438 peerDependencies:
439 '@babel/core': ^7.0.0-0
@@ -472,26 +450,14 @@ packages:
450 peerDependencies:
451 '@babel/core': ^7.0.0-0
452
475 - '@babel/template@7.27.2':
476 - resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
477 - engines: {node: '>=6.9.0'}
478 -
453 '@babel/template@7.28.6':
454 resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
455 engines: {node: '>=6.9.0'}
456
483 - '@babel/traverse@7.28.5':
484 - resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
485 - engines: {node: '>=6.9.0'}
486 -
457 '@babel/traverse@7.29.0':
458 resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
459 engines: {node: '>=6.9.0'}
460
491 - '@babel/types@7.28.5':
492 - resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
493 - engines: {node: '>=6.9.0'}
494 -
461 '@babel/types@7.29.0':
462 resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
463 engines: {node: '>=6.9.0'}
@@ -506,14 +472,14 @@ packages:
472 '@clack/prompts@1.2.0':
473 resolution: {integrity: sha512-4jmztR9fMqPMjz6H/UZXj0zEmE43ha1euENwkckKKel4XpSfokExPo5AiVStdHSAlHekz4d0CA/r45Ok1E4D3w==}
474
509 - '@codemirror/language@6.12.1':
510 - resolution: {integrity: sha512-Fa6xkSiuGKc8XC8Cn96T+TQHYj4ZZ7RdFmXA3i9xe/3hLHfwPZdM+dqfX0Cp0zQklBKhVD8Yzc8LS45rkqcwpQ==}
475 + '@codemirror/language@6.12.3':
476 + resolution: {integrity: sha512-QwCZW6Tt1siP37Jet9Tb02Zs81TQt6qQrZR2H+eGMcFsL1zMrk2/b9CLC7/9ieP1fjIUMgviLWMmgiHoJrj+ZA==}
477
512 - '@codemirror/state@6.5.3':
513 - resolution: {integrity: sha512-MerMzJzlXogk2fxWFU1nKp36bY5orBG59HnPiz0G9nLRebWa0zXuv2siH6PLIHBvv5TH8CkQRqjBs0MlxCZu+A==}
478 + '@codemirror/state@6.6.0':
479 + resolution: {integrity: sha512-4nbvra5R5EtiCzr9BTHiTLc+MLXK2QGiAVYMyi8PkQd3SR+6ixar/Q/01Fa21TBIDOZXgeWV4WppsQolSreAPQ==}
480
515 - '@codemirror/view@6.39.7':
516 - resolution: {integrity: sha512-3Vif9hnNHJnl2YgOtkR/wzGzhYcQ8gy3LGdUhkLUU8xSBbgsTxrE8he/CMTpeINm5TgxLe2FmzvF6IYQL/BSAg==}
481 + '@codemirror/view@6.41.1':
482 + resolution: {integrity: sha512-ToDnWKbBnke+ZLrP6vgTTDScGi5H37YYuZGniQaBzxMVdtCxMrslsmtnOvbPZk4RX9bvkQqnWR/WS/35tJA0qg==}
483
484 '@colors/colors@1.5.0':
485 resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
@@ -553,8 +519,8 @@ packages:
519 peerDependencies:
520 '@csstools/css-tokenizer': ^4.0.0
521
556 - '@csstools/css-syntax-patches-for-csstree@1.1.1':
557 - resolution: {integrity: sha512-BvqN0AMWNAnLk9G8jnUT77D+mUbY/H2b3uDTvg2isJkHaOufUE2R3AOwxWo7VBQKT1lOdwdvorddo2B/lk64+w==}
522 + '@csstools/css-syntax-patches-for-csstree@1.1.3':
523 + resolution: {integrity: sha512-SH60bMfrRCJF3morcdk57WklujF4Jr/EsQUzqkarfHXEFcAR1gg7fS/chAE922Sehgzc1/+Tz5H3Ypa1HiEKrg==}
524 peerDependencies:
525 css-tree: ^3.2.1
526 peerDependenciesMeta:
@@ -591,158 +557,158 @@ packages:
557 resolution: {integrity: sha512-Q9hjxWI5xBM+qW2enxfe8wDKdFWMfd0Z29k5ZJnuBqD/CasY5Zryj09aCA6owbGATWz+39p5uIdaHXpopOcG8g==}
558 engines: {node: '>=10'}
559
594 - '@esbuild/aix-ppc64@0.27.2':
595 - resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
560 + '@esbuild/aix-ppc64@0.27.7':
561 + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==}
562 engines: {node: '>=18'}
563 cpu: [ppc64]
564 os: [aix]
565
600 - '@esbuild/android-arm64@0.27.2':
601 - resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
566 + '@esbuild/android-arm64@0.27.7':
567 + resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==}
568 engines: {node: '>=18'}
569 cpu: [arm64]
570 os: [android]
571
606 - '@esbuild/android-arm@0.27.2':
607 - resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
572 + '@esbuild/android-arm@0.27.7':
573 + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==}
574 engines: {node: '>=18'}
575 cpu: [arm]
576 os: [android]
577
612 - '@esbuild/android-x64@0.27.2':
613 - resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
578 + '@esbuild/android-x64@0.27.7':
579 + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==}
580 engines: {node: '>=18'}
581 cpu: [x64]
582 os: [android]
583
618 - '@esbuild/darwin-arm64@0.27.2':
619 - resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
584 + '@esbuild/darwin-arm64@0.27.7':
585 + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==}
586 engines: {node: '>=18'}
587 cpu: [arm64]
588 os: [darwin]
589
624 - '@esbuild/darwin-x64@0.27.2':
625 - resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
590 + '@esbuild/darwin-x64@0.27.7':
591 + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==}
592 engines: {node: '>=18'}
593 cpu: [x64]
594 os: [darwin]
595
630 - '@esbuild/freebsd-arm64@0.27.2':
631 - resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
596 + '@esbuild/freebsd-arm64@0.27.7':
597 + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==}
598 engines: {node: '>=18'}
599 cpu: [arm64]
600 os: [freebsd]
601
636 - '@esbuild/freebsd-x64@0.27.2':
637 - resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
602 + '@esbuild/freebsd-x64@0.27.7':
603 + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==}
604 engines: {node: '>=18'}
605 cpu: [x64]
606 os: [freebsd]
607
642 - '@esbuild/linux-arm64@0.27.2':
643 - resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
608 + '@esbuild/linux-arm64@0.27.7':
609 + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==}
610 engines: {node: '>=18'}
611 cpu: [arm64]
612 os: [linux]
613
648 - '@esbuild/linux-arm@0.27.2':
649 - resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
614 + '@esbuild/linux-arm@0.27.7':
615 + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==}
616 engines: {node: '>=18'}
617 cpu: [arm]
618 os: [linux]
619
654 - '@esbuild/linux-ia32@0.27.2':
655 - resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
620 + '@esbuild/linux-ia32@0.27.7':
621 + resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==}
622 engines: {node: '>=18'}
623 cpu: [ia32]
624 os: [linux]
625
660 - '@esbuild/linux-loong64@0.27.2':
661 - resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
626 + '@esbuild/linux-loong64@0.27.7':
627 + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==}
628 engines: {node: '>=18'}
629 cpu: [loong64]
630 os: [linux]
631
666 - '@esbuild/linux-mips64el@0.27.2':
667 - resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
632 + '@esbuild/linux-mips64el@0.27.7':
633 + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==}
634 engines: {node: '>=18'}
635 cpu: [mips64el]
636 os: [linux]
637
672 - '@esbuild/linux-ppc64@0.27.2':
673 - resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
638 + '@esbuild/linux-ppc64@0.27.7':
639 + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==}
640 engines: {node: '>=18'}
641 cpu: [ppc64]
642 os: [linux]
643
678 - '@esbuild/linux-riscv64@0.27.2':
679 - resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
644 + '@esbuild/linux-riscv64@0.27.7':
645 + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==}
646 engines: {node: '>=18'}
647 cpu: [riscv64]
648 os: [linux]
649
684 - '@esbuild/linux-s390x@0.27.2':
685 - resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
650 + '@esbuild/linux-s390x@0.27.7':
651 + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==}
652 engines: {node: '>=18'}
653 cpu: [s390x]
654 os: [linux]
655
690 - '@esbuild/linux-x64@0.27.2':
691 - resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
656 + '@esbuild/linux-x64@0.27.7':
657 + resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==}
658 engines: {node: '>=18'}
659 cpu: [x64]
660 os: [linux]
661
696 - '@esbuild/netbsd-arm64@0.27.2':
697 - resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
662 + '@esbuild/netbsd-arm64@0.27.7':
663 + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==}
664 engines: {node: '>=18'}
665 cpu: [arm64]
666 os: [netbsd]
667
702 - '@esbuild/netbsd-x64@0.27.2':
703 - resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
668 + '@esbuild/netbsd-x64@0.27.7':
669 + resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==}
670 engines: {node: '>=18'}
671 cpu: [x64]
672 os: [netbsd]
673
708 - '@esbuild/openbsd-arm64@0.27.2':
709 - resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
674 + '@esbuild/openbsd-arm64@0.27.7':
675 + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==}
676 engines: {node: '>=18'}
677 cpu: [arm64]
678 os: [openbsd]
679
714 - '@esbuild/openbsd-x64@0.27.2':
715 - resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
680 + '@esbuild/openbsd-x64@0.27.7':
681 + resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==}
682 engines: {node: '>=18'}
683 cpu: [x64]
684 os: [openbsd]
685
720 - '@esbuild/openharmony-arm64@0.27.2':
721 - resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
686 + '@esbuild/openharmony-arm64@0.27.7':
687 + resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==}
688 engines: {node: '>=18'}
689 cpu: [arm64]
690 os: [openharmony]
691
726 - '@esbuild/sunos-x64@0.27.2':
727 - resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
692 + '@esbuild/sunos-x64@0.27.7':
693 + resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==}
694 engines: {node: '>=18'}
695 cpu: [x64]
696 os: [sunos]
697
732 - '@esbuild/win32-arm64@0.27.2':
733 - resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
698 + '@esbuild/win32-arm64@0.27.7':
699 + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==}
700 engines: {node: '>=18'}
701 cpu: [arm64]
702 os: [win32]
703
738 - '@esbuild/win32-ia32@0.27.2':
739 - resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
704 + '@esbuild/win32-ia32@0.27.7':
705 + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==}
706 engines: {node: '>=18'}
707 cpu: [ia32]
708 os: [win32]
709
744 - '@esbuild/win32-x64@0.27.2':
745 - resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
710 + '@esbuild/win32-x64@0.27.7':
711 + resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==}
712 engines: {node: '>=18'}
713 cpu: [x64]
714 os: [win32]
@@ -776,18 +742,10 @@ packages:
742 resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==}
743 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
744
779 - '@eslint/config-helpers@0.5.3':
780 - resolution: {integrity: sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==}
781 - engines: {node: ^20.19.0 || ^22.13.0 || >=24}
782 -
745 '@eslint/config-helpers@0.5.5':
746 resolution: {integrity: sha512-eIJYKTCECbP/nsKaaruF6LW967mtbQbsw4JTtSVkUQc9MneSkbrgPJAbKl9nWr0ZeowV8BfsarBmPpBzGelA2w==}
747 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
748
787 - '@eslint/core@1.1.1':
788 - resolution: {integrity: sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==}
789 - engines: {node: ^20.19.0 || ^22.13.0 || >=24}
790 -
749 '@eslint/core@1.2.1':
750 resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
751 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
@@ -834,12 +792,16 @@ packages:
792 '@henrygd/queue@1.2.0':
793 resolution: {integrity: sha512-jW/BLSTpcvExDhqJGxtIPgGr2O0IFF8XUNDwEbfCfhrXT8a4xztQ9Lv6U/vbYzYC0xVWn+3zv6YnLUh3bEFUKA==}
794
837 - '@humanfs/core@0.19.1':
838 - resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
795 + '@humanfs/core@0.19.2':
796 + resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==}
797 engines: {node: '>=18.18.0'}
798
841 - '@humanfs/node@0.16.7':
842 - resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
799 + '@humanfs/node@0.16.8':
800 + resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==}
801 + engines: {node: '>=18.18.0'}
802 +
803 + '@humanfs/types@0.15.0':
804 + resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==}
805 engines: {node: '>=18.18.0'}
806
807 '@humanwhocodes/module-importer@1.0.1':
@@ -908,14 +870,14 @@ packages:
870 '@juggle/resize-observer@3.4.0':
871 resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
872
911 - '@lezer/common@1.5.0':
912 - resolution: {integrity: sha512-PNGcolp9hr4PJdXR4ix7XtixDrClScvtSCYW3rQG106oVMOOI+jFb+0+J3mbeL/53g1Zd6s0kJzaw6Ri68GmAA==}
873 + '@lezer/common@1.5.2':
874 + resolution: {integrity: sha512-sxQE460fPZyU3sdc8lafxiPwJHBzZRy/udNFynGQky1SePYBdhkBl1kOagA9uT3pxR8K09bOrmTUqA9wb/PjSQ==}
875
876 '@lezer/highlight@1.2.3':
877 resolution: {integrity: sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==}
878
917 - '@lezer/lr@1.4.5':
918 - resolution: {integrity: sha512-/YTRKP5yPPSo1xImYQk7AZZMAgap0kegzqCSYHjAL9x1AZ0ZQW+IpcEzMKagCsbTsLnVeWkxYrCNeXG8xEPrjg==}
879 + '@lezer/lr@1.4.10':
880 + resolution: {integrity: sha512-rnCpTIBafOx4mRp43xOxDJbFipJm/c0cia/V5TiGlhmMa+wsSdoGmUN3w5Bqrks/09Q/D4tNAmWaT8p6NRi77A==}
881
882 '@marijn/find-cluster-break@1.0.2':
883 resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==}
@@ -932,100 +894,100 @@ packages:
894 resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
895 engines: {node: '>= 8'}
896
935 - '@nuxt/kit@3.20.2':
936 - resolution: {integrity: sha512-laqfmMcWWNV1FsVmm1+RQUoGY8NIJvCRl0z0K8ikqPukoEry0LXMqlQ+xaf8xJRvoH2/78OhZmsEEsUBTXipcw==}
897 + '@nuxt/kit@3.21.2':
898 + resolution: {integrity: sha512-Bd6m6mrDrqpBEbX+g0rc66/ALd1sxlgdx5nfK9MAYO0yKLTOSK7McSYz1KcOYn3LQFCXOWfvXwaqih/b+REI1g==}
899 engines: {node: '>=18.12.0'}
900
901 '@ota-meshi/ast-token-store@0.3.0':
902 resolution: {integrity: sha512-XRO0zi2NIUKq2lUk3T1ecFSld1fMWRKE6naRFGkgkdeosx7IslyUKNv5Dcb5PJTja9tHJoFu0v/7yEpAkrkrTg==}
903 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
904
943 - '@parcel/watcher-android-arm64@2.5.1':
944 - resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
905 + '@parcel/watcher-android-arm64@2.5.6':
906 + resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==}
907 engines: {node: '>= 10.0.0'}
908 cpu: [arm64]
909 os: [android]
910
949 - '@parcel/watcher-darwin-arm64@2.5.1':
950 - resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
911 + '@parcel/watcher-darwin-arm64@2.5.6':
912 + resolution: {integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==}
913 engines: {node: '>= 10.0.0'}
914 cpu: [arm64]
915 os: [darwin]
916
955 - '@parcel/watcher-darwin-x64@2.5.1':
956 - resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
917 + '@parcel/watcher-darwin-x64@2.5.6':
918 + resolution: {integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==}
919 engines: {node: '>= 10.0.0'}
920 cpu: [x64]
921 os: [darwin]
922
961 - '@parcel/watcher-freebsd-x64@2.5.1':
962 - resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
923 + '@parcel/watcher-freebsd-x64@2.5.6':
924 + resolution: {integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==}
925 engines: {node: '>= 10.0.0'}
926 cpu: [x64]
927 os: [freebsd]
928
967 - '@parcel/watcher-linux-arm-glibc@2.5.1':
968 - resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
929 + '@parcel/watcher-linux-arm-glibc@2.5.6':
930 + resolution: {integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==}
931 engines: {node: '>= 10.0.0'}
932 cpu: [arm]
933 os: [linux]
934 libc: [glibc]
935
974 - '@parcel/watcher-linux-arm-musl@2.5.1':
975 - resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
936 + '@parcel/watcher-linux-arm-musl@2.5.6':
937 + resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==}
938 engines: {node: '>= 10.0.0'}
939 cpu: [arm]
940 os: [linux]
941 libc: [musl]
942
981 - '@parcel/watcher-linux-arm64-glibc@2.5.1':
982 - resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
943 + '@parcel/watcher-linux-arm64-glibc@2.5.6':
944 + resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==}
945 engines: {node: '>= 10.0.0'}
946 cpu: [arm64]
947 os: [linux]
948 libc: [glibc]
949
988 - '@parcel/watcher-linux-arm64-musl@2.5.1':
989 - resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
950 + '@parcel/watcher-linux-arm64-musl@2.5.6':
951 + resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==}
952 engines: {node: '>= 10.0.0'}
953 cpu: [arm64]
954 os: [linux]
955 libc: [musl]
956
995 - '@parcel/watcher-linux-x64-glibc@2.5.1':
996 - resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
957 + '@parcel/watcher-linux-x64-glibc@2.5.6':
958 + resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==}
959 engines: {node: '>= 10.0.0'}
960 cpu: [x64]
961 os: [linux]
962 libc: [glibc]
963
1002 - '@parcel/watcher-linux-x64-musl@2.5.1':
1003 - resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
964 + '@parcel/watcher-linux-x64-musl@2.5.6':
965 + resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==}
966 engines: {node: '>= 10.0.0'}
967 cpu: [x64]
968 os: [linux]
969 libc: [musl]
970
1009 - '@parcel/watcher-win32-arm64@2.5.1':
1010 - resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
971 + '@parcel/watcher-win32-arm64@2.5.6':
972 + resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==}
973 engines: {node: '>= 10.0.0'}
974 cpu: [arm64]
975 os: [win32]
976
1015 - '@parcel/watcher-win32-ia32@2.5.1':
1016 - resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
977 + '@parcel/watcher-win32-ia32@2.5.6':
978 + resolution: {integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==}
979 engines: {node: '>= 10.0.0'}
980 cpu: [ia32]
981 os: [win32]
982
1021 - '@parcel/watcher-win32-x64@2.5.1':
1022 - resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
983 + '@parcel/watcher-win32-x64@2.5.6':
984 + resolution: {integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==}
985 engines: {node: '>= 10.0.0'}
986 cpu: [x64]
987 os: [win32]
988
1027 - '@parcel/watcher@2.5.1':
1028 - resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
989 + '@parcel/watcher@2.5.6':
990 + resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==}
991 engines: {node: '>= 10.0.0'}
992
993 '@pkgr/core@0.2.9':
@@ -1041,127 +1003,144 @@ packages:
1003 '@rolldown/pluginutils@1.0.0-rc.13':
1004 resolution: {integrity: sha512-3ngTAv6F/Py35BsYbeeLeecvhMKdsKm4AoOETVhAA+Qc8nrA2I0kF7oa93mE9qnIurngOSpMnQ0x2nQY2FPviA==}
1005
1044 - '@rolldown/pluginutils@1.0.0-rc.2':
1045 - resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==}
1006 + '@rolldown/pluginutils@1.0.0-rc.16':
1007 + resolution: {integrity: sha512-45+YtqxLYKDWQouLKCrpIZhke+nXxhsw+qAHVzHDVwttyBlHNBVs2K25rDXrZzhpTp9w1FlAlvweV1H++fdZoA==}
1008
1047 - '@rollup/rollup-android-arm-eabi@4.54.0':
1048 - resolution: {integrity: sha512-OywsdRHrFvCdvsewAInDKCNyR3laPA2mc9bRYJ6LBp5IyvF3fvXbbNR0bSzHlZVFtn6E0xw2oZlyjg4rKCVcng==}
1009 + '@rollup/rollup-android-arm-eabi@4.60.2':
1010 + resolution: {integrity: sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==}
1011 cpu: [arm]
1012 os: [android]
1013
1052 - '@rollup/rollup-android-arm64@4.54.0':
1053 - resolution: {integrity: sha512-Skx39Uv+u7H224Af+bDgNinitlmHyQX1K/atIA32JP3JQw6hVODX5tkbi2zof/E69M1qH2UoN3Xdxgs90mmNYw==}
1014 + '@rollup/rollup-android-arm64@4.60.2':
1015 + resolution: {integrity: sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==}
1016 cpu: [arm64]
1017 os: [android]
1018
1057 - '@rollup/rollup-darwin-arm64@4.54.0':
1058 - resolution: {integrity: sha512-k43D4qta/+6Fq+nCDhhv9yP2HdeKeP56QrUUTW7E6PhZP1US6NDqpJj4MY0jBHlJivVJD5P8NxrjuobZBJTCRw==}
1019 + '@rollup/rollup-darwin-arm64@4.60.2':
1020 + resolution: {integrity: sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==}
1021 cpu: [arm64]
1022 os: [darwin]
1023
1062 - '@rollup/rollup-darwin-x64@4.54.0':
1063 - resolution: {integrity: sha512-cOo7biqwkpawslEfox5Vs8/qj83M/aZCSSNIWpVzfU2CYHa2G3P1UN5WF01RdTHSgCkri7XOlTdtk17BezlV3A==}
1024 + '@rollup/rollup-darwin-x64@4.60.2':
1025 + resolution: {integrity: sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==}
1026 cpu: [x64]
1027 os: [darwin]
1028
1067 - '@rollup/rollup-freebsd-arm64@4.54.0':
1068 - resolution: {integrity: sha512-miSvuFkmvFbgJ1BevMa4CPCFt5MPGw094knM64W9I0giUIMMmRYcGW/JWZDriaw/k1kOBtsWh1z6nIFV1vPNtA==}
1029 + '@rollup/rollup-freebsd-arm64@4.60.2':
1030 + resolution: {integrity: sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==}
1031 cpu: [arm64]
1032 os: [freebsd]
1033
1072 - '@rollup/rollup-freebsd-x64@4.54.0':
1073 - resolution: {integrity: sha512-KGXIs55+b/ZfZsq9aR026tmr/+7tq6VG6MsnrvF4H8VhwflTIuYh+LFUlIsRdQSgrgmtM3fVATzEAj4hBQlaqQ==}
1034 + '@rollup/rollup-freebsd-x64@4.60.2':
1035 + resolution: {integrity: sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==}
1036 cpu: [x64]
1037 os: [freebsd]
1038
1077 - '@rollup/rollup-linux-arm-gnueabihf@4.54.0':
1078 - resolution: {integrity: sha512-EHMUcDwhtdRGlXZsGSIuXSYwD5kOT9NVnx9sqzYiwAc91wfYOE1g1djOEDseZJKKqtHAHGwnGPQu3kytmfaXLQ==}
1039 + '@rollup/rollup-linux-arm-gnueabihf@4.60.2':
1040 + resolution: {integrity: sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==}
1041 cpu: [arm]
1042 os: [linux]
1043 libc: [glibc]
1044
1083 - '@rollup/rollup-linux-arm-musleabihf@4.54.0':
1084 - resolution: {integrity: sha512-+pBrqEjaakN2ySv5RVrj/qLytYhPKEUwk+e3SFU5jTLHIcAtqh2rLrd/OkbNuHJpsBgxsD8ccJt5ga/SeG0JmA==}
1045 + '@rollup/rollup-linux-arm-musleabihf@4.60.2':
1046 + resolution: {integrity: sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==}
1047 cpu: [arm]
1048 os: [linux]
1049 libc: [musl]
1050
1089 - '@rollup/rollup-linux-arm64-gnu@4.54.0':
1090 - resolution: {integrity: sha512-NSqc7rE9wuUaRBsBp5ckQ5CVz5aIRKCwsoa6WMF7G01sX3/qHUw/z4pv+D+ahL1EIKy6Enpcnz1RY8pf7bjwng==}
1051 + '@rollup/rollup-linux-arm64-gnu@4.60.2':
1052 + resolution: {integrity: sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==}
1053 cpu: [arm64]
1054 os: [linux]
1055 libc: [glibc]
1056
1095 - '@rollup/rollup-linux-arm64-musl@4.54.0':
1096 - resolution: {integrity: sha512-gr5vDbg3Bakga5kbdpqx81m2n9IX8M6gIMlQQIXiLTNeQW6CucvuInJ91EuCJ/JYvc+rcLLsDFcfAD1K7fMofg==}
1057 + '@rollup/rollup-linux-arm64-musl@4.60.2':
1058 + resolution: {integrity: sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==}
1059 cpu: [arm64]
1060 os: [linux]
1061 libc: [musl]
1062
1101 - '@rollup/rollup-linux-loong64-gnu@4.54.0':
1102 - resolution: {integrity: sha512-gsrtB1NA3ZYj2vq0Rzkylo9ylCtW/PhpLEivlgWe0bpgtX5+9j9EZa0wtZiCjgu6zmSeZWyI/e2YRX1URozpIw==}
1063 + '@rollup/rollup-linux-loong64-gnu@4.60.2':
1064 + resolution: {integrity: sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==}
1065 cpu: [loong64]
1066 os: [linux]
1067 libc: [glibc]
1068
1107 - '@rollup/rollup-linux-ppc64-gnu@4.54.0':
1108 - resolution: {integrity: sha512-y3qNOfTBStmFNq+t4s7Tmc9hW2ENtPg8FeUD/VShI7rKxNW7O4fFeaYbMsd3tpFlIg1Q8IapFgy7Q9i2BqeBvA==}
1069 + '@rollup/rollup-linux-loong64-musl@4.60.2':
1070 + resolution: {integrity: sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==}
1071 + cpu: [loong64]
1072 + os: [linux]
1073 + libc: [musl]
1074 +
1075 + '@rollup/rollup-linux-ppc64-gnu@4.60.2':
1076 + resolution: {integrity: sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==}
1077 cpu: [ppc64]
1078 os: [linux]
1079 libc: [glibc]
1080
1113 - '@rollup/rollup-linux-riscv64-gnu@4.54.0':
1114 - resolution: {integrity: sha512-89sepv7h2lIVPsFma8iwmccN7Yjjtgz0Rj/Ou6fEqg3HDhpCa+Et+YSufy27i6b0Wav69Qv4WBNl3Rs6pwhebQ==}
1081 + '@rollup/rollup-linux-ppc64-musl@4.60.2':
1082 + resolution: {integrity: sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==}
1083 + cpu: [ppc64]
1084 + os: [linux]
1085 + libc: [musl]
1086 +
1087 + '@rollup/rollup-linux-riscv64-gnu@4.60.2':
1088 + resolution: {integrity: sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==}
1089 cpu: [riscv64]
1090 os: [linux]
1091 libc: [glibc]
1092
1119 - '@rollup/rollup-linux-riscv64-musl@4.54.0':
1120 - resolution: {integrity: sha512-ZcU77ieh0M2Q8Ur7D5X7KvK+UxbXeDHwiOt/CPSBTI1fBmeDMivW0dPkdqkT4rOgDjrDDBUed9x4EgraIKoR2A==}
1093 + '@rollup/rollup-linux-riscv64-musl@4.60.2':
1094 + resolution: {integrity: sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==}
1095 cpu: [riscv64]
1096 os: [linux]
1097 libc: [musl]
1098
1125 - '@rollup/rollup-linux-s390x-gnu@4.54.0':
1126 - resolution: {integrity: sha512-2AdWy5RdDF5+4YfG/YesGDDtbyJlC9LHmL6rZw6FurBJ5n4vFGupsOBGfwMRjBYH7qRQowT8D/U4LoSvVwOhSQ==}
1099 + '@rollup/rollup-linux-s390x-gnu@4.60.2':
1100 + resolution: {integrity: sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==}
1101 cpu: [s390x]
1102 os: [linux]
1103 libc: [glibc]
1104
1131 - '@rollup/rollup-linux-x64-gnu@4.54.0':
1132 - resolution: {integrity: sha512-WGt5J8Ij/rvyqpFexxk3ffKqqbLf9AqrTBbWDk7ApGUzaIs6V+s2s84kAxklFwmMF/vBNGrVdYgbblCOFFezMQ==}
1105 + '@rollup/rollup-linux-x64-gnu@4.60.2':
1106 + resolution: {integrity: sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==}
1107 cpu: [x64]
1108 os: [linux]
1109 libc: [glibc]
1110
1137 - '@rollup/rollup-linux-x64-musl@4.54.0':
1138 - resolution: {integrity: sha512-JzQmb38ATzHjxlPHuTH6tE7ojnMKM2kYNzt44LO/jJi8BpceEC8QuXYA908n8r3CNuG/B3BV8VR3Hi1rYtmPiw==}
1111 + '@rollup/rollup-linux-x64-musl@4.60.2':
1112 + resolution: {integrity: sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==}
1113 cpu: [x64]
1114 os: [linux]
1115 libc: [musl]
1116
1143 - '@rollup/rollup-openharmony-arm64@4.54.0':
1144 - resolution: {integrity: sha512-huT3fd0iC7jigGh7n3q/+lfPcXxBi+om/Rs3yiFxjvSxbSB6aohDFXbWvlspaqjeOh+hx7DDHS+5Es5qRkWkZg==}
1117 + '@rollup/rollup-openbsd-x64@4.60.2':
1118 + resolution: {integrity: sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==}
1119 + cpu: [x64]
1120 + os: [openbsd]
1121 +
1122 + '@rollup/rollup-openharmony-arm64@4.60.2':
1123 + resolution: {integrity: sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==}
1124 cpu: [arm64]
1125 os: [openharmony]
1126
1148 - '@rollup/rollup-win32-arm64-msvc@4.54.0':
1149 - resolution: {integrity: sha512-c2V0W1bsKIKfbLMBu/WGBz6Yci8nJ/ZJdheE0EwB73N3MvHYKiKGs3mVilX4Gs70eGeDaMqEob25Tw2Gb9Nqyw==}
1127 + '@rollup/rollup-win32-arm64-msvc@4.60.2':
1128 + resolution: {integrity: sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==}
1129 cpu: [arm64]
1130 os: [win32]
1131
1153 - '@rollup/rollup-win32-ia32-msvc@4.54.0':
1154 - resolution: {integrity: sha512-woEHgqQqDCkAzrDhvDipnSirm5vxUXtSKDYTVpZG3nUdW/VVB5VdCYA2iReSj/u3yCZzXID4kuKG7OynPnB3WQ==}
1132 + '@rollup/rollup-win32-ia32-msvc@4.60.2':
1133 + resolution: {integrity: sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==}
1134 cpu: [ia32]
1135 os: [win32]
1136
1158 - '@rollup/rollup-win32-x64-gnu@4.54.0':
1159 - resolution: {integrity: sha512-dzAc53LOuFvHwbCEOS0rPbXp6SIhAf2txMP5p6mGyOXXw5mWY8NGGbPMPrs4P1WItkfApDathBj/NzMLUZ9rtQ==}
1137 + '@rollup/rollup-win32-x64-gnu@4.60.2':
1138 + resolution: {integrity: sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==}
1139 cpu: [x64]
1140 os: [win32]
1141
1163 - '@rollup/rollup-win32-x64-msvc@4.54.0':
1164 - resolution: {integrity: sha512-hYT5d3YNdSh3mbCU1gwQyPgQd3T2ne0A3KG8KSBdav5TiBg6eInVmV+TeR5uHufiIgSFg0XsOWGW5/RhNcSvPg==}
1142 + '@rollup/rollup-win32-x64-msvc@4.60.2':
1143 + resolution: {integrity: sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==}
1144 cpu: [x64]
1145 os: [win32]
1146
@@ -1215,31 +1194,6 @@ packages:
1194 peerDependencies:
1195 eslint: ^9.0.0 || ^10.0.0
1196
1218 - '@svgdotjs/svg.draggable.js@3.0.6':
1219 - resolution: {integrity: sha512-7iJFm9lL3C40HQcqzEfezK2l+dW2CpoVY3b77KQGqc8GXWa6LhhmX5Ckv7alQfUXBuZbjpICZ+Dvq1czlGx7gA==}
1220 - peerDependencies:
1221 - '@svgdotjs/svg.js': ^3.2.4
1222 -
1223 - '@svgdotjs/svg.filter.js@3.0.9':
1224 - resolution: {integrity: sha512-/69XMRCDoam2HgC4ldHIaDgeQf1ViHIsa0Ld4uWgiXtZ+E24DWHe/9Ib6kbNiZ7WRIdlVokUDR1Fg0kjIpkfbw==}
1225 - engines: {node: '>= 0.8.0'}
1226 -
1227 - '@svgdotjs/svg.js@3.2.5':
1228 - resolution: {integrity: sha512-/VNHWYhNu+BS7ktbYoVGrCmsXDh+chFMaONMwGNdIBcFHrWqk2jY8fNyr3DLdtQUIalvkPfM554ZSFa3dm3nxQ==}
1229 -
1230 - '@svgdotjs/svg.resize.js@2.0.5':
1231 - resolution: {integrity: sha512-4heRW4B1QrJeENfi7326lUPYBCevj78FJs8kfeDxn5st0IYPIRXoTtOSYvTzFWgaWWXd3YCDE6ao4fmv91RthA==}
1232 - engines: {node: '>= 14.18'}
1233 - peerDependencies:
1234 - '@svgdotjs/svg.js': ^3.2.4
1235 - '@svgdotjs/svg.select.js': ^4.0.1
1236 -
1237 - '@svgdotjs/svg.select.js@4.0.3':
1238 - resolution: {integrity: sha512-qkMgso1sd2hXKd1FZ1weO7ANq12sNmQJeGDjs46QwDVsxSRcHmvWKL2NDF7Yimpwf3sl5esOLkPqtV2bQ3v/Jg==}
1239 - engines: {node: '>= 14.18'}
1240 - peerDependencies:
1241 - '@svgdotjs/svg.js': ^3.2.4
1242 -
1197 '@tailwindcss/node@4.2.2':
1198 resolution: {integrity: sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==}
1199
@@ -1340,8 +1294,8 @@ packages:
1294 '@types/bytes@3.1.5':
1295 resolution: {integrity: sha512-VgZkrJckypj85YxEsEavcMmmSOIzkUHqWmM4CCyia5dc54YwsXzJ5uT4fYxBQNEXx+oF1krlhgCbvfubXqZYsQ==}
1296
1343 - '@types/debug@4.1.12':
1344 - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
1297 + '@types/debug@4.1.13':
1298 + resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==}
1299
1300 '@types/esrecurse@4.3.1':
1301 resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
@@ -1423,13 +1377,6 @@ packages:
1377 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
1378 typescript: '>=4.8.4 <6.1.0'
1379
1426 - '@typescript-eslint/parser@8.56.1':
1427 - resolution: {integrity: sha512-klQbnPAAiGYFyI02+znpBRLyjL4/BrBd0nyWkdC0s/6xFLkXYQ8OoRrSkqacS1ddVxf/LDyODIKbQ5TgKAf/Fg==}
1428 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1429 - peerDependencies:
1430 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
1431 - typescript: '>=4.8.4 <6.0.0'
1432 -
1380 '@typescript-eslint/parser@8.58.2':
1381 resolution: {integrity: sha512-/Zb/xaIDfxeJnvishjGdcR4jmr7S+bda8PKNhRGdljDM+elXhlvN0FyPSsMnLmJUrVG9aPO6dof80wjMawsASg==}
1382 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1437,44 +1384,22 @@ packages:
1384 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
1385 typescript: '>=4.8.4 <6.1.0'
1386
1440 - '@typescript-eslint/project-service@8.56.1':
1441 - resolution: {integrity: sha512-TAdqQTzHNNvlVFfR+hu2PDJrURiwKsUvxFn1M0h95BB8ah5jejas08jUWG4dBA68jDMI988IvtfdAI53JzEHOQ==}
1442 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1443 - peerDependencies:
1444 - typescript: '>=4.8.4 <6.0.0'
1445 -
1387 '@typescript-eslint/project-service@8.58.2':
1388 resolution: {integrity: sha512-Cq6UfpZZk15+r87BkIh5rDpi38W4b+Sjnb8wQCPPDDweS/LRCFjCyViEbzHk5Ck3f2QDfgmlxqSa7S7clDtlfg==}
1389 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1390 peerDependencies:
1391 typescript: '>=4.8.4 <6.1.0'
1392
1452 - '@typescript-eslint/rule-tester@8.56.1':
1453 - resolution: {integrity: sha512-EWuV5Vq1EFYJEOVcILyWPO35PjnT0c6tv99PCpD12PgfZae5/Jo+F17hGjsEs2Moe+Dy1J7KIr8y037cK8+/rQ==}
1393 + '@typescript-eslint/rule-tester@8.58.2':
1394 + resolution: {integrity: sha512-HF7ry5ZhQSLn4JAJfQCPX39D6BE5MhYXE743I0phrJw1BvB0adH8JpsEc4owCxEESQflodyhRWNUZY+m2EVenw==}
1395 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1396 peerDependencies:
1397 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
1398
1458 - '@typescript-eslint/scope-manager@8.56.1':
1459 - resolution: {integrity: sha512-YAi4VDKcIZp0O4tz/haYKhmIDZFEUPOreKbfdAN3SzUDMcPhJ8QI99xQXqX+HoUVq8cs85eRKnD+rne2UAnj2w==}
1460 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1461 -
1399 '@typescript-eslint/scope-manager@8.58.2':
1400 resolution: {integrity: sha512-SgmyvDPexWETQek+qzZnrG6844IaO02UVyOLhI4wpo82dpZJY9+6YZCKAMFzXb7qhx37mFK1QcPQ18tud+vo6Q==}
1401 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1402
1466 - '@typescript-eslint/tsconfig-utils@8.56.1':
1467 - resolution: {integrity: sha512-qOtCYzKEeyr3aR9f28mPJqBty7+DBqsdd63eO0yyDwc6vgThj2UjWfJIcsFeSucYydqcuudMOprZ+x1SpF3ZuQ==}
1468 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1469 - peerDependencies:
1470 - typescript: '>=4.8.4 <6.0.0'
1471 -
1472 - '@typescript-eslint/tsconfig-utils@8.57.0':
1473 - resolution: {integrity: sha512-LtXRihc5ytjJIQEH+xqjB0+YgsV4/tW35XKX3GTZHpWtcC8SPkT/d4tqdf1cKtesryHm2bgp6l555NYcT2NLvA==}
1474 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1475 - peerDependencies:
1476 - typescript: '>=4.8.4 <6.0.0'
1477 -
1403 '@typescript-eslint/tsconfig-utils@8.58.2':
1404 resolution: {integrity: sha512-3SR+RukipDvkkKp/d0jP0dyzuls3DbGmwDpVEc5wqk5f38KFThakqAAO0XMirWAE+kT00oTauTbzMFGPoAzB0A==}
1405 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1488,37 +1413,16 @@ packages:
1413 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
1414 typescript: '>=4.8.4 <6.1.0'
1415
1491 - '@typescript-eslint/types@8.56.1':
1492 - resolution: {integrity: sha512-dbMkdIUkIkchgGDIv7KLUpa0Mda4IYjo4IAMJUZ+3xNoUXxMsk9YtKpTHSChRS85o+H9ftm51gsK1dZReY9CVw==}
1493 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1494 -
1495 - '@typescript-eslint/types@8.57.0':
1496 - resolution: {integrity: sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==}
1497 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1498 -
1416 '@typescript-eslint/types@8.58.2':
1417 resolution: {integrity: sha512-9TukXyATBQf/Jq9AMQXfvurk+G5R2MwfqQGDR2GzGz28HvY/lXNKGhkY+6IOubwcquikWk5cjlgPvD2uAA7htQ==}
1418 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1419
1503 - '@typescript-eslint/typescript-estree@8.56.1':
1504 - resolution: {integrity: sha512-qzUL1qgalIvKWAf9C1HpvBjif+Vm6rcT5wZd4VoMb9+Km3iS3Cv9DY6dMRMDtPnwRAFyAi7YXJpTIEXLvdfPxg==}
1505 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1506 - peerDependencies:
1507 - typescript: '>=4.8.4 <6.0.0'
1508 -
1420 '@typescript-eslint/typescript-estree@8.58.2':
1421 resolution: {integrity: sha512-ELGuoofuhhoCvNbQjFFiobFcGgcDCEm0ThWdmO4Z0UzLqPXS3KFvnEZ+SHewwOYHjM09tkzOWXNTv9u6Gqtyuw==}
1422 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1423 peerDependencies:
1424 typescript: '>=4.8.4 <6.1.0'
1425
1515 - '@typescript-eslint/utils@8.56.1':
1516 - resolution: {integrity: sha512-HPAVNIME3tABJ61siYlHzSWCGtOoeP2RTIaHXFMPqjrQKCGB9OgUVdiNgH7TJS2JNIQ5qQ4RsAUDuGaGme/KOA==}
1517 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1518 - peerDependencies:
1519 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
1520 - typescript: '>=4.8.4 <6.0.0'
1521 -
1426 '@typescript-eslint/utils@8.58.2':
1427 resolution: {integrity: sha512-QZfjHNEzPY8+l0+fIXMvuQ2sJlplB4zgDZvA+NmvZsZv3EQwOcc1DuIU1VJUTWZ/RKouBMhDyNaBMx4sWvrzRA==}
1428 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1526,10 +1430,6 @@ packages:
1430 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
1431 typescript: '>=4.8.4 <6.1.0'
1432
1529 - '@typescript-eslint/visitor-keys@8.56.1':
1530 - resolution: {integrity: sha512-KiROIzYdEV85YygXw6BI/Dx4fnBlFQu6Mq4QE4MOH9fFnhohw6wX/OAvDY2/C+ut0I3RSPKenvZJIVYqJNkhEw==}
1531 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1532 -
1433 '@typescript-eslint/visitor-keys@8.58.2':
1434 resolution: {integrity: sha512-f1WO2Lx8a9t8DARmcWAUPJbu0G20bJlj8L4z72K00TMeJAoyLr/tHhI/pzYBLrR4dXWkcxO1cWYZEOX8DKHTqA==}
1435 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1617,39 +1517,15 @@ packages:
1517 peerDependencies:
1518 '@babel/core': ^7.0.0-0
1519
1620 - '@vue/compiler-core@3.5.26':
1621 - resolution: {integrity: sha512-vXyI5GMfuoBCnv5ucIT7jhHKl55Y477yxP6fc4eUswjP8FG3FFVFd41eNDArR+Uk3QKn2Z85NavjaxLxOC19/w==}
1622 -
1623 - '@vue/compiler-core@3.5.30':
1624 - resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
1625 -
1520 '@vue/compiler-core@3.5.32':
1521 resolution: {integrity: sha512-4x74Tbtqnda8s/NSD6e1Dr5p1c8HdMU5RWSjMSUzb8RTcUQqevDCxVAitcLBKT+ie3o0Dl9crc/S/opJM7qBGQ==}
1522
1629 - '@vue/compiler-dom@3.5.26':
1630 - resolution: {integrity: sha512-y1Tcd3eXs834QjswshSilCBnKGeQjQXB6PqFn/1nxcQw4pmG42G8lwz+FZPAZAby6gZeHSt/8LMPfZ4Rb+Bd/A==}
1631 -
1632 - '@vue/compiler-dom@3.5.30':
1633 - resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==}
1634 -
1523 '@vue/compiler-dom@3.5.32':
1524 resolution: {integrity: sha512-ybHAu70NtiEI1fvAUz3oXZqkUYEe5J98GjMDpTGl5iHb0T15wQYLR4wE3h9xfuTNA+Cm2f4czfe8B4s+CCH57Q==}
1525
1638 - '@vue/compiler-sfc@3.5.26':
1639 - resolution: {integrity: sha512-egp69qDTSEZcf4bGOSsprUr4xI73wfrY5oRs6GSgXFTiHrWj4Y3X5Ydtip9QMqiCMCPVwLglB9GBxXtTadJ3mA==}
1640 -
1641 - '@vue/compiler-sfc@3.5.30':
1642 - resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
1643 -
1526 '@vue/compiler-sfc@3.5.32':
1527 resolution: {integrity: sha512-8UYUYo71cP/0YHMO814TRZlPuUUw3oifHuMR7Wp9SNoRSrxRQnhMLNlCeaODNn6kNTJsjFoQ/kqIj4qGvya4Xg==}
1528
1647 - '@vue/compiler-ssr@3.5.26':
1648 - resolution: {integrity: sha512-lZT9/Y0nSIRUPVvapFJEVDbEXruZh2IYHMk2zTtEgJSlP5gVOqeWXH54xDKAaFS4rTnDeDBQUYDtxKyoW9FwDw==}
1649 -
1650 - '@vue/compiler-ssr@3.5.30':
1651 - resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
1652 -
1529 '@vue/compiler-ssr@3.5.32':
1530 resolution: {integrity: sha512-Gp4gTs22T3DgRotZ8aA/6m2jMR+GMztvBXUBEUOYOcST+giyGWJ4WvFd7QLHBkzTxkfOt8IELKNdpzITLbA2rw==}
1531
@@ -1659,8 +1535,8 @@ packages:
1535 '@vue/devtools-api@7.7.9':
1536 resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
1537
1662 - '@vue/devtools-api@8.0.6':
1663 - resolution: {integrity: sha512-+lGBI+WTvJmnU2FZqHhEB8J1DXcvNlDeEalz77iYgOdY1jTj1ipSBaKj3sRhYcy+kqA8v/BSuvOz1XJucfQmUA==}
1538 + '@vue/devtools-api@8.1.1':
1539 + resolution: {integrity: sha512-bsDMJ07b3GN1puVwJb/fyFnj/U2imyswK5UQVLZwVl7O05jDrt6BHxeG5XffmOOdasOj/bOmIjxJvGPxU7pcqw==}
1540
1541 '@vue/devtools-core@8.1.1':
1542 resolution: {integrity: sha512-bCCsSABp1/ot4j8xJEycM6Mtt2wbuucfByr6hMgjbYhrtlscOJypZKvy8f1FyWLYrLTchB5Qz216Lm92wfbq0A==}
@@ -1670,23 +1546,17 @@ packages:
1546 '@vue/devtools-kit@7.7.9':
1547 resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
1548
1673 - '@vue/devtools-kit@8.1.0':
1674 - resolution: {integrity: sha512-/NZlS4WtGIB54DA/z10gzk+n/V7zaqSzYZOVlg2CfdnpIKdB61bd7JDIMxf/zrtX41zod8E2/bbEBoW/d7x70Q==}
1675 -
1549 '@vue/devtools-kit@8.1.1':
1550 resolution: {integrity: sha512-gVBaBv++i+adg4JpH71k9ppl4soyR7Y2McEqO5YNgv0BI1kMZ7BDX5gnwkZ5COYgiCyhejZG+yGNrBAjj6Coqg==}
1551
1552 '@vue/devtools-shared@7.7.9':
1553 resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
1554
1682 - '@vue/devtools-shared@8.1.0':
1683 - resolution: {integrity: sha512-h8uCb4Qs8UT8VdTT5yjY6tOJ//qH7EpxToixR0xqejR55t5OdISIg7AJ7eBkhBs8iu1qG5gY3QQNN1DF1EelAA==}
1684 -
1555 '@vue/devtools-shared@8.1.1':
1556 resolution: {integrity: sha512-+h4ttmJYl/txpxHKaoZcaKpC+pvckgLzIDiSQlaQ7kKthKh8KuwoLW2D8hPJEnqKzXOvu15UHEoGyngAXCz0EQ==}
1557
1688 - '@vue/language-core@3.2.6':
1689 - resolution: {integrity: sha512-xYYYX3/aVup576tP/23sEUpgiEnujrENaoNRbaozC1/MA9I6EGFQRJb4xrt/MmUCAGlxTKL2RmT8JLTPqagCkg==}
1558 + '@vue/language-core@3.2.7':
1559 + resolution: {integrity: sha512-Gn4q/tRxbpVGLEuARQ43p3YELlNAFgRUVCgW9U5Cr+5q4vfD2bWDWpl3ABbJMXUt5xlE1dF8dkigg2aUq7JYYw==}
1560
1561 '@vue/reactivity@3.5.32':
1562 resolution: {integrity: sha512-/ORasxSGvZ6MN5gc+uE364SxFdJ0+WqVG0CENXaGW58TOCdrAW76WWaplDtECeS1qphvtBZtR+3/o1g1zL4xPQ==}
@@ -1702,12 +1572,6 @@ packages:
1572 peerDependencies:
1573 vue: 3.5.32
1574
1705 - '@vue/shared@3.5.26':
1706 - resolution: {integrity: sha512-7Z6/y3uFI5PRoKeorTOSXKcDj0MSasfNNltcslbFrPpcw6aXRUALq4IfJlaTRspiWIUOEZbrpM+iQGmCOiWe4A==}
1707 -
1708 - '@vue/shared@3.5.30':
1709 - resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
1710 -
1575 '@vue/shared@3.5.32':
1576 resolution: {integrity: sha512-ksNyrmRQzWJJ8n3cRDuSF7zNNontuJg1YHnmWRJd2AMu8Ij2bqwiiri2lH5rHtYPZjj4STkNcgcmiQqlOjiYGg==}
1577
@@ -1753,9 +1617,6 @@ packages:
1617 peerDependencies:
1618 vue: ^3.5.0
1619
1756 - '@yr/monotone-cubic-spline@1.0.3':
1757 - resolution: {integrity: sha512-FQXkOta0XBSUPHndIKON2Y9JeQz5ZeMqLYZVVK93FliNBFm7LNMIZmY6FrMEB9XPcDbE2bekMbZD6kzDkxwYjA==}
1758 -
1620 acorn-jsx@5.3.2:
1621 resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
1622 peerDependencies:
@@ -1766,11 +1627,6 @@ packages:
1627 engines: {node: '>=0.4.0'}
1628 hasBin: true
1629
1769 - acorn@8.15.0:
1770 - resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
1771 - engines: {node: '>=0.4.0'}
1772 - hasBin: true
1773 -
1630 acorn@8.16.0:
1631 resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
1632 engines: {node: '>=0.4.0'}
@@ -1798,8 +1654,8 @@ packages:
1654 resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
1655 engines: {node: '>=14'}
1656
1801 - apexcharts@5.3.6:
1802 - resolution: {integrity: sha512-sVEPw+J0Gp0IHQabKu8cfdsxlfME0e36Wid7RIaPclGM2OUt+O7O4+6mfAmTUYhy5bDk8cNHzEhPfVtLCIXEJA==}
1657 + apexcharts@5.10.6:
1658 + resolution: {integrity: sha512-FJQGbso3iRuOwUYnj0yUhkWeKeJE6aboVol+ae09lsc+lbLMWZqSRbrAWVa/qishLiaeG2icxdvmVkm+9n6kOQ==}
1659
1660 are-docs-informative@0.0.2:
1661 resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
@@ -1843,8 +1699,8 @@ packages:
1699 asynckit@0.4.0:
1700 resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
1701
1846 - axios@1.15.0:
1847 - resolution: {integrity: sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==}
1702 + axios@1.15.1:
1703 + resolution: {integrity: sha512-WOG+Jj8ZOvR0a3rAn+Tuf1UQJRxw5venr6DgdbJzngJE3qG7X0kL83CZGpdHMxEm+ZK3seAbvFsw4FfOfP9vxg==}
1704
1705 babel-walk@3.0.0-canary-5:
1706 resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==}
@@ -1860,8 +1716,9 @@ packages:
1716 resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
1717 engines: {node: 18 || 20 || >=22}
1718
1863 - baseline-browser-mapping@2.9.11:
1864 - resolution: {integrity: sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==}
1719 + baseline-browser-mapping@2.10.20:
1720 + resolution: {integrity: sha512-1AaXxEPfXT+GvTBJFuy4yXVHWJBXa4OdbIebGN/wX5DlsIkU0+wzGnd2lOzokSk51d5LUmqjgBLRLlypLUqInQ==}
1721 + engines: {node: '>=6.0.0'}
1722 hasBin: true
1723
1724 bidi-js@1.0.3:
@@ -1877,27 +1734,27 @@ packages:
1734 boolbase@1.0.0:
1735 resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
1736
1880 - brace-expansion@1.1.12:
1881 - resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
1737 + brace-expansion@1.1.14:
1738 + resolution: {integrity: sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==}
1739
1883 - brace-expansion@2.0.2:
1884 - resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
1740 + brace-expansion@2.1.0:
1741 + resolution: {integrity: sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==}
1742
1886 - brace-expansion@5.0.3:
1887 - resolution: {integrity: sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==}
1743 + brace-expansion@5.0.5:
1744 + resolution: {integrity: sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==}
1745 engines: {node: 18 || 20 || >=22}
1746
1747 braces@3.0.3:
1748 resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
1749 engines: {node: '>=8'}
1750
1894 - browserslist@4.28.1:
1895 - resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
1751 + browserslist@4.28.2:
1752 + resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
1753 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1754 hasBin: true
1755
1899 - builtin-modules@5.0.0:
1900 - resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==}
1756 + builtin-modules@5.1.0:
1757 + resolution: {integrity: sha512-c5JxaDrzwRjq3WyJkI1AGR5xy6Gr6udlt7sQPbl09+3ckB+Zo2qqQ2KhCTBr7Q8dHB43bENGYEk4xddrFH/b7A==}
1758 engines: {node: '>=18.20'}
1759
1760 bundle-name@4.1.0:
@@ -1908,8 +1765,8 @@ packages:
1765 resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
1766 engines: {node: '>= 0.8'}
1767
1911 - c12@3.3.3:
1912 - resolution: {integrity: sha512-750hTRvgBy5kcMNPdh95Qo+XUBeGo8C7nsKSmedDmaQI+E0r82DwHeM6vBewDe4rGFbnxoa4V9pw+sPh5+Iz8Q==}
1768 + c12@3.3.4:
1769 + resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==}
1770 peerDependencies:
1771 magicast: '*'
1772 peerDependenciesMeta:
@@ -1943,8 +1800,8 @@ packages:
1800 resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
1801 engines: {node: '>=10'}
1802
1946 - caniuse-lite@1.0.30001761:
1947 - resolution: {integrity: sha512-JF9ptu1vP2coz98+5051jZ4PwQgd2ni8A+gYSN7EA7dPKIMf0pDlSUxhdmVOaV3/fYK5uWBkgSXJaRLr4+3A6g==}
1803 + caniuse-lite@1.0.30001788:
1804 + resolution: {integrity: sha512-6q8HFp+lOQtcf7wBK+uEenxymVWkGKkjFpCvw5W25cmMwEDU45p1xQFBQv8JDlMMry7eNxyBaR+qxgmTUZkIRQ==}
1805
1806 ccount@2.0.1:
1807 resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -2044,8 +1901,8 @@ packages:
1901 confbox@0.1.8:
1902 resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
1903
2047 - confbox@0.2.2:
2048 - resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==}
1904 + confbox@0.2.4:
1905 + resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
1906
1907 consola@3.4.2:
1908 resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
@@ -2145,8 +2002,8 @@ packages:
2002 decimal.js@10.6.0:
2003 resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
2004
2148 - decode-named-character-reference@1.2.0:
2149 - resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==}
2005 + decode-named-character-reference@1.3.0:
2006 + resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
2007
2008 deep-is@0.1.4:
2009 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
@@ -2155,8 +2012,8 @@ packages:
2012 resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==}
2013 engines: {node: '>=18'}
2014
2158 - default-browser@5.4.0:
2159 - resolution: {integrity: sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg==}
2015 + default-browser@5.5.0:
2016 + resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==}
2017 engines: {node: '>=18'}
2018
2019 define-lazy-prop@2.0.0:
@@ -2167,8 +2024,8 @@ packages:
2024 resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
2025 engines: {node: '>=12'}
2026
2170 - defu@6.1.4:
2171 - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
2027 + defu@6.1.7:
2028 + resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
2029
2030 delayed-stream@1.0.0:
2031 resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
@@ -2193,11 +2050,6 @@ packages:
2050 resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==}
2051 engines: {node: '>=0.10.0'}
2052
2196 - detect-libc@1.0.3:
2197 - resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
2198 - engines: {node: '>=0.10'}
2199 - hasBin: true
2200 -
2053 detect-libc@2.1.2:
2054 resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
2055 engines: {node: '>=8'}
@@ -2228,8 +2080,8 @@ packages:
2080 domutils@3.2.2:
2081 resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
2082
2231 - dotenv@17.2.3:
2232 - resolution: {integrity: sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==}
2083 + dotenv@17.4.2:
2084 + resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
2085 engines: {node: '>=12'}
2086
2087 dunder-proto@1.0.1:
@@ -2242,8 +2094,8 @@ packages:
2094 echarts@6.0.0:
2095 resolution: {integrity: sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==}
2096
2245 - electron-to-chromium@1.5.267:
2246 - resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
2097 + electron-to-chromium@1.5.340:
2098 + resolution: {integrity: sha512-908qahOGocRMinT2nM3ajCEM99H4iPdv84eagPP3FfZy/1ZGeOy2CZYzjhms81ckOPCXPlW7LkY4XpxD8r1DrA==}
2099
2100 emoji-regex@8.0.0:
2101 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -2255,8 +2107,8 @@ packages:
2107 end-of-stream@1.4.5:
2108 resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
2109
2258 - enhanced-resolve@5.19.0:
2259 - resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==}
2110 + enhanced-resolve@5.20.1:
2111 + resolution: {integrity: sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==}
2112 engines: {node: '>=10.13.0'}
2113
2114 entities@4.5.0:
@@ -2296,8 +2148,8 @@ packages:
2148 resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
2149 engines: {node: '>= 0.4'}
2150
2299 - esbuild@0.27.2:
2300 - resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
2151 + esbuild@0.27.7:
2152 + resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==}
2153 engines: {node: '>=18'}
2154 hasBin: true
2155
@@ -2399,8 +2251,8 @@ packages:
2251 resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
2252 engines: {node: '>=5.0.0'}
2253
2402 - eslint-plugin-perfectionist@5.8.0:
2403 - resolution: {integrity: sha512-k8uIptWIxkUclonCFGyDzgYs9NI+Qh0a7cUXS3L7IYZDEsjXuimFBVbxXPQQngWqMiaxJRwbtYB4smMGMqF+cw==}
2254 + eslint-plugin-perfectionist@5.9.0:
2255 + resolution: {integrity: sha512-8TWzg02zmnBdZwCkWLi8jhzqXI+fE7Z/RwV8SL6xD45tJ8Bp3wGuYL2XtQgfe/Wd0eBqOUX+s6ey73IyszvKTA==}
2256 engines: {node: ^20.0.0 || >=22.0.0}
2257 peerDependencies:
2258 eslint: ^8.45.0 || ^9.0.0 || ^10.0.0
@@ -2493,10 +2345,6 @@ packages:
2345 resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
2346 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2347
2496 - espree@11.1.1:
2497 - resolution: {integrity: sha512-AVHPqQoZYc+RUM4/3Ly5udlZY/U4LS8pIG05jEjWM2lQMU/oaZ7qshzAl2YP1tfNmXfftH3ohurfwNAug+MnsQ==}
2498 - engines: {node: ^20.19.0 || ^22.13.0 || >=24}
2499 -
2348 espree@11.2.0:
2349 resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
2350 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
@@ -2609,15 +2457,15 @@ packages:
2457 resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
2458 engines: {node: '>=16'}
2459
2612 - flatted@3.3.3:
2613 - resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
2460 + flatted@3.4.2:
2461 + resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
2462
2463 flourite@1.3.0:
2464 resolution: {integrity: sha512-iuhWXuX07QwHMnJ1Irh4sD1bk/QFMHg8jVgWsjSAqoIqgIyJtRPnUNKyZAPXrw7pQkDvxb5AIz2KPihEoyVcqw==}
2465 engines: {node: '>=16'}
2466
2619 - follow-redirects@1.15.11:
2620 - resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
2467 + follow-redirects@1.16.0:
2468 + resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==}
2469 engines: {node: '>=4.0'}
2470 peerDependencies:
2471 debug: '*'
@@ -2671,11 +2519,11 @@ packages:
2519 resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
2520 engines: {node: '>=8'}
2521
2674 - get-tsconfig@4.13.0:
2675 - resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
2522 + get-tsconfig@4.14.0:
2523 + resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==}
2524
2677 - giget@2.0.0:
2678 - resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
2525 + giget@3.2.0:
2526 + resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==}
2527 hasBin: true
2528
2529 github-slugger@2.0.0:
@@ -2723,8 +2571,8 @@ packages:
2571 resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
2572 engines: {node: '>= 0.4'}
2573
2726 - hasown@2.0.2:
2727 - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
2574 + hasown@2.0.3:
2575 + resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==}
2576 engines: {node: '>= 0.4'}
2577
2578 hast-util-to-html@9.0.5:
@@ -2868,16 +2716,16 @@ packages:
2716 resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
2717 engines: {node: '>=8'}
2718
2871 - is-wsl@3.1.0:
2872 - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
2719 + is-wsl@3.1.1:
2720 + resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
2721 engines: {node: '>=16'}
2722
2723 isexe@2.0.0:
2724 resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
2725
2878 - isexe@3.1.1:
2879 - resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
2880 - engines: {node: '>=16'}
2726 + isexe@3.1.5:
2727 + resolution: {integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==}
2728 + engines: {node: '>=18'}
2729
2730 jiti@2.6.1:
2731 resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
@@ -3068,8 +2916,8 @@ packages:
2916 resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
2917 engines: {node: '>=10'}
2918
3071 - lodash-es@4.17.22:
3072 - resolution: {integrity: sha512-XEawp1t0gxSi9x01glktRZ5HDy0HXqrM0x5pXQM98EaI0NxO6jVM7omDOxsuEo5UIASAnm2bRp1Jt/e0a2XU8Q==}
2919 + lodash-es@4.18.1:
2920 + resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==}
2921
2922 lodash.merge@4.6.2:
2923 resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
@@ -3080,8 +2928,8 @@ packages:
2928 longest-streak@3.1.0:
2929 resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
2930
3083 - lru-cache@11.2.7:
3084 - resolution: {integrity: sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==}
2931 + lru-cache@11.3.5:
2932 + resolution: {integrity: sha512-NxVFwLAnrd9i7KUBxC4DrUhmgjzOs+1Qm50D3oF1/oL+r1NpZ4gA7xvG0/zJ8evR7zIKn4vLf7qTNduWFtCrRw==}
2933 engines: {node: 20 || >=22}
2934
2935 lru-cache@5.1.1:
@@ -3098,10 +2946,6 @@ packages:
2946 magic-string@0.30.21:
2947 resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
2948
3101 - markdown-it@14.1.0:
3102 - resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
3103 - hasBin: true
3104 -
2949 markdown-it@14.1.1:
2950 resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==}
2951 hasBin: true
@@ -3119,8 +2963,8 @@ packages:
2963 mdast-util-find-and-replace@3.0.2:
2964 resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
2965
3122 - mdast-util-from-markdown@2.0.2:
3123 - resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
2966 + mdast-util-from-markdown@2.0.3:
2967 + resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==}
2968
2969 mdast-util-frontmatter@2.0.1:
2970 resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
@@ -3291,22 +3135,22 @@ packages:
3135 resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
3136 engines: {node: '>=18'}
3137
3294 - minimatch@10.2.4:
3295 - resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
3138 + minimatch@10.2.5:
3139 + resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
3140 engines: {node: 18 || 20 || >=22}
3141
3298 - minimatch@3.1.2:
3299 - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
3142 + minimatch@3.1.5:
3143 + resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
3144
3301 - minimatch@7.4.6:
3302 - resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
3145 + minimatch@7.4.9:
3146 + resolution: {integrity: sha512-Brg/fp/iAVDOQoHxkuN5bEYhyQlZhxddI78yWsCbeEwTHXQjlNLtiJDUsp1GIptVqMI7/gkJMz4vVAc01mpoBw==}
3147 engines: {node: '>=10'}
3148
3149 mitt@3.0.1:
3150 resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
3151
3308 - mlly@1.8.0:
3309 - resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
3152 + mlly@1.8.2:
3153 + resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==}
3154
3155 module-replacements@2.11.0:
3156 resolution: {integrity: sha512-j5sNQm3VCpQQ7nTqGeOZtoJtV3uKERgCBm9QRhmGRiXiqkf7iRFOkfxdJRZWLkqYY8PNf4cDQF/WfXUYLENrRA==}
@@ -3354,8 +3198,8 @@ packages:
3198 node-fetch-native@1.6.7:
3199 resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
3200
3357 - node-releases@2.0.27:
3358 - resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
3201 + node-releases@2.0.37:
3202 + resolution: {integrity: sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==}
3203
3204 node-sarif-builder@3.4.0:
3205 resolution: {integrity: sha512-tGnJW6OKRii9u/b2WiUViTJS+h7Apxx17qsMUjsUeNDiMMX5ZFf8F8Fcz7PAQ6omvOxHZtvDTmOYKJQwmfpjeg==}
@@ -3377,11 +3221,6 @@ packages:
3221 nth-check@2.1.1:
3222 resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
3223
3380 - nypm@0.6.2:
3381 - resolution: {integrity: sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==}
3382 - engines: {node: ^14.16.0 || >=16.10.0}
3383 - hasBin: true
3384 -
3224 object-assign@4.1.1:
3225 resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
3226 engines: {node: '>=0.10.0'}
@@ -3406,11 +3245,11 @@ packages:
3245 resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
3246 engines: {node: '>=18'}
3247
3409 - oniguruma-parser@0.12.1:
3410 - resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==}
3248 + oniguruma-parser@0.12.2:
3249 + resolution: {integrity: sha512-6HVa5oIrgMC6aA6WF6XyyqbhRPJrKR02L20+2+zpDtO5QAzGHAUGw5TKQvwi5vctNnRHkJYmjAhRVQF2EKdTQw==}
3250
3412 - oniguruma-to-es@4.3.4:
3413 - resolution: {integrity: sha512-3VhUGN3w2eYxnTzHn+ikMI+fp/96KoRSVK9/kMTcFqj1NRDh2IhQCKvYxDnWePKRXY/AqH+Fuiyb7VHSzBjHfA==}
3251 + oniguruma-to-es@4.3.6:
3252 + resolution: {integrity: sha512-csuQ9x3Yr0cEIs/Zgx/OEt9iBw9vqIunAPQkx19R/fiMq2oGVTgcMqO/V3Ybqefr1TBvosI6jU539ksaBULJyA==}
3253
3254 open@10.2.0:
3255 resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
@@ -3491,18 +3330,18 @@ packages:
3330 perfect-debounce@1.0.0:
3331 resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
3332
3494 - perfect-debounce@2.0.0:
3495 - resolution: {integrity: sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==}
3333 + perfect-debounce@2.1.0:
3334 + resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
3335
3336 picocolors@1.1.1:
3337 resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
3338
3500 - picomatch@2.3.1:
3501 - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
3339 + picomatch@2.3.2:
3340 + resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
3341 engines: {node: '>=8.6'}
3342
3504 - picomatch@4.0.3:
3505 - resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
3343 + picomatch@4.0.4:
3344 + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
3345 engines: {node: '>=12'}
3346
3347 pidtree@0.6.0:
@@ -3556,12 +3395,8 @@ packages:
3395 resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
3396 engines: {node: '>=4'}
3397
3559 - postcss@8.5.6:
3560 - resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
3561 - engines: {node: ^10 || ^12 || >=14}
3562 -
3563 - postcss@8.5.8:
3564 - resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
3398 + postcss@8.5.10:
3399 + resolution: {integrity: sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==}
3400 engines: {node: ^10 || ^12 || >=14}
3401
3402 prelude-ls@1.2.1:
@@ -3641,8 +3476,8 @@ packages:
3476 pug-attrs@3.0.0:
3477 resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==}
3478
3644 - pug-code-gen@3.0.3:
3645 - resolution: {integrity: sha512-cYQg0JW0w32Ux+XTeZnBEeuWrAY7/HNE6TWnhiHGnnRYlCgyAUPoyh9KzCMa9WhcJlJ1AtQqpEYHc+vbCzA+Aw==}
3479 + pug-code-gen@3.0.4:
3480 + resolution: {integrity: sha512-6okWYIKdasTyXICyEtvobmTZAVX57JkzgzIi4iRJlin8kmhG+Xry2dsus+Mun/nGCn6F2U49haHI5mkELXB14g==}
3481
3482 pug-error@2.1.0:
3483 resolution: {integrity: sha512-lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg==}
@@ -3671,8 +3506,8 @@ packages:
3506 pug-walk@2.0.0:
3507 resolution: {integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==}
3508
3674 - pug@3.0.3:
3675 - resolution: {integrity: sha512-uBi6kmc9f3SZ3PXxqcHiUZLmIXgfgWooKWXcwSGwQd2Zi5Rb0bT14+8CJjJgI8AB+nndLaNgHGrcc6bPIB665g==}
3509 + pug@3.0.4:
3510 + resolution: {integrity: sha512-kFfq5mMzrS7+wrl5pLJzZEzemx34OQ0w4SARfhy/3yxTlhbstsudDwJzhf1hP02yHzbjoVMSXUj/Sz6RNfMyXg==}
3511
3512 pump@3.0.4:
3513 resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==}
@@ -3694,8 +3529,8 @@ packages:
3529 queue-microtask@1.2.3:
3530 resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
3531
3697 - rc9@2.1.2:
3698 - resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
3532 + rc9@3.0.1:
3533 + resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==}
3534
3535 read-package-json-fast@4.0.0:
3536 resolution: {integrity: sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==}
@@ -3734,8 +3569,8 @@ packages:
3569 resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
3570 hasBin: true
3571
3737 - regjsparser@0.13.0:
3738 - resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
3572 + regjsparser@0.13.1:
3573 + resolution: {integrity: sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==}
3574 hasBin: true
3575
3576 repeat-string@1.6.1:
@@ -3775,8 +3610,8 @@ packages:
3610 resolve-pkg-maps@1.0.0:
3611 resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
3612
3778 - resolve@1.22.11:
3779 - resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
3613 + resolve@1.22.12:
3614 + resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
3615 engines: {node: '>= 0.4'}
3616 hasBin: true
3617
@@ -3804,8 +3639,8 @@ packages:
3639 rollup:
3640 optional: true
3641
3807 - rollup@4.54.0:
3808 - resolution: {integrity: sha512-3nk8Y3a9Ea8szgKhinMlGMhGMw89mqule3KWczxhIzqudyHdCIOHw8WJlj/r329fACjKLEh13ZSk7oE22kyeIw==}
3642 + rollup@4.60.2:
3643 + resolution: {integrity: sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==}
3644 engines: {node: '>=18.0.0', npm: '>=8.0.0'}
3645 hasBin: true
3646
@@ -3821,8 +3656,8 @@ packages:
3656 engines: {node: '>=14.0.0'}
3657 hasBin: true
3658
3824 - sax@1.5.0:
3825 - resolution: {integrity: sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==}
3659 + sax@1.6.0:
3660 + resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==}
3661 engines: {node: '>=11.0.0'}
3662
3663 saxes@6.0.0:
@@ -3850,11 +3685,6 @@ packages:
3685 resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
3686 hasBin: true
3687
3853 - semver@7.7.3:
3854 - resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
3855 - engines: {node: '>=10'}
3856 - hasBin: true
3857 -
3688 semver@7.7.4:
3689 resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
3690 engines: {node: '>=10'}
@@ -3913,8 +3743,8 @@ packages:
3743 spdx-expression-parse@4.0.0:
3744 resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
3745
3916 - spdx-license-ids@3.0.22:
3917 - resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}
3746 + spdx-license-ids@3.0.23:
3747 + resolution: {integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==}
3748
3749 speakingurl@14.0.1:
3750 resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
@@ -3975,8 +3805,8 @@ packages:
3805 tailwindcss@4.2.2:
3806 resolution: {integrity: sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==}
3807
3978 - tapable@2.3.0:
3979 - resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
3808 + tapable@2.3.2:
3809 + resolution: {integrity: sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==}
3810 engines: {node: '>=6'}
3811
3812 taze@19.11.0:
@@ -3990,23 +3820,19 @@ packages:
3820 '@codemirror/state': ^6.0.0
3821 '@codemirror/view': ^6.0.0
3822
3993 - tinyexec@1.0.2:
3994 - resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
3995 - engines: {node: '>=18'}
3996 -
3823 tinyexec@1.1.1:
3824 resolution: {integrity: sha512-VKS/ZaQhhkKFMANmAOhhXVoIfBXblQxGX1myCQ2faQrfmobMftXeJPcZGp0gS07ocvGJWDLZGyOZDadDBqYIJg==}
3825 engines: {node: '>=18'}
3826
4001 - tinyglobby@0.2.15:
4002 - resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
3827 + tinyglobby@0.2.16:
3828 + resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
3829 engines: {node: '>=12.0.0'}
3830
4005 - tldts-core@7.0.19:
4006 - resolution: {integrity: sha512-lJX2dEWx0SGH4O6p+7FPwYmJ/bu1JbcGJ8RLaG9b7liIgZ85itUVEPbMtWRVrde/0fnDPEPHW10ZsKW3kVsE9A==}
3831 + tldts-core@7.0.28:
3832 + resolution: {integrity: sha512-7W5Efjhsc3chVdFhqtaU0KtK32J37Zcr9RKtID54nG+tIpcY79CQK/veYPODxtD/LJ4Lue66jvrQzIX2Z2/pUQ==}
3833
4008 - tldts@7.0.19:
4009 - resolution: {integrity: sha512-8PWx8tvC4jDB39BQw1m4x8y5MH1BcQ5xHeL2n7UVFulMPH/3Q0uiamahFJ3lXA0zO2SUyRXuVVbWSDmstlt9YA==}
3834 + tldts@7.0.28:
3835 + resolution: {integrity: sha512-+Zg3vWhRUv8B1maGSTFdev9mjoo8Etn2Ayfs4cnjlD3CsGkxXX4QyW3j2WJ0wdjYcYmy7Lx2RDsZMhgCWafKIw==}
3836 hasBin: true
3837
3838 tmp@0.2.5:
@@ -4046,12 +3872,6 @@ packages:
3872 trim-lines@3.0.1:
3873 resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
3874
4049 - ts-api-utils@2.4.0:
4050 - resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
4051 - engines: {node: '>=18.12'}
4052 - peerDependencies:
4053 - typescript: '>=4.8.4'
4054 -
3875 ts-api-utils@2.5.0:
3876 resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==}
3877 engines: {node: '>=18.12'}
@@ -4085,8 +3905,8 @@ packages:
3905 uc.micro@2.1.0:
3906 resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
3907
4088 - ufo@1.6.1:
4089 - resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
3908 + ufo@1.6.3:
3909 + resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
3910
3911 unconfig-core@7.5.0:
3912 resolution: {integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==}
@@ -4100,8 +3920,8 @@ packages:
3920 undici-types@7.19.2:
3921 resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
3922
4103 - undici-types@7.22.0:
4104 - resolution: {integrity: sha512-RKZvifiL60xdsIuC80UY0dq8Z7DbJUV8/l2hOVbyZAxBzEeQU4Z58+4ZzJ6WN2Lidi9KzT5EbiGX+PI/UGYuRw==}
3923 + undici-types@7.25.0:
3924 + resolution: {integrity: sha512-AXNgS1Byr27fTI+2bsPEkV9CxkT8H6xNyRI68b3TatlZo3RkzlqQBLL+w7SmGPVpokjHbcuNVQUWE7FRTg+LRA==}
3925
3926 undici@7.25.0:
3927 resolution: {integrity: sha512-xXnp4kTyor2Zq+J1FfPI6Eq3ew5h6Vl0F/8d9XU5zZQf1tX9s2Su1/3PiMmUANFULpmksxkClamIZcaUqryHsQ==}
@@ -4122,8 +3942,8 @@ packages:
3942 unist-util-visit-parents@6.0.2:
3943 resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
3944
4125 - unist-util-visit@5.0.0:
4126 - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
3945 + unist-util-visit@5.1.0:
3946 + resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==}
3947
3948 universalify@2.0.1:
3949 resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
@@ -4203,18 +4023,18 @@ packages:
4023 peerDependencies:
4024 vite: ^6.0.0 || ^7.0.0 || ^8.0.0
4025
4206 - vite-plugin-vue-inspector@5.3.2:
4207 - resolution: {integrity: sha512-YvEKooQcSiBTAs0DoYLfefNja9bLgkFM7NI2b07bE2SruuvX0MEa9cMaxjKVMkeCp5Nz9FRIdcN1rOdFVBeL6Q==}
4026 + vite-plugin-vue-inspector@5.4.0:
4027 + resolution: {integrity: sha512-Iq/024CydcE46FZqWPU4t4lw4uYOdLnFSO1RNxJVt2qY9zxIjmnkBqhHnYaReWM82kmNnaXs7OkfgRrV2GEjyw==}
4028 peerDependencies:
4209 - vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
4029 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
4030
4031 vite-svg-loader@5.1.1:
4032 resolution: {integrity: sha512-RPzcXA/EpKJA0585x58DBgs7my2VfeJ+j2j1EoHY4Zh82Y7hV4cR1fElgy2aZi85+QSrcLLoTStQ5uZjD68u+Q==}
4033 peerDependencies:
4034 vue: '>=3.2.13'
4035
4216 - vite@7.3.1:
4217 - resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
4036 + vite@7.3.2:
4037 + resolution: {integrity: sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==}
4038 engines: {node: ^20.19.0 || >=22.12.0}
4039 hasBin: true
4040 peerDependencies:
@@ -4303,8 +4123,8 @@ packages:
4123 pinia:
4124 optional: true
4125
4306 - vue-tsc@3.2.6:
4307 - resolution: {integrity: sha512-gYW/kWI0XrwGzd0PKc7tVB/qpdeAkIZLNZb10/InizkQjHjnT8weZ/vBarZoj4kHKbUTZT/bAVgoOr8x4NsQ/Q==}
4126 + vue-tsc@3.2.7:
4127 + resolution: {integrity: sha512-zc1tL3HoQni1zGTGrwBVRQb7rGP5SWdu/m4rGB6JcnAC5MT5LFZIxF7Y+EJEnt4hGF23d60rXH7gRjHGb5KQQQ==}
4128 hasBin: true
4129 peerDependencies:
4130 typescript: '>=5.0.0'
@@ -4416,15 +4236,10 @@ packages:
4236 resolution: {integrity: sha512-h0uDm97wvT2bokfwwTmY6kJ1hp6YDFL0nRHwNKz8s/VD1FH/vvZjAKoMUE+un0eaYBSG7/c6h+lJTP+31tjgTw==}
4237 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
4238
4419 - yaml@1.10.2:
4420 - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
4239 + yaml@1.10.3:
4240 + resolution: {integrity: sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==}
4241 engines: {node: '>= 6'}
4242
4423 - yaml@2.8.2:
4424 - resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
4425 - engines: {node: '>= 14.6'}
4426 - hasBin: true
4427 -
4243 yaml@2.8.3:
4244 resolution: {integrity: sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==}
4245 engines: {node: '>= 14.6'}
@@ -4458,7 +4273,7 @@ packages:
4273
4274 snapshots:
4275
4461 - '@antfu/eslint-config@8.2.0(@typescript-eslint/rule-tester@8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@vue/compiler-sfc@3.5.32)(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
4276 + '@antfu/eslint-config@8.2.0(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@vue/compiler-sfc@3.5.32)(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
4277 dependencies:
4278 '@antfu/install-pkg': 1.1.0
4279 '@clack/prompts': 1.2.0
@@ -4476,13 +4291,13 @@ snapshots:
4291 eslint-flat-config-utils: 3.1.0
4292 eslint-merge-processors: 2.0.0(eslint@10.2.1(jiti@2.6.1))
4293 eslint-plugin-antfu: 3.2.2(eslint@10.2.1(jiti@2.6.1))
4479 - eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))
4294 + eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))
4295 eslint-plugin-import-lite: 0.6.0(eslint@10.2.1(jiti@2.6.1))
4296 eslint-plugin-jsdoc: 62.9.0(eslint@10.2.1(jiti@2.6.1))
4297 eslint-plugin-jsonc: 3.1.2(eslint@10.2.1(jiti@2.6.1))
4298 eslint-plugin-n: 17.24.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
4299 eslint-plugin-no-only-tests: 3.3.0
4485 - eslint-plugin-perfectionist: 5.8.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
4300 + eslint-plugin-perfectionist: 5.9.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
4301 eslint-plugin-pnpm: 1.6.0(eslint@10.2.1(jiti@2.6.1))
4302 eslint-plugin-regexp: 3.1.0(eslint@10.2.1(jiti@2.6.1))
4303 eslint-plugin-toml: 1.3.1(eslint@10.2.1(jiti@2.6.1))
@@ -4511,14 +4326,14 @@ snapshots:
4326 '@antfu/install-pkg@1.1.0':
4327 dependencies:
4328 package-manager-detector: 1.6.0
4514 - tinyexec: 1.0.2
4329 + tinyexec: 1.1.1
4330
4331 '@antfu/ni@30.0.0':
4332 dependencies:
4333 fzf: 0.5.2
4334 package-manager-detector: 1.6.0
4335 tinyexec: 1.1.1
4521 - tinyglobby: 0.2.15
4336 + tinyglobby: 0.2.16
4337
4338 '@asamuzakjp/css-color@5.1.11':
4339 dependencies:
@@ -4528,7 +4343,7 @@ snapshots:
4343 '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
4344 '@csstools/css-tokenizer': 4.0.0
4345
4531 - '@asamuzakjp/dom-selector@7.0.10':
4346 + '@asamuzakjp/dom-selector@7.1.1':
4347 dependencies:
4348 '@asamuzakjp/generational-cache': 1.0.1
4349 '@asamuzakjp/nwsapi': 2.3.9
@@ -4540,12 +4355,6 @@ snapshots:
4355
4356 '@asamuzakjp/nwsapi@2.3.9': {}
4357
4543 - '@babel/code-frame@7.27.1':
4544 - dependencies:
4545 - '@babel/helper-validator-identifier': 7.28.5
4546 - js-tokens: 4.0.0
4547 - picocolors: 1.1.1
4548 -
4358 '@babel/code-frame@7.29.0':
4359 dependencies:
4360 '@babel/helper-validator-identifier': 7.28.5
@@ -4557,11 +4366,11 @@ snapshots:
4366 '@babel/core@7.29.0':
4367 dependencies:
4368 '@babel/code-frame': 7.29.0
4560 - '@babel/generator': 7.29.0
4369 + '@babel/generator': 7.29.1
4370 '@babel/helper-compilation-targets': 7.28.6
4371 '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
4563 - '@babel/helpers': 7.28.6
4564 - '@babel/parser': 7.29.0
4372 + '@babel/helpers': 7.29.2
4373 + '@babel/parser': 7.29.2
4374 '@babel/template': 7.28.6
4375 '@babel/traverse': 7.29.0
4376 '@babel/types': 7.29.0
@@ -4574,17 +4383,9 @@ snapshots:
4383 transitivePeerDependencies:
4384 - supports-color
4385
4577 - '@babel/generator@7.28.5':
4578 - dependencies:
4579 - '@babel/parser': 7.28.5
4580 - '@babel/types': 7.28.5
4581 - '@jridgewell/gen-mapping': 0.3.13
4582 - '@jridgewell/trace-mapping': 0.3.31
4583 - jsesc: 3.1.0
4584 -
4585 - '@babel/generator@7.29.0':
4386 + '@babel/generator@7.29.1':
4387 dependencies:
4587 - '@babel/parser': 7.29.0
4388 + '@babel/parser': 7.29.2
4389 '@babel/types': 7.29.0
4390 '@jridgewell/gen-mapping': 0.3.13
4391 '@jridgewell/trace-mapping': 0.3.31
@@ -4592,13 +4393,13 @@ snapshots:
4393
4394 '@babel/helper-annotate-as-pure@7.27.3':
4395 dependencies:
4595 - '@babel/types': 7.28.5
4396 + '@babel/types': 7.29.0
4397
4398 '@babel/helper-compilation-targets@7.28.6':
4399 dependencies:
4400 '@babel/compat-data': 7.29.0
4401 '@babel/helper-validator-option': 7.27.1
4601 - browserslist: 4.28.1
4402 + browserslist: 4.28.2
4403 lru-cache: 5.1.1
4404 semver: 6.3.1
4405
@@ -4619,8 +4420,8 @@ snapshots:
4420
4421 '@babel/helper-member-expression-to-functions@7.28.5':
4422 dependencies:
4622 - '@babel/traverse': 7.28.5
4623 - '@babel/types': 7.28.5
4423 + '@babel/traverse': 7.29.0
4424 + '@babel/types': 7.29.0
4425 transitivePeerDependencies:
4426 - supports-color
4427
@@ -4642,9 +4443,7 @@ snapshots:
4443
4444 '@babel/helper-optimise-call-expression@7.27.1':
4445 dependencies:
4645 - '@babel/types': 7.28.5
4646 -
4647 - '@babel/helper-plugin-utils@7.27.1': {}
4446 + '@babel/types': 7.29.0
4447
4448 '@babel/helper-plugin-utils@7.28.6': {}
4449
@@ -4659,8 +4458,8 @@ snapshots:
4458
4459 '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
4460 dependencies:
4662 - '@babel/traverse': 7.28.5
4663 - '@babel/types': 7.28.5
4461 + '@babel/traverse': 7.29.0
4462 + '@babel/types': 7.29.0
4463 transitivePeerDependencies:
4464 - supports-color
4465
@@ -4670,38 +4469,30 @@ snapshots:
4469
4470 '@babel/helper-validator-option@7.27.1': {}
4471
4673 - '@babel/helpers@7.28.6':
4472 + '@babel/helpers@7.29.2':
4473 dependencies:
4474 '@babel/template': 7.28.6
4475 '@babel/types': 7.29.0
4476
4678 - '@babel/parser@7.28.5':
4679 - dependencies:
4680 - '@babel/types': 7.28.5
4681 -
4682 - '@babel/parser@7.29.0':
4683 - dependencies:
4684 - '@babel/types': 7.29.0
4685 -
4477 '@babel/parser@7.29.2':
4478 dependencies:
4479 '@babel/types': 7.29.0
4480
4690 - '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.29.0)':
4481 + '@babel/plugin-proposal-decorators@7.29.0(@babel/core@7.29.0)':
4482 dependencies:
4483 '@babel/core': 7.29.0
4484 '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
4485 '@babel/helper-plugin-utils': 7.28.6
4695 - '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.29.0)
4486 + '@babel/plugin-syntax-decorators': 7.28.6(@babel/core@7.29.0)
4487 transitivePeerDependencies:
4488 - supports-color
4489
4699 - '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.29.0)':
4490 + '@babel/plugin-syntax-decorators@7.28.6(@babel/core@7.29.0)':
4491 dependencies:
4492 '@babel/core': 7.29.0
4493 '@babel/helper-plugin-utils': 7.28.6
4494
4704 - '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.29.0)':
4495 + '@babel/plugin-syntax-import-attributes@7.28.6(@babel/core@7.29.0)':
4496 dependencies:
4497 '@babel/core': 7.29.0
4498 '@babel/helper-plugin-utils': 7.28.6
@@ -4711,10 +4502,10 @@ snapshots:
4502 '@babel/core': 7.29.0
4503 '@babel/helper-plugin-utils': 7.28.6
4504
4714 - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.29.0)':
4505 + '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)':
4506 dependencies:
4507 '@babel/core': 7.29.0
4717 - '@babel/helper-plugin-utils': 7.27.1
4508 + '@babel/helper-plugin-utils': 7.28.6
4509
4510 '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)':
4511 dependencies:
@@ -4732,47 +4523,24 @@ snapshots:
4523 transitivePeerDependencies:
4524 - supports-color
4525
4735 - '@babel/template@7.27.2':
4736 - dependencies:
4737 - '@babel/code-frame': 7.27.1
4738 - '@babel/parser': 7.28.5
4739 - '@babel/types': 7.28.5
4740 -
4526 '@babel/template@7.28.6':
4527 dependencies:
4528 '@babel/code-frame': 7.29.0
4744 - '@babel/parser': 7.29.0
4529 + '@babel/parser': 7.29.2
4530 '@babel/types': 7.29.0
4531
4747 - '@babel/traverse@7.28.5':
4748 - dependencies:
4749 - '@babel/code-frame': 7.27.1
4750 - '@babel/generator': 7.28.5
4751 - '@babel/helper-globals': 7.28.0
4752 - '@babel/parser': 7.28.5
4753 - '@babel/template': 7.27.2
4754 - '@babel/types': 7.28.5
4755 - debug: 4.4.3
4756 - transitivePeerDependencies:
4757 - - supports-color
4758 -
4532 '@babel/traverse@7.29.0':
4533 dependencies:
4534 '@babel/code-frame': 7.29.0
4762 - '@babel/generator': 7.29.0
4535 + '@babel/generator': 7.29.1
4536 '@babel/helper-globals': 7.28.0
4764 - '@babel/parser': 7.29.0
4537 + '@babel/parser': 7.29.2
4538 '@babel/template': 7.28.6
4539 '@babel/types': 7.29.0
4540 debug: 4.4.3
4541 transitivePeerDependencies:
4542 - supports-color
4543
4771 - '@babel/types@7.28.5':
4772 - dependencies:
4773 - '@babel/helper-string-parser': 7.27.1
4774 - '@babel/helper-validator-identifier': 7.28.5
4775 -
4544 '@babel/types@7.29.0':
4545 dependencies:
4546 '@babel/helper-string-parser': 7.27.1
@@ -4794,22 +4562,22 @@ snapshots:
4562 fast-wrap-ansi: 0.1.6
4563 sisteransi: 1.0.5
4564
4797 - '@codemirror/language@6.12.1':
4565 + '@codemirror/language@6.12.3':
4566 dependencies:
4799 - '@codemirror/state': 6.5.3
4800 - '@codemirror/view': 6.39.7
4801 - '@lezer/common': 1.5.0
4567 + '@codemirror/state': 6.6.0
4568 + '@codemirror/view': 6.41.1
4569 + '@lezer/common': 1.5.2
4570 '@lezer/highlight': 1.2.3
4803 - '@lezer/lr': 1.4.5
4571 + '@lezer/lr': 1.4.10
4572 style-mod: 4.1.3
4573
4806 - '@codemirror/state@6.5.3':
4574 + '@codemirror/state@6.6.0':
4575 dependencies:
4576 '@marijn/find-cluster-break': 1.0.2
4577
4810 - '@codemirror/view@6.39.7':
4578 + '@codemirror/view@6.41.1':
4579 dependencies:
4812 - '@codemirror/state': 6.5.3
4580 + '@codemirror/state': 6.6.0
4581 crelt: 1.0.6
4582 style-mod: 4.1.3
4583 w3c-keyname: 2.2.8
@@ -4843,7 +4611,7 @@ snapshots:
4611 dependencies:
4612 '@csstools/css-tokenizer': 4.0.0
4613
4846 - '@csstools/css-syntax-patches-for-csstree@1.1.1(css-tree@3.2.1)':
4614 + '@csstools/css-syntax-patches-for-csstree@1.1.3(css-tree@3.2.1)':
4615 optionalDependencies:
4616 css-tree: 3.2.1
4617
@@ -4860,7 +4628,7 @@ snapshots:
4628 '@es-joy/jsdoccomment@0.84.0':
4629 dependencies:
4630 '@types/estree': 1.0.8
4863 - '@typescript-eslint/types': 8.57.0
4631 + '@typescript-eslint/types': 8.58.2
4632 comment-parser: 1.4.5
4633 esquery: 1.7.0
4634 jsdoc-type-pratt-parser: 7.1.1
@@ -4875,82 +4643,82 @@ snapshots:
4643
4644 '@es-joy/resolve.exports@1.2.0': {}
4645
4878 - '@esbuild/aix-ppc64@0.27.2':
4646 + '@esbuild/aix-ppc64@0.27.7':
4647 optional: true
4648
4881 - '@esbuild/android-arm64@0.27.2':
4649 + '@esbuild/android-arm64@0.27.7':
4650 optional: true
4651
4884 - '@esbuild/android-arm@0.27.2':
4652 + '@esbuild/android-arm@0.27.7':
4653 optional: true
4654
4887 - '@esbuild/android-x64@0.27.2':
4655 + '@esbuild/android-x64@0.27.7':
4656 optional: true
4657
4890 - '@esbuild/darwin-arm64@0.27.2':
4658 + '@esbuild/darwin-arm64@0.27.7':
4659 optional: true
4660
4893 - '@esbuild/darwin-x64@0.27.2':
4661 + '@esbuild/darwin-x64@0.27.7':
4662 optional: true
4663
4896 - '@esbuild/freebsd-arm64@0.27.2':
4664 + '@esbuild/freebsd-arm64@0.27.7':
4665 optional: true
4666
4899 - '@esbuild/freebsd-x64@0.27.2':
4667 + '@esbuild/freebsd-x64@0.27.7':
4668 optional: true
4669
4902 - '@esbuild/linux-arm64@0.27.2':
4670 + '@esbuild/linux-arm64@0.27.7':
4671 optional: true
4672
4905 - '@esbuild/linux-arm@0.27.2':
4673 + '@esbuild/linux-arm@0.27.7':
4674 optional: true
4675
4908 - '@esbuild/linux-ia32@0.27.2':
4676 + '@esbuild/linux-ia32@0.27.7':
4677 optional: true
4678
4911 - '@esbuild/linux-loong64@0.27.2':
4679 + '@esbuild/linux-loong64@0.27.7':
4680 optional: true
4681
4914 - '@esbuild/linux-mips64el@0.27.2':
4682 + '@esbuild/linux-mips64el@0.27.7':
4683 optional: true
4684
4917 - '@esbuild/linux-ppc64@0.27.2':
4685 + '@esbuild/linux-ppc64@0.27.7':
4686 optional: true
4687
4920 - '@esbuild/linux-riscv64@0.27.2':
4688 + '@esbuild/linux-riscv64@0.27.7':
4689 optional: true
4690
4923 - '@esbuild/linux-s390x@0.27.2':
4691 + '@esbuild/linux-s390x@0.27.7':
4692 optional: true
4693
4926 - '@esbuild/linux-x64@0.27.2':
4694 + '@esbuild/linux-x64@0.27.7':
4695 optional: true
4696
4929 - '@esbuild/netbsd-arm64@0.27.2':
4697 + '@esbuild/netbsd-arm64@0.27.7':
4698 optional: true
4699
4932 - '@esbuild/netbsd-x64@0.27.2':
4700 + '@esbuild/netbsd-x64@0.27.7':
4701 optional: true
4702
4935 - '@esbuild/openbsd-arm64@0.27.2':
4703 + '@esbuild/openbsd-arm64@0.27.7':
4704 optional: true
4705
4938 - '@esbuild/openbsd-x64@0.27.2':
4706 + '@esbuild/openbsd-x64@0.27.7':
4707 optional: true
4708
4941 - '@esbuild/openharmony-arm64@0.27.2':
4709 + '@esbuild/openharmony-arm64@0.27.7':
4710 optional: true
4711
4944 - '@esbuild/sunos-x64@0.27.2':
4712 + '@esbuild/sunos-x64@0.27.7':
4713 optional: true
4714
4947 - '@esbuild/win32-arm64@0.27.2':
4715 + '@esbuild/win32-arm64@0.27.7':
4716 optional: true
4717
4950 - '@esbuild/win32-ia32@0.27.2':
4718 + '@esbuild/win32-ia32@0.27.7':
4719 optional: true
4720
4953 - '@esbuild/win32-x64@0.27.2':
4721 + '@esbuild/win32-x64@0.27.7':
4722 optional: true
4723
4724 '@eslint-community/eslint-plugin-eslint-comments@4.7.1(eslint@10.2.1(jiti@2.6.1))':
@@ -4976,32 +4744,24 @@ snapshots:
4744 dependencies:
4745 '@eslint/object-schema': 3.0.5
4746 debug: 4.4.3
4979 - minimatch: 10.2.4
4747 + minimatch: 10.2.5
4748 transitivePeerDependencies:
4749 - supports-color
4750
4983 - '@eslint/config-helpers@0.5.3':
4984 - dependencies:
4985 - '@eslint/core': 1.1.1
4986 -
4751 '@eslint/config-helpers@0.5.5':
4752 dependencies:
4753 '@eslint/core': 1.2.1
4754
4991 - '@eslint/core@1.1.1':
4992 - dependencies:
4993 - '@types/json-schema': 7.0.15
4994 -
4755 '@eslint/core@1.2.1':
4756 dependencies:
4757 '@types/json-schema': 7.0.15
4758
4759 '@eslint/markdown@8.0.1':
4760 dependencies:
5001 - '@eslint/core': 1.1.1
4761 + '@eslint/core': 1.2.1
4762 '@eslint/plugin-kit': 0.6.1
4763 github-slugger: 2.0.0
5004 - mdast-util-from-markdown: 2.0.2
4764 + mdast-util-from-markdown: 2.0.3
4765 mdast-util-frontmatter: 2.0.1
4766 mdast-util-gfm: 3.1.0
4767 mdast-util-math: 3.0.0
@@ -5016,7 +4776,7 @@ snapshots:
4776
4777 '@eslint/plugin-kit@0.6.1':
4778 dependencies:
5019 - '@eslint/core': 1.1.1
4779 + '@eslint/core': 1.2.1
4780 levn: 0.4.1
4781
4782 '@eslint/plugin-kit@0.7.1':
@@ -5028,7 +4788,7 @@ snapshots:
4788
4789 '@f3ve/vue-markdown-it@0.2.3(vue@3.5.32(typescript@5.9.3))':
4790 dependencies:
5031 - markdown-it: 14.1.0
4791 + markdown-it: 14.1.1
4792 vue: 3.5.32(typescript@5.9.3)
4793
4794 '@fontsource/jetbrains-mono@5.2.8': {}
@@ -5039,13 +4799,18 @@ snapshots:
4799
4800 '@henrygd/queue@1.2.0': {}
4801
5042 - '@humanfs/core@0.19.1': {}
4802 + '@humanfs/core@0.19.2':
4803 + dependencies:
4804 + '@humanfs/types': 0.15.0
4805
5044 - '@humanfs/node@0.16.7':
4806 + '@humanfs/node@0.16.8':
4807 dependencies:
5046 - '@humanfs/core': 0.19.1
4808 + '@humanfs/core': 0.19.2
4809 + '@humanfs/types': 0.15.0
4810 '@humanwhocodes/retry': 0.4.3
4811
4812 + '@humanfs/types@0.15.0': {}
4813 +
4814 '@humanwhocodes/module-importer@1.0.1': {}
4815
4816 '@humanwhocodes/retry@0.4.3': {}
@@ -5115,13 +4880,13 @@ snapshots:
4880 fast-glob: 3.3.3
4881 fs-extra: 11.3.4
4882 markdown-table: 2.0.0
5118 - pug: 3.0.3
4883 + pug: 3.0.4
4884
4885 '@jscpd/html-reporter@4.0.5':
4886 dependencies:
4887 colors: 1.4.0
4888 fs-extra: 11.3.4
5124 - pug: 3.0.3
4889 + pug: 3.0.4
4890
4891 '@jscpd/tokenizer@4.0.5':
4892 dependencies:
@@ -5131,15 +4896,15 @@ snapshots:
4896
4897 '@juggle/resize-observer@3.4.0': {}
4898
5134 - '@lezer/common@1.5.0': {}
4899 + '@lezer/common@1.5.2': {}
4900
4901 '@lezer/highlight@1.2.3':
4902 dependencies:
5138 - '@lezer/common': 1.5.0
4903 + '@lezer/common': 1.5.2
4904
5140 - '@lezer/lr@1.4.5':
4905 + '@lezer/lr@1.4.10':
4906 dependencies:
5142 - '@lezer/common': 1.5.0
4907 + '@lezer/common': 1.5.2
4908
4909 '@marijn/find-cluster-break@1.0.2': {}
4910
@@ -5155,11 +4920,11 @@ snapshots:
4920 '@nodelib/fs.scandir': 2.1.5
4921 fastq: 1.20.1
4922
5158 - '@nuxt/kit@3.20.2':
4923 + '@nuxt/kit@3.21.2':
4924 dependencies:
5160 - c12: 3.3.3
4925 + c12: 3.3.4
4926 consola: 3.4.2
5162 - defu: 6.1.4
4927 + defu: 6.1.7
4928 destr: 2.0.5
4929 errx: 0.1.0
4930 exsolve: 1.0.8
@@ -5167,15 +4932,15 @@ snapshots:
4932 jiti: 2.6.1
4933 klona: 2.0.6
4934 knitwork: 1.3.0
5170 - mlly: 1.8.0
4935 + mlly: 1.8.2
4936 ohash: 2.0.11
4937 pathe: 2.0.3
4938 pkg-types: 2.3.0
5174 - rc9: 2.1.2
4939 + rc9: 3.0.1
4940 scule: 1.3.0
5176 - semver: 7.7.3
5177 - tinyglobby: 0.2.15
5178 - ufo: 1.6.1
4941 + semver: 7.7.4
4942 + tinyglobby: 0.2.16
4943 + ufo: 1.6.3
4944 unctx: 2.5.0
4945 untyped: 2.0.0
4946 transitivePeerDependencies:
@@ -5184,65 +4949,65 @@ snapshots:
4949
4950 '@ota-meshi/ast-token-store@0.3.0': {}
4951
5187 - '@parcel/watcher-android-arm64@2.5.1':
4952 + '@parcel/watcher-android-arm64@2.5.6':
4953 optional: true
4954
5190 - '@parcel/watcher-darwin-arm64@2.5.1':
4955 + '@parcel/watcher-darwin-arm64@2.5.6':
4956 optional: true
4957
5193 - '@parcel/watcher-darwin-x64@2.5.1':
4958 + '@parcel/watcher-darwin-x64@2.5.6':
4959 optional: true
4960
5196 - '@parcel/watcher-freebsd-x64@2.5.1':
4961 + '@parcel/watcher-freebsd-x64@2.5.6':
4962 optional: true
4963
5199 - '@parcel/watcher-linux-arm-glibc@2.5.1':
4964 + '@parcel/watcher-linux-arm-glibc@2.5.6':
4965 optional: true
4966
5202 - '@parcel/watcher-linux-arm-musl@2.5.1':
4967 + '@parcel/watcher-linux-arm-musl@2.5.6':
4968 optional: true
4969
5205 - '@parcel/watcher-linux-arm64-glibc@2.5.1':
4970 + '@parcel/watcher-linux-arm64-glibc@2.5.6':
4971 optional: true
4972
5208 - '@parcel/watcher-linux-arm64-musl@2.5.1':
4973 + '@parcel/watcher-linux-arm64-musl@2.5.6':
4974 optional: true
4975
5211 - '@parcel/watcher-linux-x64-glibc@2.5.1':
4976 + '@parcel/watcher-linux-x64-glibc@2.5.6':
4977 optional: true
4978
5214 - '@parcel/watcher-linux-x64-musl@2.5.1':
4979 + '@parcel/watcher-linux-x64-musl@2.5.6':
4980 optional: true
4981
5217 - '@parcel/watcher-win32-arm64@2.5.1':
4982 + '@parcel/watcher-win32-arm64@2.5.6':
4983 optional: true
4984
5220 - '@parcel/watcher-win32-ia32@2.5.1':
4985 + '@parcel/watcher-win32-ia32@2.5.6':
4986 optional: true
4987
5223 - '@parcel/watcher-win32-x64@2.5.1':
4988 + '@parcel/watcher-win32-x64@2.5.6':
4989 optional: true
4990
5226 - '@parcel/watcher@2.5.1':
4991 + '@parcel/watcher@2.5.6':
4992 dependencies:
5228 - detect-libc: 1.0.3
4993 + detect-libc: 2.1.2
4994 is-glob: 4.0.3
5230 - micromatch: 4.0.8
4995 node-addon-api: 7.1.1
4996 + picomatch: 4.0.4
4997 optionalDependencies:
5233 - '@parcel/watcher-android-arm64': 2.5.1
5234 - '@parcel/watcher-darwin-arm64': 2.5.1
5235 - '@parcel/watcher-darwin-x64': 2.5.1
5236 - '@parcel/watcher-freebsd-x64': 2.5.1
5237 - '@parcel/watcher-linux-arm-glibc': 2.5.1
5238 - '@parcel/watcher-linux-arm-musl': 2.5.1
5239 - '@parcel/watcher-linux-arm64-glibc': 2.5.1
5240 - '@parcel/watcher-linux-arm64-musl': 2.5.1
5241 - '@parcel/watcher-linux-x64-glibc': 2.5.1
5242 - '@parcel/watcher-linux-x64-musl': 2.5.1
5243 - '@parcel/watcher-win32-arm64': 2.5.1
5244 - '@parcel/watcher-win32-ia32': 2.5.1
5245 - '@parcel/watcher-win32-x64': 2.5.1
4998 + '@parcel/watcher-android-arm64': 2.5.6
4999 + '@parcel/watcher-darwin-arm64': 2.5.6
5000 + '@parcel/watcher-darwin-x64': 2.5.6
5001 + '@parcel/watcher-freebsd-x64': 2.5.6
5002 + '@parcel/watcher-linux-arm-glibc': 2.5.6
5003 + '@parcel/watcher-linux-arm-musl': 2.5.6
5004 + '@parcel/watcher-linux-arm64-glibc': 2.5.6
5005 + '@parcel/watcher-linux-arm64-musl': 2.5.6
5006 + '@parcel/watcher-linux-x64-glibc': 2.5.6
5007 + '@parcel/watcher-linux-x64-musl': 2.5.6
5008 + '@parcel/watcher-win32-arm64': 2.5.6
5009 + '@parcel/watcher-win32-ia32': 2.5.6
5010 + '@parcel/watcher-win32-x64': 2.5.6
5011 optional: true
5012
5013 '@pkgr/core@0.2.9': {}
@@ -5255,72 +5020,81 @@ snapshots:
5020
5021 '@rolldown/pluginutils@1.0.0-rc.13': {}
5022
5258 - '@rolldown/pluginutils@1.0.0-rc.2': {}
5023 + '@rolldown/pluginutils@1.0.0-rc.16': {}
5024 +
5025 + '@rollup/rollup-android-arm-eabi@4.60.2':
5026 + optional: true
5027
5260 - '@rollup/rollup-android-arm-eabi@4.54.0':
5028 + '@rollup/rollup-android-arm64@4.60.2':
5029 optional: true
5030
5263 - '@rollup/rollup-android-arm64@4.54.0':
5031 + '@rollup/rollup-darwin-arm64@4.60.2':
5032 optional: true
5033
5266 - '@rollup/rollup-darwin-arm64@4.54.0':
5034 + '@rollup/rollup-darwin-x64@4.60.2':
5035 optional: true
5036
5269 - '@rollup/rollup-darwin-x64@4.54.0':
5037 + '@rollup/rollup-freebsd-arm64@4.60.2':
5038 optional: true
5039
5272 - '@rollup/rollup-freebsd-arm64@4.54.0':
5040 + '@rollup/rollup-freebsd-x64@4.60.2':
5041 optional: true
5042
5275 - '@rollup/rollup-freebsd-x64@4.54.0':
5043 + '@rollup/rollup-linux-arm-gnueabihf@4.60.2':
5044 optional: true
5045
5278 - '@rollup/rollup-linux-arm-gnueabihf@4.54.0':
5046 + '@rollup/rollup-linux-arm-musleabihf@4.60.2':
5047 optional: true
5048
5281 - '@rollup/rollup-linux-arm-musleabihf@4.54.0':
5049 + '@rollup/rollup-linux-arm64-gnu@4.60.2':
5050 optional: true
5051
5284 - '@rollup/rollup-linux-arm64-gnu@4.54.0':
5052 + '@rollup/rollup-linux-arm64-musl@4.60.2':
5053 optional: true
5054
5287 - '@rollup/rollup-linux-arm64-musl@4.54.0':
5055 + '@rollup/rollup-linux-loong64-gnu@4.60.2':
5056 optional: true
5057
5290 - '@rollup/rollup-linux-loong64-gnu@4.54.0':
5058 + '@rollup/rollup-linux-loong64-musl@4.60.2':
5059 optional: true
5060
5293 - '@rollup/rollup-linux-ppc64-gnu@4.54.0':
5061 + '@rollup/rollup-linux-ppc64-gnu@4.60.2':
5062 optional: true
5063
5296 - '@rollup/rollup-linux-riscv64-gnu@4.54.0':
5064 + '@rollup/rollup-linux-ppc64-musl@4.60.2':
5065 optional: true
5066
5299 - '@rollup/rollup-linux-riscv64-musl@4.54.0':
5067 + '@rollup/rollup-linux-riscv64-gnu@4.60.2':
5068 optional: true
5069
5302 - '@rollup/rollup-linux-s390x-gnu@4.54.0':
5070 + '@rollup/rollup-linux-riscv64-musl@4.60.2':
5071 optional: true
5072
5305 - '@rollup/rollup-linux-x64-gnu@4.54.0':
5073 + '@rollup/rollup-linux-s390x-gnu@4.60.2':
5074 optional: true
5075
5308 - '@rollup/rollup-linux-x64-musl@4.54.0':
5076 + '@rollup/rollup-linux-x64-gnu@4.60.2':
5077 optional: true
5078
5311 - '@rollup/rollup-openharmony-arm64@4.54.0':
5079 + '@rollup/rollup-linux-x64-musl@4.60.2':
5080 optional: true
5081
5314 - '@rollup/rollup-win32-arm64-msvc@4.54.0':
5082 + '@rollup/rollup-openbsd-x64@4.60.2':
5083 optional: true
5084
5317 - '@rollup/rollup-win32-ia32-msvc@4.54.0':
5085 + '@rollup/rollup-openharmony-arm64@4.60.2':
5086 optional: true
5087
5320 - '@rollup/rollup-win32-x64-gnu@4.54.0':
5088 + '@rollup/rollup-win32-arm64-msvc@4.60.2':
5089 optional: true
5090
5323 - '@rollup/rollup-win32-x64-msvc@4.54.0':
5091 + '@rollup/rollup-win32-ia32-msvc@4.60.2':
5092 + optional: true
5093 +
5094 + '@rollup/rollup-win32-x64-gnu@4.60.2':
5095 + optional: true
5096 +
5097 + '@rollup/rollup-win32-x64-msvc@4.60.2':
5098 optional: true
5099
5100 '@shikijs/core@4.0.2':
@@ -5335,7 +5109,7 @@ snapshots:
5109 dependencies:
5110 '@shikijs/types': 4.0.2
5111 '@shikijs/vscode-textmate': 10.0.2
5338 - oniguruma-to-es: 4.3.4
5112 + oniguruma-to-es: 4.3.6
5113
5114 '@shikijs/engine-oniguruma@4.0.2':
5115 dependencies:
@@ -5373,36 +5147,17 @@ snapshots:
5147 '@stylistic/eslint-plugin@5.10.0(eslint@10.2.1(jiti@2.6.1))':
5148 dependencies:
5149 '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
5376 - '@typescript-eslint/types': 8.57.0
5150 + '@typescript-eslint/types': 8.58.2
5151 eslint: 10.2.1(jiti@2.6.1)
5152 eslint-visitor-keys: 4.2.1
5153 espree: 10.4.0
5154 estraverse: 5.3.0
5381 - picomatch: 4.0.3
5382 -
5383 - '@svgdotjs/svg.draggable.js@3.0.6(@svgdotjs/svg.js@3.2.5)':
5384 - dependencies:
5385 - '@svgdotjs/svg.js': 3.2.5
5386 -
5387 - '@svgdotjs/svg.filter.js@3.0.9':
5388 - dependencies:
5389 - '@svgdotjs/svg.js': 3.2.5
5390 -
5391 - '@svgdotjs/svg.js@3.2.5': {}
5392 -
5393 - '@svgdotjs/svg.resize.js@2.0.5(@svgdotjs/svg.js@3.2.5)(@svgdotjs/svg.select.js@4.0.3(@svgdotjs/svg.js@3.2.5))':
5394 - dependencies:
5395 - '@svgdotjs/svg.js': 3.2.5
5396 - '@svgdotjs/svg.select.js': 4.0.3(@svgdotjs/svg.js@3.2.5)
5397 -
5398 - '@svgdotjs/svg.select.js@4.0.3(@svgdotjs/svg.js@3.2.5)':
5399 - dependencies:
5400 - '@svgdotjs/svg.js': 3.2.5
5155 + picomatch: 4.0.4
5156
5157 '@tailwindcss/node@4.2.2':
5158 dependencies:
5159 '@jridgewell/remapping': 2.3.5
5405 - enhanced-resolve: 5.19.0
5160 + enhanced-resolve: 5.20.1
5161 jiti: 2.6.1
5162 lightningcss: 1.32.0
5163 magic-string: 0.30.21
@@ -5460,18 +5215,18 @@ snapshots:
5215 '@tailwindcss/oxide-win32-arm64-msvc': 4.2.2
5216 '@tailwindcss/oxide-win32-x64-msvc': 4.2.2
5217
5463 - '@tailwindcss/vite@4.2.2(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))':
5218 + '@tailwindcss/vite@4.2.2(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))':
5219 dependencies:
5220 '@tailwindcss/node': 4.2.2
5221 '@tailwindcss/oxide': 4.2.2
5222 tailwindcss: 4.2.2
5468 - vite: 7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
5223 + vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
5224
5225 '@tsconfig/node20@20.1.9': {}
5226
5227 '@types/bytes@3.1.5': {}
5228
5474 - '@types/debug@4.1.12':
5229 + '@types/debug@4.1.13':
5230 dependencies:
5231 '@types/ms': 2.1.0
5232
@@ -5495,7 +5250,7 @@ snapshots:
5250 '@types/node': 25.6.0
5251 '@types/tough-cookie': 4.0.5
5252 parse5: 7.3.0
5498 - undici-types: 7.22.0
5253 + undici-types: 7.25.0
5254
5255 '@types/json-schema@7.0.15': {}
5256
@@ -5560,18 +5315,6 @@ snapshots:
5315 transitivePeerDependencies:
5316 - supports-color
5317
5563 - '@typescript-eslint/parser@8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
5564 - dependencies:
5565 - '@typescript-eslint/scope-manager': 8.56.1
5566 - '@typescript-eslint/types': 8.56.1
5567 - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
5568 - '@typescript-eslint/visitor-keys': 8.56.1
5569 - debug: 4.4.3
5570 - eslint: 10.2.1(jiti@2.6.1)
5571 - typescript: 5.9.3
5572 - transitivePeerDependencies:
5573 - - supports-color
5574 -
5318 '@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
5319 dependencies:
5320 '@typescript-eslint/scope-manager': 8.58.2
@@ -5584,15 +5327,6 @@ snapshots:
5327 transitivePeerDependencies:
5328 - supports-color
5329
5587 - '@typescript-eslint/project-service@8.56.1(typescript@5.9.3)':
5588 - dependencies:
5589 - '@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3)
5590 - '@typescript-eslint/types': 8.57.0
5591 - debug: 4.4.3
5592 - typescript: 5.9.3
5593 - transitivePeerDependencies:
5594 - - supports-color
5595 -
5330 '@typescript-eslint/project-service@8.58.2(typescript@5.9.3)':
5331 dependencies:
5332 '@typescript-eslint/tsconfig-utils': 8.58.2(typescript@5.9.3)
@@ -5602,11 +5336,11 @@ snapshots:
5336 transitivePeerDependencies:
5337 - supports-color
5338
5605 - '@typescript-eslint/rule-tester@8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
5339 + '@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
5340 dependencies:
5607 - '@typescript-eslint/parser': 8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
5608 - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
5609 - '@typescript-eslint/utils': 8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
5341 + '@typescript-eslint/parser': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
5342 + '@typescript-eslint/typescript-estree': 8.58.2(typescript@5.9.3)
5343 + '@typescript-eslint/utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
5344 ajv: 6.14.0
5345 eslint: 10.2.1(jiti@2.6.1)
5346 json-stable-stringify-without-jsonify: 1.0.1
@@ -5616,24 +5350,11 @@ snapshots:
5350 - supports-color
5351 - typescript
5352
5619 - '@typescript-eslint/scope-manager@8.56.1':
5620 - dependencies:
5621 - '@typescript-eslint/types': 8.56.1
5622 - '@typescript-eslint/visitor-keys': 8.56.1
5623 -
5353 '@typescript-eslint/scope-manager@8.58.2':
5354 dependencies:
5355 '@typescript-eslint/types': 8.58.2
5356 '@typescript-eslint/visitor-keys': 8.58.2
5357
5629 - '@typescript-eslint/tsconfig-utils@8.56.1(typescript@5.9.3)':
5630 - dependencies:
5631 - typescript: 5.9.3
5632 -
5633 - '@typescript-eslint/tsconfig-utils@8.57.0(typescript@5.9.3)':
5634 - dependencies:
5635 - typescript: 5.9.3
5636 -
5358 '@typescript-eslint/tsconfig-utils@8.58.2(typescript@5.9.3)':
5359 dependencies:
5360 typescript: 5.9.3
@@ -5650,27 +5371,8 @@ snapshots:
5371 transitivePeerDependencies:
5372 - supports-color
5373
5653 - '@typescript-eslint/types@8.56.1': {}
5654 -
5655 - '@typescript-eslint/types@8.57.0': {}
5656 -
5374 '@typescript-eslint/types@8.58.2': {}
5375
5659 - '@typescript-eslint/typescript-estree@8.56.1(typescript@5.9.3)':
5660 - dependencies:
5661 - '@typescript-eslint/project-service': 8.56.1(typescript@5.9.3)
5662 - '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@5.9.3)
5663 - '@typescript-eslint/types': 8.56.1
5664 - '@typescript-eslint/visitor-keys': 8.56.1
5665 - debug: 4.4.3
5666 - minimatch: 10.2.4
5667 - semver: 7.7.4
5668 - tinyglobby: 0.2.15
5669 - ts-api-utils: 2.4.0(typescript@5.9.3)
5670 - typescript: 5.9.3
5671 - transitivePeerDependencies:
5672 - - supports-color
5673 -
5376 '@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3)':
5377 dependencies:
5378 '@typescript-eslint/project-service': 8.58.2(typescript@5.9.3)
@@ -5678,25 +5380,14 @@ snapshots:
5380 '@typescript-eslint/types': 8.58.2
5381 '@typescript-eslint/visitor-keys': 8.58.2
5382 debug: 4.4.3
5681 - minimatch: 10.2.4
5383 + minimatch: 10.2.5
5384 semver: 7.7.4
5683 - tinyglobby: 0.2.15
5385 + tinyglobby: 0.2.16
5386 ts-api-utils: 2.5.0(typescript@5.9.3)
5387 typescript: 5.9.3
5388 transitivePeerDependencies:
5389 - supports-color
5390
5689 - '@typescript-eslint/utils@8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
5690 - dependencies:
5691 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
5692 - '@typescript-eslint/scope-manager': 8.56.1
5693 - '@typescript-eslint/types': 8.56.1
5694 - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
5695 - eslint: 10.2.1(jiti@2.6.1)
5696 - typescript: 5.9.3
5697 - transitivePeerDependencies:
5698 - - supports-color
5699 -
5391 '@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
5392 dependencies:
5393 '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
@@ -5708,11 +5399,6 @@ snapshots:
5399 transitivePeerDependencies:
5400 - supports-color
5401
5711 - '@typescript-eslint/visitor-keys@8.56.1':
5712 - dependencies:
5713 - '@typescript-eslint/types': 8.56.1
5714 - eslint-visitor-keys: 5.0.1
5715 -
5402 '@typescript-eslint/visitor-keys@8.58.2':
5403 dependencies:
5404 '@typescript-eslint/types': 8.58.2
@@ -5720,22 +5406,22 @@ snapshots:
5406
5407 '@ungap/structured-clone@1.3.0': {}
5408
5723 - '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))':
5409 + '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))':
5410 dependencies:
5411 '@babel/core': 7.29.0
5412 '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
5413 '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
5728 - '@rolldown/pluginutils': 1.0.0-rc.2
5414 + '@rolldown/pluginutils': 1.0.0-rc.16
5415 '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0)
5730 - vite: 7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
5416 + vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
5417 vue: 3.5.32(typescript@5.9.3)
5418 transitivePeerDependencies:
5419 - supports-color
5420
5735 - '@vitejs/plugin-vue@6.0.6(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))':
5421 + '@vitejs/plugin-vue@6.0.6(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3))':
5422 dependencies:
5423 '@rolldown/pluginutils': 1.0.0-rc.13
5738 - vite: 7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
5424 + vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
5425 vue: 3.5.32(typescript@5.9.3)
5426
5427 '@vitest/eslint-plugin@1.6.16(@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
@@ -5763,7 +5449,7 @@ snapshots:
5449
5450 '@vue-macros/common@3.1.2(vue@3.5.32(typescript@5.9.3))':
5451 dependencies:
5766 - '@vue/compiler-sfc': 3.5.30
5452 + '@vue/compiler-sfc': 3.5.32
5453 ast-kit: 2.2.0
5454 local-pkg: 1.1.2
5455 magic-string-ast: 1.0.3
@@ -5779,13 +5465,13 @@ snapshots:
5465 dependencies:
5466 '@babel/helper-module-imports': 7.28.6
5467 '@babel/helper-plugin-utils': 7.28.6
5782 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.29.0)
5468 + '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
5469 '@babel/template': 7.28.6
5470 '@babel/traverse': 7.29.0
5471 '@babel/types': 7.29.0
5472 '@vue/babel-helper-vue-transform-on': 1.5.0
5473 '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.29.0)
5788 - '@vue/shared': 3.5.30
5474 + '@vue/shared': 3.5.32
5475 optionalDependencies:
5476 '@babel/core': 7.29.0
5477 transitivePeerDependencies:
@@ -5795,13 +5481,13 @@ snapshots:
5481 dependencies:
5482 '@babel/helper-module-imports': 7.28.6
5483 '@babel/helper-plugin-utils': 7.28.6
5798 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.29.0)
5484 + '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
5485 '@babel/template': 7.28.6
5486 '@babel/traverse': 7.29.0
5487 '@babel/types': 7.29.0
5488 '@vue/babel-helper-vue-transform-on': 2.0.1
5489 '@vue/babel-plugin-resolve-type': 2.0.1(@babel/core@7.29.0)
5804 - '@vue/shared': 3.5.30
5490 + '@vue/shared': 3.5.32
5491 optionalDependencies:
5492 '@babel/core': 7.29.0
5493 transitivePeerDependencies:
@@ -5813,8 +5499,8 @@ snapshots:
5499 '@babel/core': 7.29.0
5500 '@babel/helper-module-imports': 7.28.6
5501 '@babel/helper-plugin-utils': 7.28.6
5816 - '@babel/parser': 7.29.0
5817 - '@vue/compiler-sfc': 3.5.30
5502 + '@babel/parser': 7.29.2
5503 + '@vue/compiler-sfc': 3.5.32
5504 transitivePeerDependencies:
5505 - supports-color
5506
@@ -5824,27 +5510,11 @@ snapshots:
5510 '@babel/core': 7.29.0
5511 '@babel/helper-module-imports': 7.28.6
5512 '@babel/helper-plugin-utils': 7.28.6
5827 - '@babel/parser': 7.29.0
5828 - '@vue/compiler-sfc': 3.5.30
5513 + '@babel/parser': 7.29.2
5514 + '@vue/compiler-sfc': 3.5.32
5515 transitivePeerDependencies:
5516 - supports-color
5517
5832 - '@vue/compiler-core@3.5.26':
5833 - dependencies:
5834 - '@babel/parser': 7.28.5
5835 - '@vue/shared': 3.5.26
5836 - entities: 7.0.1
5837 - estree-walker: 2.0.2
5838 - source-map-js: 1.2.1
5839 -
5840 - '@vue/compiler-core@3.5.30':
5841 - dependencies:
5842 - '@babel/parser': 7.29.0
5843 - '@vue/shared': 3.5.30
5844 - entities: 7.0.1
5845 - estree-walker: 2.0.2
5846 - source-map-js: 1.2.1
5847 -
5518 '@vue/compiler-core@3.5.32':
5519 dependencies:
5520 '@babel/parser': 7.29.2
@@ -5853,45 +5523,11 @@ snapshots:
5523 estree-walker: 2.0.2
5524 source-map-js: 1.2.1
5525
5856 - '@vue/compiler-dom@3.5.26':
5857 - dependencies:
5858 - '@vue/compiler-core': 3.5.26
5859 - '@vue/shared': 3.5.26
5860 -
5861 - '@vue/compiler-dom@3.5.30':
5862 - dependencies:
5863 - '@vue/compiler-core': 3.5.30
5864 - '@vue/shared': 3.5.30
5865 -
5526 '@vue/compiler-dom@3.5.32':
5527 dependencies:
5528 '@vue/compiler-core': 3.5.32
5529 '@vue/shared': 3.5.32
5530
5871 - '@vue/compiler-sfc@3.5.26':
5872 - dependencies:
5873 - '@babel/parser': 7.28.5
5874 - '@vue/compiler-core': 3.5.26
5875 - '@vue/compiler-dom': 3.5.26
5876 - '@vue/compiler-ssr': 3.5.26
5877 - '@vue/shared': 3.5.26
5878 - estree-walker: 2.0.2
5879 - magic-string: 0.30.21
5880 - postcss: 8.5.6
5881 - source-map-js: 1.2.1
5882 -
5883 - '@vue/compiler-sfc@3.5.30':
5884 - dependencies:
5885 - '@babel/parser': 7.29.0
5886 - '@vue/compiler-core': 3.5.30
5887 - '@vue/compiler-dom': 3.5.30
5888 - '@vue/compiler-ssr': 3.5.30
5889 - '@vue/shared': 3.5.30
5890 - estree-walker: 2.0.2
5891 - magic-string: 0.30.21
5892 - postcss: 8.5.8
5893 - source-map-js: 1.2.1
5894 -
5531 '@vue/compiler-sfc@3.5.32':
5532 dependencies:
5533 '@babel/parser': 7.29.2
@@ -5901,19 +5537,9 @@ snapshots:
5537 '@vue/shared': 3.5.32
5538 estree-walker: 2.0.2
5539 magic-string: 0.30.21
5904 - postcss: 8.5.8
5540 + postcss: 8.5.10
5541 source-map-js: 1.2.1
5542
5907 - '@vue/compiler-ssr@3.5.26':
5908 - dependencies:
5909 - '@vue/compiler-dom': 3.5.26
5910 - '@vue/shared': 3.5.26
5911 -
5912 - '@vue/compiler-ssr@3.5.30':
5913 - dependencies:
5914 - '@vue/compiler-dom': 3.5.30
5915 - '@vue/shared': 3.5.30
5916 -
5543 '@vue/compiler-ssr@3.5.32':
5544 dependencies:
5545 '@vue/compiler-dom': 3.5.32
@@ -5925,9 +5551,9 @@ snapshots:
5551 dependencies:
5552 '@vue/devtools-kit': 7.7.9
5553
5928 - '@vue/devtools-api@8.0.6':
5554 + '@vue/devtools-api@8.1.1':
5555 dependencies:
5930 - '@vue/devtools-kit': 8.1.0
5556 + '@vue/devtools-kit': 8.1.1
5557
5558 '@vue/devtools-core@8.1.1(vue@3.5.32(typescript@5.9.3))':
5559 dependencies:
@@ -5945,37 +5571,28 @@ snapshots:
5571 speakingurl: 14.0.1
5572 superjson: 2.2.6
5573
5948 - '@vue/devtools-kit@8.1.0':
5949 - dependencies:
5950 - '@vue/devtools-shared': 8.1.0
5951 - birpc: 2.9.0
5952 - hookable: 5.5.3
5953 - perfect-debounce: 2.0.0
5954 -
5574 '@vue/devtools-kit@8.1.1':
5575 dependencies:
5576 '@vue/devtools-shared': 8.1.1
5577 birpc: 2.9.0
5578 hookable: 5.5.3
5960 - perfect-debounce: 2.0.0
5579 + perfect-debounce: 2.1.0
5580
5581 '@vue/devtools-shared@7.7.9':
5582 dependencies:
5583 rfdc: 1.4.1
5584
5966 - '@vue/devtools-shared@8.1.0': {}
5967 -
5585 '@vue/devtools-shared@8.1.1': {}
5586
5970 - '@vue/language-core@3.2.6':
5587 + '@vue/language-core@3.2.7':
5588 dependencies:
5589 '@volar/language-core': 2.4.28
5973 - '@vue/compiler-dom': 3.5.30
5974 - '@vue/shared': 3.5.30
5590 + '@vue/compiler-dom': 3.5.32
5591 + '@vue/shared': 3.5.32
5592 alien-signals: 3.1.2
5593 muggle-string: 0.4.1
5594 path-browserify: 1.0.1
5978 - picomatch: 4.0.3
5595 + picomatch: 4.0.4
5596
5597 '@vue/reactivity@3.5.32':
5598 dependencies:
@@ -5999,10 +5616,6 @@ snapshots:
5616 '@vue/shared': 3.5.32
5617 vue: 3.5.32(typescript@5.9.3)
5618
6002 - '@vue/shared@3.5.26': {}
6003 -
6004 - '@vue/shared@3.5.30': {}
6005 -
5619 '@vue/shared@3.5.32': {}
5620
5621 '@vue/tsconfig@0.9.1(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3))':
@@ -6032,13 +5645,13 @@ snapshots:
5645 dependencies:
5646 '@vueuse/core': 13.9.0(vue@3.5.32(typescript@5.9.3))
5647 '@vueuse/shared': 13.9.0(vue@3.5.32(typescript@5.9.3))
6035 - defu: 6.1.4
5648 + defu: 6.1.7
5649 framesync: 6.1.2
5650 popmotion: 11.0.5
5651 style-value-types: 5.1.2
5652 vue: 3.5.32(typescript@5.9.3)
5653 optionalDependencies:
6041 - '@nuxt/kit': 3.20.2
5654 + '@nuxt/kit': 3.21.2
5655 transitivePeerDependencies:
5656 - magicast
5657
@@ -6050,16 +5663,12 @@ snapshots:
5663 dependencies:
5664 vue: 3.5.32(typescript@5.9.3)
5665
6053 - '@yr/monotone-cubic-spline@1.0.3': {}
6054 -
5666 acorn-jsx@5.3.2(acorn@8.16.0):
5667 dependencies:
5668 acorn: 8.16.0
5669
5670 acorn@7.4.1: {}
5671
6061 - acorn@8.15.0: {}
6062 -
5672 acorn@8.16.0: {}
5673
5674 ajv@6.14.0:
@@ -6081,14 +5690,7 @@ snapshots:
5690
5691 ansis@4.2.0: {}
5692
6084 - apexcharts@5.3.6:
6085 - dependencies:
6086 - '@svgdotjs/svg.draggable.js': 3.0.6(@svgdotjs/svg.js@3.2.5)
6087 - '@svgdotjs/svg.filter.js': 3.0.9
6088 - '@svgdotjs/svg.js': 3.2.5
6089 - '@svgdotjs/svg.resize.js': 2.0.5(@svgdotjs/svg.js@3.2.5)(@svgdotjs/svg.select.js@4.0.3(@svgdotjs/svg.js@3.2.5))
6090 - '@svgdotjs/svg.select.js': 4.0.3(@svgdotjs/svg.js@3.2.5)
6091 - '@yr/monotone-cubic-spline': 1.0.3
5693 + apexcharts@5.10.6: {}
5694
5695 are-docs-informative@0.0.2: {}
5696
@@ -6110,21 +5712,21 @@ snapshots:
5712
5713 ast-kit@2.2.0:
5714 dependencies:
6113 - '@babel/parser': 7.29.0
5715 + '@babel/parser': 7.29.2
5716 pathe: 2.0.3
5717
5718 ast-walker-scope@0.8.3:
5719 dependencies:
6118 - '@babel/parser': 7.29.0
5720 + '@babel/parser': 7.29.2
5721 ast-kit: 2.2.0
5722
5723 async-validator@4.2.5: {}
5724
5725 asynckit@0.4.0: {}
5726
6125 - axios@1.15.0:
5727 + axios@1.15.1:
5728 dependencies:
6127 - follow-redirects: 1.15.11
5729 + follow-redirects: 1.16.0
5730 form-data: 4.0.5
5731 proxy-from-env: 2.1.0
5732 transitivePeerDependencies:
@@ -6140,7 +5742,7 @@ snapshots:
5742
5743 balanced-match@4.0.4: {}
5744
6143 - baseline-browser-mapping@2.9.11: {}
5745 + baseline-browser-mapping@2.10.20: {}
5746
5747 bidi-js@1.0.3:
5748 dependencies:
@@ -6155,16 +5757,16 @@ snapshots:
5757
5758 boolbase@1.0.0: {}
5759
6158 - brace-expansion@1.1.12:
5760 + brace-expansion@1.1.14:
5761 dependencies:
5762 balanced-match: 1.0.2
5763 concat-map: 0.0.1
5764
6163 - brace-expansion@2.0.2:
5765 + brace-expansion@2.1.0:
5766 dependencies:
5767 balanced-match: 1.0.2
5768
6167 - brace-expansion@5.0.3:
5769 + brace-expansion@5.0.5:
5770 dependencies:
5771 balanced-match: 4.0.4
5772
@@ -6172,15 +5774,15 @@ snapshots:
5774 dependencies:
5775 fill-range: 7.1.1
5776
6175 - browserslist@4.28.1:
5777 + browserslist@4.28.2:
5778 dependencies:
6177 - baseline-browser-mapping: 2.9.11
6178 - caniuse-lite: 1.0.30001761
6179 - electron-to-chromium: 1.5.267
6180 - node-releases: 2.0.27
6181 - update-browserslist-db: 1.2.3(browserslist@4.28.1)
5779 + baseline-browser-mapping: 2.10.20
5780 + caniuse-lite: 1.0.30001788
5781 + electron-to-chromium: 1.5.340
5782 + node-releases: 2.0.37
5783 + update-browserslist-db: 1.2.3(browserslist@4.28.2)
5784
6183 - builtin-modules@5.0.0: {}
5785 + builtin-modules@5.1.0: {}
5786
5787 bundle-name@4.1.0:
5788 dependencies:
@@ -6188,20 +5790,20 @@ snapshots:
5790
5791 bytes@3.1.2: {}
5792
6191 - c12@3.3.3:
5793 + c12@3.3.4:
5794 dependencies:
5795 chokidar: 5.0.0
6194 - confbox: 0.2.2
6195 - defu: 6.1.4
6196 - dotenv: 17.2.3
5796 + confbox: 0.2.4
5797 + defu: 6.1.7
5798 + dotenv: 17.4.2
5799 exsolve: 1.0.8
6198 - giget: 2.0.0
5800 + giget: 3.2.0
5801 jiti: 2.6.1
5802 ohash: 2.0.11
5803 pathe: 2.0.3
6202 - perfect-debounce: 2.0.0
5804 + perfect-debounce: 2.1.0
5805 pkg-types: 2.3.0
6204 - rc9: 2.1.2
5806 + rc9: 3.0.1
5807 optional: true
5808
5809 cac@6.7.14: {}
@@ -6224,7 +5826,7 @@ snapshots:
5826
5827 camelcase@6.3.0: {}
5828
6227 - caniuse-lite@1.0.30001761: {}
5829 + caniuse-lite@1.0.30001788: {}
5830
5831 ccount@2.0.1: {}
5832
@@ -6309,14 +5911,14 @@ snapshots:
5911
5912 confbox@0.1.8: {}
5913
6312 - confbox@0.2.2: {}
5914 + confbox@0.2.4: {}
5915
5916 consola@3.4.2:
5917 optional: true
5918
5919 constantinople@4.0.1:
5920 dependencies:
6319 - '@babel/parser': 7.29.0
5921 + '@babel/parser': 7.29.2
5922 '@babel/types': 7.29.0
5923
5924 convert-source-map@2.0.0: {}
@@ -6327,7 +5929,7 @@ snapshots:
5929
5930 core-js-compat@3.49.0:
5931 dependencies:
6330 - browserslist: 4.28.1
5932 + browserslist: 4.28.2
5933
5934 cosmiconfig@7.1.0:
5935 dependencies:
@@ -6335,7 +5937,7 @@ snapshots:
5937 import-fresh: 3.3.1
5938 parse-json: 5.2.0
5939 path-type: 4.0.0
6338 - yaml: 1.10.2
5940 + yaml: 1.10.3
5941
5942 crelt@1.0.6: {}
5943
@@ -6410,7 +6012,7 @@ snapshots:
6012
6013 decimal.js@10.6.0: {}
6014
6413 - decode-named-character-reference@1.2.0:
6015 + decode-named-character-reference@1.3.0:
6016 dependencies:
6017 character-entities: 2.0.2
6018
@@ -6418,7 +6020,7 @@ snapshots:
6020
6021 default-browser-id@5.0.1: {}
6022
6421 - default-browser@5.4.0:
6023 + default-browser@5.5.0:
6024 dependencies:
6025 bundle-name: 4.1.0
6026 default-browser-id: 5.0.1
@@ -6427,15 +6029,15 @@ snapshots:
6029
6030 define-lazy-prop@3.0.0: {}
6031
6430 - defu@6.1.4: {}
6032 + defu@6.1.7: {}
6033
6034 delayed-stream@1.0.0: {}
6035
6036 depcheck@1.4.7:
6037 dependencies:
6436 - '@babel/parser': 7.28.5
6437 - '@babel/traverse': 7.28.5
6438 - '@vue/compiler-sfc': 3.5.26
6038 + '@babel/parser': 7.29.2
6039 + '@babel/traverse': 7.29.0
6040 + '@vue/compiler-sfc': 3.5.32
6041 callsite: 1.0.0
6042 camelcase: 6.3.0
6043 cosmiconfig: 7.1.0
@@ -6447,14 +6049,14 @@ snapshots:
6049 js-yaml: 3.14.2
6050 json5: 2.2.3
6051 lodash: 4.18.1
6450 - minimatch: 7.4.6
6052 + minimatch: 7.4.9
6053 multimatch: 5.0.0
6054 please-upgrade-node: 3.2.0
6055 readdirp: 3.6.0
6056 require-package-name: 2.0.1
6455 - resolve: 1.22.11
6057 + resolve: 1.22.12
6058 resolve-from: 5.0.0
6457 - semver: 7.7.3
6059 + semver: 7.7.4
6060 yargs: 16.2.0
6061 transitivePeerDependencies:
6062 - supports-color
@@ -6467,9 +6069,6 @@ snapshots:
6069
6070 detect-file@1.0.0: {}
6071
6470 - detect-libc@1.0.3:
6471 - optional: true
6472 -
6072 detect-libc@2.1.2: {}
6073
6074 detect-touch-device@1.1.6: {}
@@ -6500,7 +6099,7 @@ snapshots:
6099 domelementtype: 2.3.0
6100 domhandler: 5.0.3
6101
6503 - dotenv@17.2.3:
6102 + dotenv@17.4.2:
6103 optional: true
6104
6105 dunder-proto@1.0.1:
@@ -6516,7 +6115,7 @@ snapshots:
6115 tslib: 2.3.0
6116 zrender: 6.0.0
6117
6519 - electron-to-chromium@1.5.267: {}
6118 + electron-to-chromium@1.5.340: {}
6119
6120 emoji-regex@8.0.0: {}
6121
@@ -6526,10 +6125,10 @@ snapshots:
6125 dependencies:
6126 once: 1.4.0
6127
6529 - enhanced-resolve@5.19.0:
6128 + enhanced-resolve@5.20.1:
6129 dependencies:
6130 graceful-fs: 4.2.11
6532 - tapable: 2.3.0
6131 + tapable: 2.3.2
6132
6133 entities@4.5.0: {}
6134
@@ -6559,36 +6158,36 @@ snapshots:
6158 es-errors: 1.3.0
6159 get-intrinsic: 1.3.0
6160 has-tostringtag: 1.0.2
6562 - hasown: 2.0.2
6161 + hasown: 2.0.3
6162
6564 - esbuild@0.27.2:
6163 + esbuild@0.27.7:
6164 optionalDependencies:
6566 - '@esbuild/aix-ppc64': 0.27.2
6567 - '@esbuild/android-arm': 0.27.2
6568 - '@esbuild/android-arm64': 0.27.2
6569 - '@esbuild/android-x64': 0.27.2
6570 - '@esbuild/darwin-arm64': 0.27.2
6571 - '@esbuild/darwin-x64': 0.27.2
6572 - '@esbuild/freebsd-arm64': 0.27.2
6573 - '@esbuild/freebsd-x64': 0.27.2
6574 - '@esbuild/linux-arm': 0.27.2
6575 - '@esbuild/linux-arm64': 0.27.2
6576 - '@esbuild/linux-ia32': 0.27.2
6577 - '@esbuild/linux-loong64': 0.27.2
6578 - '@esbuild/linux-mips64el': 0.27.2
6579 - '@esbuild/linux-ppc64': 0.27.2
6580 - '@esbuild/linux-riscv64': 0.27.2
6581 - '@esbuild/linux-s390x': 0.27.2
6582 - '@esbuild/linux-x64': 0.27.2
6583 - '@esbuild/netbsd-arm64': 0.27.2
6584 - '@esbuild/netbsd-x64': 0.27.2
6585 - '@esbuild/openbsd-arm64': 0.27.2
6586 - '@esbuild/openbsd-x64': 0.27.2
6587 - '@esbuild/openharmony-arm64': 0.27.2
6588 - '@esbuild/sunos-x64': 0.27.2
6589 - '@esbuild/win32-arm64': 0.27.2
6590 - '@esbuild/win32-ia32': 0.27.2
6591 - '@esbuild/win32-x64': 0.27.2
6165 + '@esbuild/aix-ppc64': 0.27.7
6166 + '@esbuild/android-arm': 0.27.7
6167 + '@esbuild/android-arm64': 0.27.7
6168 + '@esbuild/android-x64': 0.27.7
6169 + '@esbuild/darwin-arm64': 0.27.7
6170 + '@esbuild/darwin-x64': 0.27.7
6171 + '@esbuild/freebsd-arm64': 0.27.7
6172 + '@esbuild/freebsd-x64': 0.27.7
6173 + '@esbuild/linux-arm': 0.27.7
6174 + '@esbuild/linux-arm64': 0.27.7
6175 + '@esbuild/linux-ia32': 0.27.7
6176 + '@esbuild/linux-loong64': 0.27.7
6177 + '@esbuild/linux-mips64el': 0.27.7
6178 + '@esbuild/linux-ppc64': 0.27.7
6179 + '@esbuild/linux-riscv64': 0.27.7
6180 + '@esbuild/linux-s390x': 0.27.7
6181 + '@esbuild/linux-x64': 0.27.7
6182 + '@esbuild/netbsd-arm64': 0.27.7
6183 + '@esbuild/netbsd-x64': 0.27.7
6184 + '@esbuild/openbsd-arm64': 0.27.7
6185 + '@esbuild/openbsd-x64': 0.27.7
6186 + '@esbuild/openharmony-arm64': 0.27.7
6187 + '@esbuild/sunos-x64': 0.27.7
6188 + '@esbuild/win32-arm64': 0.27.7
6189 + '@esbuild/win32-ia32': 0.27.7
6190 + '@esbuild/win32-x64': 0.27.7
6191
6192 escalade@3.2.0: {}
6193
@@ -6610,7 +6209,7 @@ snapshots:
6209
6210 eslint-flat-config-utils@3.1.0:
6211 dependencies:
6613 - '@eslint/config-helpers': 0.5.3
6212 + '@eslint/config-helpers': 0.5.5
6213 pathe: 2.0.3
6214
6215 eslint-json-compat-utils@0.2.3(eslint@10.2.1(jiti@2.6.1))(jsonc-eslint-parser@3.1.0):
@@ -6627,10 +6226,10 @@ snapshots:
6226 dependencies:
6227 eslint: 10.2.1(jiti@2.6.1)
6228
6630 - eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1)):
6229 + eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1)):
6230 dependencies:
6231 '@es-joy/jsdoccomment': 0.84.0
6633 - '@typescript-eslint/rule-tester': 8.56.1(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6232 + '@typescript-eslint/rule-tester': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6233 '@typescript-eslint/typescript-estree': 8.58.2(typescript@5.9.3)
6234 '@typescript-eslint/utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6235 eslint: 10.2.1(jiti@2.6.1)
@@ -6676,7 +6275,7 @@ snapshots:
6275 eslint-plugin-jsonc@3.1.2(eslint@10.2.1(jiti@2.6.1)):
6276 dependencies:
6277 '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
6679 - '@eslint/core': 1.1.1
6278 + '@eslint/core': 1.2.1
6279 '@eslint/plugin-kit': 0.6.1
6280 '@ota-meshi/ast-token-store': 0.3.0
6281 diff-sequences: 29.6.3
@@ -6691,10 +6290,10 @@ snapshots:
6290 eslint-plugin-n@17.24.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3):
6291 dependencies:
6292 '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
6694 - enhanced-resolve: 5.19.0
6293 + enhanced-resolve: 5.20.1
6294 eslint: 10.2.1(jiti@2.6.1)
6295 eslint-plugin-es-x: 7.8.0(eslint@10.2.1(jiti@2.6.1))
6697 - get-tsconfig: 4.13.0
6296 + get-tsconfig: 4.14.0
6297 globals: 15.15.0
6298 globrex: 0.1.2
6299 ignore: 5.3.2
@@ -6705,7 +6304,7 @@ snapshots:
6304
6305 eslint-plugin-no-only-tests@3.3.0: {}
6306
6708 - eslint-plugin-perfectionist@5.8.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3):
6307 + eslint-plugin-perfectionist@5.9.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3):
6308 dependencies:
6309 '@typescript-eslint/utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6310 eslint: 10.2.1(jiti@2.6.1)
@@ -6721,24 +6320,24 @@ snapshots:
6320 jsonc-eslint-parser: 3.1.0
6321 pathe: 2.0.3
6322 pnpm-workspace-yaml: 1.6.0
6724 - tinyglobby: 0.2.15
6725 - yaml: 2.8.2
6323 + tinyglobby: 0.2.16
6324 + yaml: 2.8.3
6325 yaml-eslint-parser: 2.0.0
6326
6327 eslint-plugin-regexp@3.1.0(eslint@10.2.1(jiti@2.6.1)):
6328 dependencies:
6329 '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
6330 '@eslint-community/regexpp': 4.12.2
6732 - comment-parser: 1.4.5
6331 + comment-parser: 1.4.6
6332 eslint: 10.2.1(jiti@2.6.1)
6734 - jsdoc-type-pratt-parser: 7.1.1
6333 + jsdoc-type-pratt-parser: 7.2.0
6334 refa: 0.12.1
6335 regexp-ast-analysis: 0.7.1
6336 scslre: 0.3.0
6337
6338 eslint-plugin-toml@1.3.1(eslint@10.2.1(jiti@2.6.1)):
6339 dependencies:
6741 - '@eslint/core': 1.1.1
6340 + '@eslint/core': 1.2.1
6341 '@eslint/plugin-kit': 0.6.1
6342 '@ota-meshi/ast-token-store': 0.3.0
6343 debug: 4.4.3
@@ -6763,7 +6362,7 @@ snapshots:
6362 jsesc: 3.1.0
6363 pluralize: 8.0.0
6364 regexp-tree: 0.1.27
6766 - regjsparser: 0.13.0
6365 + regjsparser: 0.13.1
6366 semver: 7.7.4
6367 strip-indent: 4.1.1
6368
@@ -6789,7 +6388,7 @@ snapshots:
6388
6389 eslint-plugin-yml@3.3.1(eslint@10.2.1(jiti@2.6.1)):
6390 dependencies:
6792 - '@eslint/core': 1.1.1
6391 + '@eslint/core': 1.2.1
6392 '@eslint/plugin-kit': 0.6.1
6393 '@ota-meshi/ast-token-store': 0.3.0
6394 debug: 4.4.3
@@ -6827,7 +6426,7 @@ snapshots:
6426 '@eslint/config-helpers': 0.5.5
6427 '@eslint/core': 1.2.1
6428 '@eslint/plugin-kit': 0.7.1
6830 - '@humanfs/node': 0.16.7
6429 + '@humanfs/node': 0.16.8
6430 '@humanwhocodes/module-importer': 1.0.1
6431 '@humanwhocodes/retry': 0.4.3
6432 '@types/estree': 1.0.8
@@ -6848,7 +6447,7 @@ snapshots:
6447 imurmurhash: 0.1.4
6448 is-glob: 4.0.3
6449 json-stable-stringify-without-jsonify: 1.0.1
6851 - minimatch: 10.2.4
6450 + minimatch: 10.2.5
6451 natural-compare: 1.4.0
6452 optionator: 0.9.4
6453 optionalDependencies:
@@ -6862,12 +6461,6 @@ snapshots:
6461 acorn-jsx: 5.3.2(acorn@8.16.0)
6462 eslint-visitor-keys: 4.2.1
6463
6865 - espree@11.1.1:
6866 - dependencies:
6867 - acorn: 8.16.0
6868 - acorn-jsx: 5.3.2(acorn@8.16.0)
6869 - eslint-visitor-keys: 5.0.1
6870 -
6464 espree@11.2.0:
6465 dependencies:
6466 acorn: 8.16.0
@@ -6949,9 +6542,9 @@ snapshots:
6542 dependencies:
6543 format: 0.2.2
6544
6952 - fdir@6.5.0(picomatch@4.0.3):
6545 + fdir@6.5.0(picomatch@4.0.4):
6546 optionalDependencies:
6954 - picomatch: 4.0.3
6547 + picomatch: 4.0.4
6548
6549 file-entry-cache@8.0.0:
6550 dependencies:
@@ -6979,21 +6572,21 @@ snapshots:
6572
6573 flat-cache@4.0.1:
6574 dependencies:
6982 - flatted: 3.3.3
6575 + flatted: 3.4.2
6576 keyv: 4.5.4
6577
6985 - flatted@3.3.3: {}
6578 + flatted@3.4.2: {}
6579
6580 flourite@1.3.0: {}
6581
6989 - follow-redirects@1.15.11: {}
6582 + follow-redirects@1.16.0: {}
6583
6584 form-data@4.0.5:
6585 dependencies:
6586 asynckit: 0.4.0
6587 combined-stream: 1.0.8
6588 es-set-tostringtag: 2.1.0
6996 - hasown: 2.0.2
6589 + hasown: 2.0.3
6590 mime-types: 2.1.35
6591
6592 format@0.2.2: {}
@@ -7029,7 +6622,7 @@ snapshots:
6622 get-proto: 1.0.1
6623 gopd: 1.2.0
6624 has-symbols: 1.1.0
7032 - hasown: 2.0.2
6625 + hasown: 2.0.3
6626 math-intrinsics: 1.1.0
6627
6628 get-proto@1.0.1:
@@ -7041,18 +6634,11 @@ snapshots:
6634 dependencies:
6635 pump: 3.0.4
6636
7044 - get-tsconfig@4.13.0:
6637 + get-tsconfig@4.14.0:
6638 dependencies:
6639 resolve-pkg-maps: 1.0.0
6640
7048 - giget@2.0.0:
7049 - dependencies:
7050 - citty: 0.1.6
7051 - consola: 3.4.2
7052 - defu: 6.1.4
7053 - node-fetch-native: 1.6.7
7054 - nypm: 0.6.2
7055 - pathe: 2.0.3
6641 + giget@3.2.0:
6642 optional: true
6643
6644 github-slugger@2.0.0: {}
@@ -7095,7 +6681,7 @@ snapshots:
6681 dependencies:
6682 has-symbols: 1.1.0
6683
7098 - hasown@2.0.2:
6684 + hasown@2.0.3:
6685 dependencies:
6686 function-bind: 1.1.2
6687
@@ -7171,11 +6757,11 @@ snapshots:
6757
6758 is-builtin-module@5.0.0:
6759 dependencies:
7174 - builtin-modules: 5.0.0
6760 + builtin-modules: 5.1.0
6761
6762 is-core-module@2.16.1:
6763 dependencies:
7178 - hasown: 2.0.2
6764 + hasown: 2.0.3
6765
6766 is-docker@2.2.1: {}
6767
@@ -7209,7 +6795,7 @@ snapshots:
6795 call-bound: 1.0.4
6796 gopd: 1.2.0
6797 has-tostringtag: 1.0.2
7212 - hasown: 2.0.2
6798 + hasown: 2.0.3
6799
6800 is-stream@2.0.1: {}
6801
@@ -7221,13 +6807,13 @@ snapshots:
6807 dependencies:
6808 is-docker: 2.2.1
6809
7224 - is-wsl@3.1.0:
6810 + is-wsl@3.1.1:
6811 dependencies:
6812 is-inside-container: 1.0.0
6813
6814 isexe@2.0.0: {}
6815
7230 - isexe@3.1.1: {}
6816 + isexe@3.1.5: {}
6817
6818 jiti@2.6.1: {}
6819
@@ -7269,16 +6855,16 @@ snapshots:
6855 jsdom@29.0.2:
6856 dependencies:
6857 '@asamuzakjp/css-color': 5.1.11
7272 - '@asamuzakjp/dom-selector': 7.0.10
6858 + '@asamuzakjp/dom-selector': 7.1.1
6859 '@bramus/specificity': 2.4.2
7274 - '@csstools/css-syntax-patches-for-csstree': 1.1.1(css-tree@3.2.1)
6860 + '@csstools/css-syntax-patches-for-csstree': 1.1.3(css-tree@3.2.1)
6861 '@exodus/bytes': 1.15.0
6862 css-tree: 3.2.1
6863 data-urls: 7.0.0
6864 decimal.js: 10.6.0
6865 html-encoding-sniffer: 6.0.0
6866 is-potential-custom-element-name: 1.0.1
7281 - lru-cache: 11.2.7
6867 + lru-cache: 11.3.5
6868 parse5: 8.0.0
6869 saxes: 6.0.0
6870 symbol-tree: 3.2.4
@@ -7401,7 +6987,7 @@ snapshots:
6987
6988 local-pkg@1.1.2:
6989 dependencies:
7404 - mlly: 1.8.0
6990 + mlly: 1.8.2
6991 pkg-types: 2.3.0
6992 quansync: 0.2.11
6993
@@ -7409,7 +6995,7 @@ snapshots:
6995 dependencies:
6996 p-locate: 5.0.0
6997
7412 - lodash-es@4.17.22: {}
6998 + lodash-es@4.18.1: {}
6999
7000 lodash.merge@4.6.2: {}
7001
@@ -7417,7 +7003,7 @@ snapshots:
7003
7004 longest-streak@3.1.0: {}
7005
7420 - lru-cache@11.2.7: {}
7006 + lru-cache@11.3.5: {}
7007
7008 lru-cache@5.1.1:
7009 dependencies:
@@ -7433,15 +7019,6 @@ snapshots:
7019 dependencies:
7020 '@jridgewell/sourcemap-codec': 1.5.5
7021
7436 - markdown-it@14.1.0:
7437 - dependencies:
7438 - argparse: 2.0.1
7439 - entities: 4.5.0
7440 - linkify-it: 5.0.0
7441 - mdurl: 2.0.0
7442 - punycode.js: 2.3.1
7443 - uc.micro: 2.1.0
7444 -
7022 markdown-it@14.1.1:
7023 dependencies:
7024 argparse: 2.0.1
@@ -7466,11 +7043,11 @@ snapshots:
7043 unist-util-is: 6.0.1
7044 unist-util-visit-parents: 6.0.2
7045
7469 - mdast-util-from-markdown@2.0.2:
7046 + mdast-util-from-markdown@2.0.3:
7047 dependencies:
7048 '@types/mdast': 4.0.4
7049 '@types/unist': 3.0.3
7473 - decode-named-character-reference: 1.2.0
7050 + decode-named-character-reference: 1.3.0
7051 devlop: 1.1.0
7052 mdast-util-to-string: 4.0.0
7053 micromark: 4.0.2
@@ -7488,7 +7065,7 @@ snapshots:
7065 '@types/mdast': 4.0.4
7066 devlop: 1.1.0
7067 escape-string-regexp: 5.0.0
7491 - mdast-util-from-markdown: 2.0.2
7068 + mdast-util-from-markdown: 2.0.3
7069 mdast-util-to-markdown: 2.1.2
7070 micromark-extension-frontmatter: 2.0.0
7071 transitivePeerDependencies:
@@ -7506,7 +7083,7 @@ snapshots:
7083 dependencies:
7084 '@types/mdast': 4.0.4
7085 devlop: 1.1.0
7509 - mdast-util-from-markdown: 2.0.2
7086 + mdast-util-from-markdown: 2.0.3
7087 mdast-util-to-markdown: 2.1.2
7088 micromark-util-normalize-identifier: 2.0.1
7089 transitivePeerDependencies:
@@ -7515,7 +7092,7 @@ snapshots:
7092 mdast-util-gfm-strikethrough@2.0.0:
7093 dependencies:
7094 '@types/mdast': 4.0.4
7518 - mdast-util-from-markdown: 2.0.2
7095 + mdast-util-from-markdown: 2.0.3
7096 mdast-util-to-markdown: 2.1.2
7097 transitivePeerDependencies:
7098 - supports-color
@@ -7525,7 +7102,7 @@ snapshots:
7102 '@types/mdast': 4.0.4
7103 devlop: 1.1.0
7104 markdown-table: 3.0.4
7528 - mdast-util-from-markdown: 2.0.2
7105 + mdast-util-from-markdown: 2.0.3
7106 mdast-util-to-markdown: 2.1.2
7107 transitivePeerDependencies:
7108 - supports-color
@@ -7534,14 +7111,14 @@ snapshots:
7111 dependencies:
7112 '@types/mdast': 4.0.4
7113 devlop: 1.1.0
7537 - mdast-util-from-markdown: 2.0.2
7114 + mdast-util-from-markdown: 2.0.3
7115 mdast-util-to-markdown: 2.1.2
7116 transitivePeerDependencies:
7117 - supports-color
7118
7119 mdast-util-gfm@3.1.0:
7120 dependencies:
7544 - mdast-util-from-markdown: 2.0.2
7121 + mdast-util-from-markdown: 2.0.3
7122 mdast-util-gfm-autolink-literal: 2.0.1
7123 mdast-util-gfm-footnote: 2.1.0
7124 mdast-util-gfm-strikethrough: 2.0.0
@@ -7557,7 +7134,7 @@ snapshots:
7134 '@types/mdast': 4.0.4
7135 devlop: 1.1.0
7136 longest-streak: 3.1.0
7560 - mdast-util-from-markdown: 2.0.2
7137 + mdast-util-from-markdown: 2.0.3
7138 mdast-util-to-markdown: 2.1.2
7139 unist-util-remove-position: 5.0.0
7140 transitivePeerDependencies:
@@ -7577,7 +7154,7 @@ snapshots:
7154 micromark-util-sanitize-uri: 2.0.1
7155 trim-lines: 3.0.1
7156 unist-util-position: 5.0.0
7580 - unist-util-visit: 5.0.0
7157 + unist-util-visit: 5.1.0
7158 vfile: 6.0.3
7159
7160 mdast-util-to-markdown@2.1.2:
@@ -7589,7 +7166,7 @@ snapshots:
7166 mdast-util-to-string: 4.0.0
7167 micromark-util-classify-character: 2.0.1
7168 micromark-util-decode-string: 2.0.1
7592 - unist-util-visit: 5.0.0
7169 + unist-util-visit: 5.1.0
7170 zwitch: 2.0.4
7171
7172 mdast-util-to-string@4.0.0:
@@ -7612,7 +7189,7 @@ snapshots:
7189
7190 micromark-core-commonmark@2.0.3:
7191 dependencies:
7615 - decode-named-character-reference: 1.2.0
7192 + decode-named-character-reference: 1.3.0
7193 devlop: 1.1.0
7194 micromark-factory-destination: 2.0.1
7195 micromark-factory-label: 2.0.1
@@ -7762,7 +7339,7 @@ snapshots:
7339
7340 micromark-util-decode-string@2.0.1:
7341 dependencies:
7765 - decode-named-character-reference: 1.2.0
7342 + decode-named-character-reference: 1.3.0
7343 micromark-util-character: 2.1.1
7344 micromark-util-decode-numeric-character-reference: 2.0.2
7345 micromark-util-symbol: 2.0.1
@@ -7798,9 +7375,9 @@ snapshots:
7375
7376 micromark@4.0.2:
7377 dependencies:
7801 - '@types/debug': 4.1.12
7378 + '@types/debug': 4.1.13
7379 debug: 4.4.3
7803 - decode-named-character-reference: 1.2.0
7380 + decode-named-character-reference: 1.3.0
7381 devlop: 1.1.0
7382 micromark-core-commonmark: 2.0.3
7383 micromark-factory-space: 2.0.1
@@ -7821,7 +7398,7 @@ snapshots:
7398 micromatch@4.0.8:
7399 dependencies:
7400 braces: 3.0.3
7824 - picomatch: 2.3.1
7401 + picomatch: 2.3.2
7402
7403 mime-db@1.52.0: {}
7404
@@ -7833,26 +7410,26 @@ snapshots:
7410
7411 mimic-function@5.0.1: {}
7412
7836 - minimatch@10.2.4:
7413 + minimatch@10.2.5:
7414 dependencies:
7838 - brace-expansion: 5.0.3
7415 + brace-expansion: 5.0.5
7416
7840 - minimatch@3.1.2:
7417 + minimatch@3.1.5:
7418 dependencies:
7842 - brace-expansion: 1.1.12
7419 + brace-expansion: 1.1.14
7420
7844 - minimatch@7.4.6:
7421 + minimatch@7.4.9:
7422 dependencies:
7846 - brace-expansion: 2.0.2
7423 + brace-expansion: 2.1.0
7424
7425 mitt@3.0.1: {}
7426
7850 - mlly@1.8.0:
7427 + mlly@1.8.2:
7428 dependencies:
7852 - acorn: 8.15.0
7429 + acorn: 8.16.0
7430 pathe: 2.0.3
7431 pkg-types: 1.3.1
7855 - ufo: 1.6.1
7432 + ufo: 1.6.3
7433
7434 module-replacements@2.11.0: {}
7435
@@ -7868,7 +7445,7 @@ snapshots:
7445 array-differ: 3.0.0
7446 array-union: 2.1.0
7447 arrify: 2.0.1
7871 - minimatch: 3.1.2
7448 + minimatch: 3.1.5
7449
7450 naive-ui@2.44.1(vue@3.5.32(typescript@5.9.3)):
7451 dependencies:
@@ -7884,7 +7461,7 @@ snapshots:
7461 evtd: 0.2.4
7462 highlight.js: 11.11.1
7463 lodash: 4.18.1
7887 - lodash-es: 4.17.22
7464 + lodash-es: 4.18.1
7465 seemly: 0.3.10
7466 treemate: 0.3.11
7467 vdirs: 0.1.8(vue@3.5.32(typescript@5.9.3))
@@ -7905,7 +7482,7 @@ snapshots:
7482
7483 node-fetch-native@1.6.7: {}
7484
7908 - node-releases@2.0.27: {}
7485 + node-releases@2.0.37: {}
7486
7487 node-sarif-builder@3.4.0:
7488 dependencies:
@@ -7919,7 +7496,7 @@ snapshots:
7496 ansi-styles: 6.2.3
7497 cross-spawn: 7.0.6
7498 memorystream: 0.3.1
7922 - picomatch: 4.0.3
7499 + picomatch: 4.0.4
7500 pidtree: 0.6.0
7501 read-package-json-fast: 4.0.0
7502 shell-quote: 1.8.3
@@ -7933,15 +7510,6 @@ snapshots:
7510 dependencies:
7511 boolbase: 1.0.0
7512
7936 - nypm@0.6.2:
7937 - dependencies:
7938 - citty: 0.1.6
7939 - consola: 3.4.2
7940 - pathe: 2.0.3
7941 - pkg-types: 2.3.0
7942 - tinyexec: 1.0.2
7943 - optional: true
7944 -
7513 object-assign@4.1.1: {}
7514
7515 object-deep-merge@2.0.0: {}
@@ -7950,7 +7518,7 @@ snapshots:
7518 dependencies:
7519 destr: 2.0.5
7520 node-fetch-native: 1.6.7
7953 - ufo: 1.6.1
7521 + ufo: 1.6.3
7522
7523 ohash@2.0.11: {}
7524
@@ -7966,17 +7534,17 @@ snapshots:
7534 dependencies:
7535 mimic-function: 5.0.1
7536
7969 - oniguruma-parser@0.12.1: {}
7537 + oniguruma-parser@0.12.2: {}
7538
7971 - oniguruma-to-es@4.3.4:
7539 + oniguruma-to-es@4.3.6:
7540 dependencies:
7973 - oniguruma-parser: 0.12.1
7541 + oniguruma-parser: 0.12.2
7542 regex: 6.1.0
7543 regex-recursion: 6.0.2
7544
7545 open@10.2.0:
7546 dependencies:
7979 - default-browser: 5.4.0
7547 + default-browser: 5.5.0
7548 define-lazy-prop: 3.0.0
7549 is-inside-container: 1.0.0
7550 wsl-utils: 0.1.0
@@ -8018,7 +7586,7 @@ snapshots:
7586
7587 parse-json@5.2.0:
7588 dependencies:
8021 - '@babel/code-frame': 7.27.1
7589 + '@babel/code-frame': 7.29.0
7590 error-ex: 1.3.4
7591 json-parse-even-better-errors: 2.3.1
7592 lines-and-columns: 1.2.4
@@ -8051,21 +7619,21 @@ snapshots:
7619
7620 perfect-debounce@1.0.0: {}
7621
8054 - perfect-debounce@2.0.0: {}
7622 + perfect-debounce@2.1.0: {}
7623
7624 picocolors@1.1.1: {}
7625
8058 - picomatch@2.3.1: {}
7626 + picomatch@2.3.2: {}
7627
8060 - picomatch@4.0.3: {}
7628 + picomatch@4.0.4: {}
7629
7630 pidtree@0.6.0: {}
7631
8064 - pinia-plugin-persistedstate@4.7.1(@nuxt/kit@3.20.2)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3))):
7632 + pinia-plugin-persistedstate@4.7.1(@nuxt/kit@3.21.2)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3))):
7633 dependencies:
8066 - defu: 6.1.4
7634 + defu: 6.1.7
7635 optionalDependencies:
8068 - '@nuxt/kit': 3.20.2
7636 + '@nuxt/kit': 3.21.2
7637 pinia: 3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3))
7638
7639 pinia@3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3)):
@@ -8078,12 +7646,12 @@ snapshots:
7646 pkg-types@1.3.1:
7647 dependencies:
7648 confbox: 0.1.8
8081 - mlly: 1.8.0
7649 + mlly: 1.8.2
7650 pathe: 2.0.3
7651
7652 pkg-types@2.3.0:
7653 dependencies:
8086 - confbox: 0.2.2
7654 + confbox: 0.2.4
7655 exsolve: 1.0.8
7656 pathe: 2.0.3
7657
@@ -8109,13 +7677,7 @@ snapshots:
7677 cssesc: 3.0.0
7678 util-deprecate: 1.0.2
7679
8112 - postcss@8.5.6:
8113 - dependencies:
8114 - nanoid: 3.3.11
8115 - picocolors: 1.1.1
8116 - source-map-js: 1.2.1
8117 -
8118 - postcss@8.5.8:
7680 + postcss@8.5.10:
7681 dependencies:
7682 nanoid: 3.3.11
7683 picocolors: 1.1.1
@@ -8143,7 +7705,7 @@ snapshots:
7705 js-stringify: 1.0.2
7706 pug-runtime: 3.0.1
7707
8146 - pug-code-gen@3.0.3:
7708 + pug-code-gen@3.0.4:
7709 dependencies:
7710 constantinople: 4.0.1
7711 doctypes: 1.1.0
@@ -8162,7 +7724,7 @@ snapshots:
7724 jstransformer: 1.0.0
7725 pug-error: 2.1.0
7726 pug-walk: 2.0.0
8165 - resolve: 1.22.11
7727 + resolve: 1.22.12
7728
7729 pug-lexer@5.0.1:
7730 dependencies:
@@ -8193,9 +7755,9 @@ snapshots:
7755
7756 pug-walk@2.0.0: {}
7757
8196 - pug@3.0.3:
7758 + pug@3.0.4:
7759 dependencies:
8198 - pug-code-gen: 3.0.3
7760 + pug-code-gen: 3.0.4
7761 pug-filters: 4.0.0
7762 pug-lexer: 5.0.1
7763 pug-linker: 4.0.0
@@ -8219,9 +7781,9 @@ snapshots:
7781
7782 queue-microtask@1.2.3: {}
7783
8222 - rc9@2.1.2:
7784 + rc9@3.0.1:
7785 dependencies:
8224 - defu: 6.1.4
7786 + defu: 6.1.7
7787 destr: 2.0.5
7788 optional: true
7789
@@ -8232,7 +7794,7 @@ snapshots:
7794
7795 readdirp@3.6.0:
7796 dependencies:
8235 - picomatch: 2.3.1
7797 + picomatch: 2.3.2
7798
7799 readdirp@4.1.2: {}
7800
@@ -8259,7 +7821,7 @@ snapshots:
7821
7822 regexp-tree@0.1.27: {}
7823
8262 - regjsparser@0.13.0:
7824 + regjsparser@0.13.1:
7825 dependencies:
7826 jsesc: 3.1.0
7827
@@ -8286,8 +7848,9 @@ snapshots:
7848
7849 resolve-pkg-maps@1.0.0: {}
7850
8289 - resolve@1.22.11:
7851 + resolve@1.22.12:
7852 dependencies:
7853 + es-errors: 1.3.0
7854 is-core-module: 2.16.1
7855 path-parse: 1.0.7
7856 supports-preserve-symlinks-flag: 1.0.0
@@ -8301,41 +7864,44 @@ snapshots:
7864
7865 rfdc@1.4.1: {}
7866
8304 - rollup-plugin-visualizer@5.14.0(rollup@4.54.0):
7867 + rollup-plugin-visualizer@5.14.0(rollup@4.60.2):
7868 dependencies:
7869 open: 8.4.2
8307 - picomatch: 4.0.3
7870 + picomatch: 4.0.4
7871 source-map: 0.7.6
7872 yargs: 17.7.2
7873 optionalDependencies:
8311 - rollup: 4.54.0
7874 + rollup: 4.60.2
7875
8313 - rollup@4.54.0:
7876 + rollup@4.60.2:
7877 dependencies:
7878 '@types/estree': 1.0.8
7879 optionalDependencies:
8317 - '@rollup/rollup-android-arm-eabi': 4.54.0
8318 - '@rollup/rollup-android-arm64': 4.54.0
8319 - '@rollup/rollup-darwin-arm64': 4.54.0
8320 - '@rollup/rollup-darwin-x64': 4.54.0
8321 - '@rollup/rollup-freebsd-arm64': 4.54.0
8322 - '@rollup/rollup-freebsd-x64': 4.54.0
8323 - '@rollup/rollup-linux-arm-gnueabihf': 4.54.0
8324 - '@rollup/rollup-linux-arm-musleabihf': 4.54.0
8325 - '@rollup/rollup-linux-arm64-gnu': 4.54.0
8326 - '@rollup/rollup-linux-arm64-musl': 4.54.0
8327 - '@rollup/rollup-linux-loong64-gnu': 4.54.0
8328 - '@rollup/rollup-linux-ppc64-gnu': 4.54.0
8329 - '@rollup/rollup-linux-riscv64-gnu': 4.54.0
8330 - '@rollup/rollup-linux-riscv64-musl': 4.54.0
8331 - '@rollup/rollup-linux-s390x-gnu': 4.54.0
8332 - '@rollup/rollup-linux-x64-gnu': 4.54.0
8333 - '@rollup/rollup-linux-x64-musl': 4.54.0
8334 - '@rollup/rollup-openharmony-arm64': 4.54.0
8335 - '@rollup/rollup-win32-arm64-msvc': 4.54.0
8336 - '@rollup/rollup-win32-ia32-msvc': 4.54.0
8337 - '@rollup/rollup-win32-x64-gnu': 4.54.0
8338 - '@rollup/rollup-win32-x64-msvc': 4.54.0
7880 + '@rollup/rollup-android-arm-eabi': 4.60.2
7881 + '@rollup/rollup-android-arm64': 4.60.2
7882 + '@rollup/rollup-darwin-arm64': 4.60.2
7883 + '@rollup/rollup-darwin-x64': 4.60.2
7884 + '@rollup/rollup-freebsd-arm64': 4.60.2
7885 + '@rollup/rollup-freebsd-x64': 4.60.2
7886 + '@rollup/rollup-linux-arm-gnueabihf': 4.60.2
7887 + '@rollup/rollup-linux-arm-musleabihf': 4.60.2
7888 + '@rollup/rollup-linux-arm64-gnu': 4.60.2
7889 + '@rollup/rollup-linux-arm64-musl': 4.60.2
7890 + '@rollup/rollup-linux-loong64-gnu': 4.60.2
7891 + '@rollup/rollup-linux-loong64-musl': 4.60.2
7892 + '@rollup/rollup-linux-ppc64-gnu': 4.60.2
7893 + '@rollup/rollup-linux-ppc64-musl': 4.60.2
7894 + '@rollup/rollup-linux-riscv64-gnu': 4.60.2
7895 + '@rollup/rollup-linux-riscv64-musl': 4.60.2
7896 + '@rollup/rollup-linux-s390x-gnu': 4.60.2
7897 + '@rollup/rollup-linux-x64-gnu': 4.60.2
7898 + '@rollup/rollup-linux-x64-musl': 4.60.2
7899 + '@rollup/rollup-openbsd-x64': 4.60.2
7900 + '@rollup/rollup-openharmony-arm64': 4.60.2
7901 + '@rollup/rollup-win32-arm64-msvc': 4.60.2
7902 + '@rollup/rollup-win32-ia32-msvc': 4.60.2
7903 + '@rollup/rollup-win32-x64-gnu': 4.60.2
7904 + '@rollup/rollup-win32-x64-msvc': 4.60.2
7905 fsevents: 2.3.3
7906
7907 run-applescript@7.1.0: {}
@@ -8350,9 +7916,9 @@ snapshots:
7916 immutable: 5.1.5
7917 source-map-js: 1.2.1
7918 optionalDependencies:
8353 - '@parcel/watcher': 2.5.1
7919 + '@parcel/watcher': 2.5.6
7920
8355 - sax@1.5.0: {}
7921 + sax@1.6.0: {}
7922
7923 saxes@6.0.0:
7924 dependencies:
@@ -8377,8 +7943,6 @@ snapshots:
7943
7944 semver@6.3.1: {}
7945
8380 - semver@7.7.3: {}
8381 -
7946 semver@7.7.4: {}
7947
7948 shebang-command@2.0.0:
@@ -8427,9 +7991,9 @@ snapshots:
7991 spdx-expression-parse@4.0.0:
7992 dependencies:
7993 spdx-exceptions: 2.5.0
8430 - spdx-license-ids: 3.0.22
7994 + spdx-license-ids: 3.0.23
7995
8432 - spdx-license-ids@3.0.22: {}
7996 + spdx-license-ids@3.0.23: {}
7997
7998 speakingurl@14.0.1: {}
7999
@@ -8475,7 +8039,7 @@ snapshots:
8039 css-what: 6.2.2
8040 csso: 5.0.5
8041 picocolors: 1.1.1
8478 - sax: 1.5.0
8042 + sax: 1.6.0
8043
8044 symbol-tree@3.2.4: {}
8045
@@ -8487,7 +8051,7 @@ snapshots:
8051
8052 tailwindcss@4.2.2: {}
8053
8490 - tapable@2.3.0: {}
8054 + tapable@2.3.2: {}
8055
8056 taze@19.11.0:
8057 dependencies:
@@ -8501,30 +8065,28 @@ snapshots:
8065 pnpm-workspace-yaml: 1.6.0
8066 restore-cursor: 5.1.0
8067 tinyexec: 1.1.1
8504 - tinyglobby: 0.2.15
8068 + tinyglobby: 0.2.16
8069 unconfig: 7.5.0
8070 yaml: 2.8.3
8071
8508 - thememirror@2.0.1(@codemirror/language@6.12.1)(@codemirror/state@6.5.3)(@codemirror/view@6.39.7):
8072 + thememirror@2.0.1(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.41.1):
8073 dependencies:
8510 - '@codemirror/language': 6.12.1
8511 - '@codemirror/state': 6.5.3
8512 - '@codemirror/view': 6.39.7
8513 -
8514 - tinyexec@1.0.2: {}
8074 + '@codemirror/language': 6.12.3
8075 + '@codemirror/state': 6.6.0
8076 + '@codemirror/view': 6.41.1
8077
8078 tinyexec@1.1.1: {}
8079
8518 - tinyglobby@0.2.15:
8080 + tinyglobby@0.2.16:
8081 dependencies:
8520 - fdir: 6.5.0(picomatch@4.0.3)
8521 - picomatch: 4.0.3
8082 + fdir: 6.5.0(picomatch@4.0.4)
8083 + picomatch: 4.0.4
8084
8523 - tldts-core@7.0.19: {}
8085 + tldts-core@7.0.28: {}
8086
8525 - tldts@7.0.19:
8087 + tldts@7.0.28:
8088 dependencies:
8527 - tldts-core: 7.0.19
8089 + tldts-core: 7.0.28
8090
8091 tmp@0.2.5: {}
8092
@@ -8547,7 +8109,7 @@ snapshots:
8109
8110 tough-cookie@6.0.1:
8111 dependencies:
8550 - tldts: 7.0.19
8112 + tldts: 7.0.28
8113
8114 tr46@6.0.0:
8115 dependencies:
@@ -8557,17 +8119,13 @@ snapshots:
8119
8120 trim-lines@3.0.1: {}
8121
8560 - ts-api-utils@2.4.0(typescript@5.9.3):
8561 - dependencies:
8562 - typescript: 5.9.3
8563 -
8122 ts-api-utils@2.5.0(typescript@5.9.3):
8123 dependencies:
8124 typescript: 5.9.3
8125
8126 ts-declaration-location@1.0.7(typescript@5.9.3):
8127 dependencies:
8570 - picomatch: 4.0.3
8128 + picomatch: 4.0.4
8129 typescript: 5.9.3
8130
8131 tslib@2.3.0: {}
@@ -8586,7 +8144,7 @@ snapshots:
8144
8145 uc.micro@2.1.0: {}
8146
8589 - ufo@1.6.1: {}
8147 + ufo@1.6.3: {}
8148
8149 unconfig-core@7.5.0:
8150 dependencies:
@@ -8596,14 +8154,14 @@ snapshots:
8154 unconfig@7.5.0:
8155 dependencies:
8156 '@quansync/fs': 1.0.0
8599 - defu: 6.1.4
8157 + defu: 6.1.7
8158 jiti: 2.6.1
8159 quansync: 1.0.0
8160 unconfig-core: 7.5.0
8161
8162 unctx@2.5.0:
8163 dependencies:
8606 - acorn: 8.15.0
8164 + acorn: 8.16.0
8165 estree-walker: 3.0.3
8166 magic-string: 0.30.21
8167 unplugin: 2.3.11
@@ -8611,7 +8169,7 @@ snapshots:
8169
8170 undici-types@7.19.2: {}
8171
8614 - undici-types@7.22.0: {}
8172 + undici-types@7.25.0: {}
8173
8174 undici@7.25.0: {}
8175
@@ -8626,7 +8184,7 @@ snapshots:
8184 unist-util-remove-position@5.0.0:
8185 dependencies:
8186 '@types/unist': 3.0.3
8629 - unist-util-visit: 5.0.0
8187 + unist-util-visit: 5.1.0
8188
8189 unist-util-stringify-position@4.0.0:
8190 dependencies:
@@ -8637,7 +8195,7 @@ snapshots:
8195 '@types/unist': 3.0.3
8196 unist-util-is: 6.0.1
8197
8640 - unist-util-visit@5.0.0:
8198 + unist-util-visit@5.1.0:
8199 dependencies:
8200 '@types/unist': 3.0.3
8201 unist-util-is: 6.0.1
@@ -8648,34 +8206,34 @@ snapshots:
8206 unplugin-utils@0.3.1:
8207 dependencies:
8208 pathe: 2.0.3
8651 - picomatch: 4.0.3
8209 + picomatch: 4.0.4
8210
8211 unplugin@2.3.11:
8212 dependencies:
8213 '@jridgewell/remapping': 2.3.5
8656 - acorn: 8.15.0
8657 - picomatch: 4.0.3
8214 + acorn: 8.16.0
8215 + picomatch: 4.0.4
8216 webpack-virtual-modules: 0.6.2
8217 optional: true
8218
8219 unplugin@3.0.0:
8220 dependencies:
8221 '@jridgewell/remapping': 2.3.5
8664 - picomatch: 4.0.3
8222 + picomatch: 4.0.4
8223 webpack-virtual-modules: 0.6.2
8224
8225 untyped@2.0.0:
8226 dependencies:
8227 citty: 0.1.6
8670 - defu: 6.1.4
8228 + defu: 6.1.7
8229 jiti: 2.6.1
8230 knitwork: 1.3.0
8231 scule: 1.3.0
8232 optional: true
8233
8676 - update-browserslist-db@1.2.3(browserslist@4.28.1):
8234 + update-browserslist-db@1.2.3(browserslist@4.28.2):
8235 dependencies:
8678 - browserslist: 4.28.1
8236 + browserslist: 4.28.2
8237 escalade: 3.2.0
8238 picocolors: 1.1.1
8239
@@ -8702,70 +8260,70 @@ snapshots:
8260 '@types/unist': 3.0.3
8261 vfile-message: 4.0.3
8262
8705 - vite-bundle-visualizer@1.2.1(rollup@4.54.0):
8263 + vite-bundle-visualizer@1.2.1(rollup@4.60.2):
8264 dependencies:
8265 cac: 6.7.14
8266 import-from-esm: 1.3.4
8709 - rollup-plugin-visualizer: 5.14.0(rollup@4.54.0)
8267 + rollup-plugin-visualizer: 5.14.0(rollup@4.60.2)
8268 tmp: 0.2.5
8269 transitivePeerDependencies:
8270 - rolldown
8271 - rollup
8272 - supports-color
8273
8716 - vite-dev-rpc@1.1.0(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)):
8274 + vite-dev-rpc@1.1.0(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)):
8275 dependencies:
8276 birpc: 2.9.0
8719 - vite: 7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8720 - vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
8277 + vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8278 + vite-hot-client: 2.1.0(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
8279
8722 - vite-hot-client@2.1.0(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)):
8280 + vite-hot-client@2.1.0(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)):
8281 dependencies:
8724 - vite: 7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8282 + vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8283
8726 - vite-plugin-inspect@11.3.3(@nuxt/kit@3.20.2)(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)):
8284 + vite-plugin-inspect@11.3.3(@nuxt/kit@3.21.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)):
8285 dependencies:
8286 ansis: 4.2.0
8287 debug: 4.4.3
8288 error-stack-parser-es: 1.0.5
8289 ohash: 2.0.11
8290 open: 10.2.0
8733 - perfect-debounce: 2.0.0
8291 + perfect-debounce: 2.1.0
8292 sirv: 3.0.2
8293 unplugin-utils: 0.3.1
8736 - vite: 7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8737 - vite-dev-rpc: 1.1.0(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
8294 + vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8295 + vite-dev-rpc: 1.1.0(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
8296 optionalDependencies:
8739 - '@nuxt/kit': 3.20.2
8297 + '@nuxt/kit': 3.21.2
8298 transitivePeerDependencies:
8299 - supports-color
8300
8743 - vite-plugin-vue-devtools@8.1.1(@nuxt/kit@3.20.2)(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3)):
8301 + vite-plugin-vue-devtools@8.1.1(@nuxt/kit@3.21.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))(vue@3.5.32(typescript@5.9.3)):
8302 dependencies:
8303 '@vue/devtools-core': 8.1.1(vue@3.5.32(typescript@5.9.3))
8304 '@vue/devtools-kit': 8.1.1
8305 '@vue/devtools-shared': 8.1.1
8306 sirv: 3.0.2
8749 - vite: 7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8750 - vite-plugin-inspect: 11.3.3(@nuxt/kit@3.20.2)(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
8751 - vite-plugin-vue-inspector: 5.3.2(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
8307 + vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8308 + vite-plugin-inspect: 11.3.3(@nuxt/kit@3.21.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
8309 + vite-plugin-vue-inspector: 5.4.0(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
8310 transitivePeerDependencies:
8311 - '@nuxt/kit'
8312 - supports-color
8313 - vue
8314
8757 - vite-plugin-vue-inspector@5.3.2(vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)):
8315 + vite-plugin-vue-inspector@5.4.0(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)):
8316 dependencies:
8317 '@babel/core': 7.29.0
8760 - '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.29.0)
8761 - '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.29.0)
8318 + '@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0)
8319 + '@babel/plugin-syntax-import-attributes': 7.28.6(@babel/core@7.29.0)
8320 '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.0)
8321 '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
8322 '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.29.0)
8765 - '@vue/compiler-dom': 3.5.30
8323 + '@vue/compiler-dom': 3.5.32
8324 kolorist: 1.8.0
8325 magic-string: 0.30.21
8768 - vite: 7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8326 + vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
8327 transitivePeerDependencies:
8328 - supports-color
8329
@@ -8777,14 +8335,14 @@ snapshots:
8335 transitivePeerDependencies:
8336 - supports-color
8337
8780 - vite@7.3.1(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3):
8338 + vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3):
8339 dependencies:
8782 - esbuild: 0.27.2
8783 - fdir: 6.5.0(picomatch@4.0.3)
8784 - picomatch: 4.0.3
8785 - postcss: 8.5.8
8786 - rollup: 4.54.0
8787 - tinyglobby: 0.2.15
8340 + esbuild: 0.27.7
8341 + fdir: 6.5.0(picomatch@4.0.4)
8342 + picomatch: 4.0.4
8343 + postcss: 8.5.10
8344 + rollup: 4.60.2
8345 + tinyglobby: 0.2.16
8346 optionalDependencies:
8347 '@types/node': 25.6.0
8348 fsevents: 2.3.3
@@ -8815,7 +8373,7 @@ snapshots:
8373 eslint: 10.2.1(jiti@2.6.1)
8374 eslint-scope: 9.1.2
8375 eslint-visitor-keys: 5.0.1
8818 - espree: 11.1.1
8376 + espree: 11.2.0
8377 esquery: 1.7.0
8378 semver: 7.7.4
8379 transitivePeerDependencies:
@@ -8836,37 +8394,37 @@ snapshots:
8394
8395 vue-router@5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3)))(vue@3.5.32(typescript@5.9.3)):
8396 dependencies:
8839 - '@babel/generator': 7.29.0
8397 + '@babel/generator': 7.29.1
8398 '@vue-macros/common': 3.1.2(vue@3.5.32(typescript@5.9.3))
8841 - '@vue/devtools-api': 8.0.6
8399 + '@vue/devtools-api': 8.1.1
8400 ast-walker-scope: 0.8.3
8401 chokidar: 5.0.0
8402 json5: 2.2.3
8403 local-pkg: 1.1.2
8404 magic-string: 0.30.21
8847 - mlly: 1.8.0
8405 + mlly: 1.8.2
8406 muggle-string: 0.4.1
8407 pathe: 2.0.3
8850 - picomatch: 4.0.3
8408 + picomatch: 4.0.4
8409 scule: 1.3.0
8852 - tinyglobby: 0.2.15
8410 + tinyglobby: 0.2.16
8411 unplugin: 3.0.0
8412 unplugin-utils: 0.3.1
8413 vue: 3.5.32(typescript@5.9.3)
8856 - yaml: 2.8.2
8414 + yaml: 2.8.3
8415 optionalDependencies:
8416 '@vue/compiler-sfc': 3.5.32
8417 pinia: 3.0.4(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3))
8418
8861 - vue-tsc@3.2.6(typescript@5.9.3):
8419 + vue-tsc@3.2.7(typescript@5.9.3):
8420 dependencies:
8421 '@volar/typescript': 2.4.28
8864 - '@vue/language-core': 3.2.6
8422 + '@vue/language-core': 3.2.7
8423 typescript: 5.9.3
8424
8867 - vue3-apexcharts@1.11.1(apexcharts@5.3.6)(vue@3.5.32(typescript@5.9.3)):
8425 + vue3-apexcharts@1.11.1(apexcharts@5.10.6)(vue@3.5.32(typescript@5.9.3)):
8426 dependencies:
8869 - apexcharts: 5.3.6
8427 + apexcharts: 5.10.6
8428 vue: 3.5.32(typescript@5.9.3)
8429
8430 vue3-marquee@4.2.2(vue@3.5.32(typescript@5.9.3)):
@@ -8929,11 +8487,11 @@ snapshots:
8487
8488 which@5.0.0:
8489 dependencies:
8932 - isexe: 3.1.1
8490 + isexe: 3.1.5
8491
8492 with@7.0.2:
8493 dependencies:
8936 - '@babel/parser': 7.29.0
8494 + '@babel/parser': 7.29.2
8495 '@babel/types': 7.29.0
8496 assert-never: 1.4.0
8497 babel-walk: 3.0.0-canary-5
@@ -8950,7 +8508,7 @@ snapshots:
8508
8509 wsl-utils@0.1.0:
8510 dependencies:
8953 - is-wsl: 3.1.0
8511 + is-wsl: 3.1.1
8512
8513 xml-name-validator@4.0.0: {}
8514
@@ -8965,11 +8523,9 @@ snapshots:
8523 yaml-eslint-parser@2.0.0:
8524 dependencies:
8525 eslint-visitor-keys: 5.0.1
8968 - yaml: 2.8.2
8969 -
8970 - yaml@1.10.2: {}
8526 + yaml: 2.8.3
8527
8972 - yaml@2.8.2: {}
8528 + yaml@1.10.3: {}
8529
8530 yaml@2.8.3: {}
8531
frontend/package.json
+11 -11
@@ -3,7 +3,7 @@
3 "type": "module",
4 "version": "1.0.0",
5 "private": true,
6 - "packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
6 + "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
7 "engines": {
8 "node": ">=18.0.0"
9 },
@@ -41,7 +41,7 @@
41 "@codemirror/lang-xml": "^6.1.0",
42 "@codemirror/lint": "^6.9.5",
43 "@codemirror/theme-one-dark": "^6.1.3",
44 - "@codemirror/view": "^6.41.0",
44 + "@codemirror/view": "^6.41.1",
45 "@f3ve/vue-markdown-it": "^0.2.3",
46 "@fontsource/jetbrains-mono": "^5.2.8",
47 "@fontsource/lexend": "^5.2.11",
@@ -52,14 +52,14 @@
52 "@types/codemirror": "^5.60.17",
53 "@vueuse/core": "^14.2.1",
54 "@vueuse/motion": "^3.0.3",
55 - "axios": "^1.15.0",
55 + "axios": "^1.15.1",
56 "bytes": "^3.1.2",
57 "codemirror": "~6.0.2",
58 "colord": "^2.9.3",
59 "dayjs": "^1.11.20",
60 "detect-touch-device": "^1.1.6",
61 "echarts": "^6.0.0",
62 - "fast-xml-parser": "^5.5.12",
62 + "fast-xml-parser": "^5.7.1",
63 "file-saver": "^2.0.5",
64 "html-entities": "^2.6.0",
65 "jose": "^6.2.2",
@@ -67,7 +67,7 @@
67 "lodash": "^4.18.1",
68 "mitt": "^3.0.1",
69 "naive-ui": "^2.44.1",
70 - "nanoid": "^5.1.7",
70 + "nanoid": "^5.1.9",
71 "password-validator": "^5.3.0",
72 "pinia": "^3.0.4",
73 "pinia-plugin-persistedstate": "^4.7.1",
@@ -94,7 +94,7 @@
94 "vueuc": "^0.4.64"
95 },
96 "devDependencies": {
97 - "@antfu/eslint-config": "~7.7.3",
97 + "@antfu/eslint-config": "~8.2.0",
98 "@clack/prompts": "^1.2.0",
99 "@iconify/vue": "^5.0.0",
100 "@tailwindcss/vite": "^4.2.2",
@@ -111,21 +111,21 @@
111 "@vitejs/plugin-vue-jsx": "^5.1.5",
112 "@vue/test-utils": "^2.4.6",
113 "@vue/tsconfig": "~0.9.1",
114 - "baseline-browser-mapping": "^2.10.18",
114 + "baseline-browser-mapping": "^2.10.20",
115 "depcheck": "^1.4.7",
116 - "eslint": "~10.2.0",
116 + "eslint": "~10.2.1",
117 "flourite": "^1.3.0",
118 "fs-extra": "^11.3.4",
119 "jscpd": "^4.0.9",
120 "jsdom": "^29.0.2",
121 "npm-run-all2": "^8.0.4",
122 - "prettier": "^3.8.2",
122 + "prettier": "^3.8.3",
123 "prettier-plugin-tailwindcss": "^0.7.2",
124 "sass": "^1.99.0",
125 "start-server-and-test": "^3.0.2",
126 "tailwindcss": "^4.2.2",
127 "taze": "^19.11.0",
128 - "type-fest": "^5.5.0",
128 + "type-fest": "^5.6.0",
129 "typescript": "~5.9.3",
130 "vite": "^7.3.1",
131 "vite-bundle-visualizer": "^1.2.1",
@@ -133,7 +133,7 @@
133 "vite-plugin-vue-devtools": "^8.1.1",
134 "vite-svg-loader": "^5.1.1",
135 "vitest": "^4.1.4",
136 - "vue-tsc": "^3.2.6"
136 + "vue-tsc": "^3.2.7"
137 },
138 "pnpm": {
139 "peerDependencyRules": {
frontend/pnpm-lock.yaml
+574 -520
@@ -27,8 +27,8 @@ importers:
27 specifier: ^6.1.3
28 version: 6.1.3
29 '@codemirror/view':
30 - specifier: ^6.41.0
31 - version: 6.41.0
30 + specifier: ^6.41.1
31 + version: 6.41.1
32 '@f3ve/vue-markdown-it':
33 specifier: ^0.2.3
34 version: 0.2.3(vue@3.5.32(typescript@5.9.3))
@@ -60,8 +60,8 @@ importers:
60 specifier: ^3.0.3
61 version: 3.0.3(vue@3.5.32(typescript@5.9.3))
62 axios:
63 - specifier: ^1.15.0
64 - version: 1.15.0(debug@4.4.3)
63 + specifier: ^1.15.1
64 + version: 1.15.1(debug@4.4.3)
65 bytes:
66 specifier: ^3.1.2
67 version: 3.1.2
@@ -81,8 +81,8 @@ importers:
81 specifier: ^6.0.0
82 version: 6.0.0
83 fast-xml-parser:
84 - specifier: ^5.5.12
85 - version: 5.5.12
84 + specifier: ^5.7.1
85 + version: 5.7.1
86 file-saver:
87 specifier: ^2.0.5
88 version: 2.0.5
@@ -105,8 +105,8 @@ importers:
105 specifier: ^2.44.1
106 version: 2.44.1(vue@3.5.32(typescript@5.9.3))
107 nanoid:
108 - specifier: ^5.1.7
109 - version: 5.1.7
108 + specifier: ^5.1.9
109 + version: 5.1.9
110 password-validator:
111 specifier: ^5.3.0
112 version: 5.3.0
@@ -124,7 +124,7 @@ importers:
124 version: 4.0.2
125 thememirror:
126 specifier: ^2.0.1
127 - version: 2.0.1(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.41.0)
127 + version: 2.0.1(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.41.1)
128 validator:
129 specifier: ^13.15.35
130 version: 13.15.35
@@ -166,8 +166,8 @@ importers:
166 version: 5.2.0(@types/node@25.6.0)
167 devDependencies:
168 '@antfu/eslint-config':
169 - specifier: ~7.7.3
170 - version: 7.7.3(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(@vue/compiler-sfc@3.5.32)(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)(vitest@4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)))
169 + specifier: ~8.2.0
170 + version: 8.2.0(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@vue/compiler-sfc@3.5.32)(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)(vitest@4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)))
171 '@clack/prompts':
172 specifier: ^1.2.0
173 version: 1.2.0
@@ -217,14 +217,14 @@ importers:
217 specifier: ~0.9.1
218 version: 0.9.1(typescript@5.9.3)(vue@3.5.32(typescript@5.9.3))
219 baseline-browser-mapping:
220 - specifier: ^2.10.18
221 - version: 2.10.18
220 + specifier: ^2.10.20
221 + version: 2.10.20
222 depcheck:
223 specifier: ^1.4.7
224 version: 1.4.7
225 eslint:
226 - specifier: ~10.2.0
227 - version: 10.2.0(jiti@2.6.1)
226 + specifier: ~10.2.1
227 + version: 10.2.1(jiti@2.6.1)
228 flourite:
229 specifier: ^1.3.0
230 version: 1.3.0
@@ -241,11 +241,11 @@ importers:
241 specifier: ^8.0.4
242 version: 8.0.4
243 prettier:
244 - specifier: ^3.8.2
245 - version: 3.8.2
244 + specifier: ^3.8.3
245 + version: 3.8.3
246 prettier-plugin-tailwindcss:
247 specifier: ^0.7.2
248 - version: 0.7.2(prettier@3.8.2)
248 + version: 0.7.2(prettier@3.8.3)
249 sass:
250 specifier: ^1.99.0
251 version: 1.99.0
@@ -259,8 +259,8 @@ importers:
259 specifier: ^19.11.0
260 version: 19.11.0
261 type-fest:
262 - specifier: ^5.5.0
263 - version: 5.5.0
262 + specifier: ^5.6.0
263 + version: 5.6.0
264 typescript:
265 specifier: ~5.9.3
266 version: 5.9.3
@@ -269,7 +269,7 @@ importers:
269 version: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
270 vite-bundle-visualizer:
271 specifier: ^1.2.1
272 - version: 1.2.1(rollup@4.60.1)
272 + version: 1.2.1(rollup@4.60.2)
273 vite-plugin-inspect:
274 specifier: ^11.3.3
275 version: 11.3.3(@nuxt/kit@3.21.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
@@ -283,12 +283,12 @@ importers:
283 specifier: ^4.1.4
284 version: 4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
285 vue-tsc:
286 - specifier: ^3.2.6
287 - version: 3.2.6(typescript@5.9.3)
286 + specifier: ^3.2.7
287 + version: 3.2.7(typescript@5.9.3)
288 optionalDependencies:
289 '@rollup/rollup-linux-x64-gnu':
290 specifier: ^4.46.2
291 - version: 4.60.1
291 + version: 4.60.2
292 treemate:
293 specifier: ^0.3.11
294 version: 0.3.11
@@ -301,70 +301,70 @@ packages:
301 '@ajoelp/json-to-formdata@1.5.0':
302 resolution: {integrity: sha512-nrlfeTSL0X0dtx5r2KpzPiqLSIQquiiJjUKsQAKzWaCmO2QoYZCyb5ENZwF3YoffKronOCJr25mxaD8JRJmK8w==}
303
304 - '@algolia/abtesting@1.16.1':
305 - resolution: {integrity: sha512-Xxk4l00pYI+jE0PNw8y0MvsQWh5278WRtZQav8/BMMi3HKi2xmeuqe11WJ3y8/6nuBHdv39w76OpJb09TMfAVQ==}
304 + '@algolia/abtesting@1.16.2':
305 + resolution: {integrity: sha512-n9s6bEV6imdtIEd+BGP7WkA4pEZ5YTdgQ05JQhHwWawHg3hyjpNwC0TShGz6zWhv+jfLDGA/6FFNbySFS0P9cw==}
306 engines: {node: '>= 14.0.0'}
307
308 - '@algolia/client-abtesting@5.50.1':
309 - resolution: {integrity: sha512-4peZlPXMwTOey9q1rQKMdCnwZb/E95/1e+7KujXpLLSh0FawJzg//U2NM+r4AiJy4+naT2MTBhj0K30yshnVTA==}
308 + '@algolia/client-abtesting@5.50.2':
309 + resolution: {integrity: sha512-52iq0vHy1sphgnwoZyx5PmbEt8hsh+m7jD123LmBs6qy4GK7LbYZIeKd+nSnSipN2zvKRZ2zScS6h9PW3J7SXg==}
310 engines: {node: '>= 14.0.0'}
311
312 - '@algolia/client-analytics@5.50.1':
313 - resolution: {integrity: sha512-i+aWHHG8NZvGFHtPeMZkxL2Loc6Fm7iaRo15lYSMx8gFL+at9vgdWxhka7mD1fqxkrxXsQstUBCIsSY8FvkEOw==}
312 + '@algolia/client-analytics@5.50.2':
313 + resolution: {integrity: sha512-WpPIUg+cSG2aPUG0gS8Ko9DwRgbRPUZxJkolhL2aCsmSlcEEZT65dILrfg5ovcxtx0Kvr+xtBVsTMtsQWRtPDQ==}
314 engines: {node: '>= 14.0.0'}
315
316 - '@algolia/client-common@5.50.1':
317 - resolution: {integrity: sha512-Hw52Fwapyk/7hMSV/fI4+s3H9MGZEUcRh4VphyXLAk2oLYdndVUkc6KBi0zwHSzwPAr+ZBwFPe2x6naUt9mZGw==}
316 + '@algolia/client-common@5.50.2':
317 + resolution: {integrity: sha512-Gj2MgtArGcsr82kIqRlo6/dCAFjrs2gLByEqyRENuT7ugrSMFuqg1vDzeBjRL1t3EJEJCFtT0PLX3gB8A6Hq4Q==}
318 engines: {node: '>= 14.0.0'}
319
320 - '@algolia/client-insights@5.50.1':
321 - resolution: {integrity: sha512-Bn/wtwhJ7p1OD/6pY+Zzn+zlu2N/SJnH46md/PAbvqIzmjVuwjNwD4y0vV5Ov8naeukXdd7UU9v550+v8+mtlg==}
320 + '@algolia/client-insights@5.50.2':
321 + resolution: {integrity: sha512-CUqoid5jDpmrc0oK3/xuZXFt6kwT0P9Lw7/nsM14YTr6puvmi+OUKmURpmebQF22S2vCG8L1DAoXXujxQUi/ug==}
322 engines: {node: '>= 14.0.0'}
323
324 - '@algolia/client-personalization@5.50.1':
325 - resolution: {integrity: sha512-0V4Tu0RWR8YxkgI9EPVOZHGE4K5pEIhkLNN0CTkP/rnPsqaaSQpNMYW3/mGWdiKOWbX0iVmwLB9QESk3H0jS5g==}
324 + '@algolia/client-personalization@5.50.2':
325 + resolution: {integrity: sha512-AndZWFoc0gbP5901OeQJ73BazgGgSGiBEba4ohdoJuZwHTO2Gio8Q4L1VLmytMBYcviVigB0iICToMvEJxI4ug==}
326 engines: {node: '>= 14.0.0'}
327
328 - '@algolia/client-query-suggestions@5.50.1':
329 - resolution: {integrity: sha512-jofcWNYMXJDDr87Z2eivlWY6o71Zn7F7aOvQCXSDAo9QTlyf7BhXEsZymLUvF0O1yU9Q9wvrjAWn8uVHYnAvgw==}
328 + '@algolia/client-query-suggestions@5.50.2':
329 + resolution: {integrity: sha512-NWoL+psEkz5dIzweaByVXuEB45wS8/rk0E0AhMMnaVJdVs7TcACPH2/OURm+N0xRDITkTHqCna823rd6Uqntdg==}
330 engines: {node: '>= 14.0.0'}
331
332 - '@algolia/client-search@5.50.1':
333 - resolution: {integrity: sha512-OteRb8WubcmEvU0YlMJwCXs3Q6xrdkb0v50/qZBJP1TF0CvujFZQM++9BjEkTER/Jr9wbPHvjSFKnbMta0b4dQ==}
332 + '@algolia/client-search@5.50.2':
333 + resolution: {integrity: sha512-ypSboUJ3XJoQz5DeDo82hCnrRuwq3q9ZdFhVKAik9TnZh1DvLqoQsrbBjXg7C7zQOtV/Qbge/HmyoV6V5L7MhQ==}
334 engines: {node: '>= 14.0.0'}
335
336 - '@algolia/ingestion@1.50.1':
337 - resolution: {integrity: sha512-0GmfSgDQK6oiIVXnJvGxtNFOfosBspRTR7csCOYCTL1P8QtxX2vDCIKwTM7xdSAEbJaZ43QlWg25q0Qdsndz8Q==}
336 + '@algolia/ingestion@1.50.2':
337 + resolution: {integrity: sha512-VlR2FRXLw2bCB94SQo6zxg/Qi+547aOji6Pb+dKE7h1DMCCY317St+OpjpmgzE+bT2O9ALIc0V4nVIBOd7Gy+Q==}
338 engines: {node: '>= 14.0.0'}
339
340 - '@algolia/monitoring@1.50.1':
341 - resolution: {integrity: sha512-ySuigKEe4YjYV3si8NVk9BHQpFj/1B+ON7DhhvTvbrZJseHQQloxzq0yHwKmznSdlO6C956fx4pcfOKkZClsyg==}
340 + '@algolia/monitoring@1.50.2':
341 + resolution: {integrity: sha512-Cmvfp2+qopzQt8OilU97rhLhosq7ZrB6uieok3EwFUqG/aalPg6DgfCmu0yJMrYe+KMC1qRVt1MTRAUwLknUMQ==}
342 engines: {node: '>= 14.0.0'}
343
344 - '@algolia/recommend@5.50.1':
345 - resolution: {integrity: sha512-Cp8T/B0gVmjFlzzp6eP47hwKh5FGyeqQp1N48/ANDdvdiQkPqLyFHQVDwLBH0LddfIPQE+yqmZIgmKc82haF4A==}
344 + '@algolia/recommend@5.50.2':
345 + resolution: {integrity: sha512-jrkuyKoOM7dFWQ/6Y4hQAse2SC3L/RldG6GnPjMvAj65h+7Ubb51S0pKk4ofSStF0xm4LCNe0C4T6XX4nOFDiQ==}
346 engines: {node: '>= 14.0.0'}
347
348 - '@algolia/requester-browser-xhr@5.50.1':
349 - resolution: {integrity: sha512-XKdGGLikfrlK66ZSXh/vWcXZZ8Vg3byDFbJD8pwEvN1FoBRGxhxya476IY2ohoTymLa4qB5LBRlIa+2TLHx3Uw==}
348 + '@algolia/requester-browser-xhr@5.50.2':
349 + resolution: {integrity: sha512-4107YLJqCudPiBUlwnk6oTSUVwU7ab+qL1SfQGEDYI8DZH5gsf1ekPt9JykXRKYXf2IfouFL5GiCY/PHTFIjYw==}
350 engines: {node: '>= 14.0.0'}
351
352 - '@algolia/requester-fetch@5.50.1':
353 - resolution: {integrity: sha512-mBAU6WyVsDwhHyGM+nodt1/oebHxgvuLlOAoMGbj/1i6LygDHZWDgL1t5JEs37x9Aywv7ZGhqbM1GsfZ54sU6g==}
352 + '@algolia/requester-fetch@5.50.2':
353 + resolution: {integrity: sha512-vOrd3MQpLgmf6wXAueTuZ/cA0W4uRwIHHaxNy3h+a6YcNn6bCV/gFdZuv3F13v593zRU2k5R75NmvRWLenvMrw==}
354 engines: {node: '>= 14.0.0'}
355
356 - '@algolia/requester-node-http@5.50.1':
357 - resolution: {integrity: sha512-qmo1LXrNKLHvJE6mdQbLnsZAoZvj7VyF2ft4xmbSGWI2WWm87fx/CjUX4kEExt4y0a6T6nEts6ofpUfH5TEE1A==}
356 + '@algolia/requester-node-http@5.50.2':
357 + resolution: {integrity: sha512-Mu9BFtgzGqDUy5Bcs2nMyoILIFSN13GKQaklKAFIsd0K3/9CpNyfeBc+/+Qs6mFZLlxG9qzullO7h+bjcTBuGQ==}
358 engines: {node: '>= 14.0.0'}
359
360 - '@antfu/eslint-config@7.7.3':
361 - resolution: {integrity: sha512-BtroDxTvmWtvr3yJkdWVCvwsKlnEdkreoeOyrdNezc/W5qaiQNf2xjcsQ3N5Yy0x27h+0WFfW8rG8YlVioG6dw==}
360 + '@antfu/eslint-config@8.2.0':
361 + resolution: {integrity: sha512-spfwYXMNrlkl69riTSBnbC0C2K8EVfVMOK3ceP2EpAAioyfprIW1gTwyLRtd9jZSFeNdX4mFNAIG+o0sOneOfA==}
362 hasBin: true
363 peerDependencies:
364 '@angular-eslint/eslint-plugin': ^21.1.0
365 '@angular-eslint/eslint-plugin-template': ^21.1.0
366 '@angular-eslint/template-parser': ^21.1.0
367 - '@eslint-react/eslint-plugin': ^2.11.0
367 + '@eslint-react/eslint-plugin': ^3.0.0
368 '@next/eslint-plugin-next': '>=15.0.0'
369 '@prettier/plugin-xml': ^3.4.1
370 '@unocss/eslint-plugin': '>=0.50.0'
@@ -373,7 +373,6 @@ packages:
373 eslint-plugin-astro: ^1.2.0
374 eslint-plugin-format: '>=0.1.0'
375 eslint-plugin-jsx-a11y: '>=6.10.2'
376 - eslint-plugin-react-hooks: ^7.0.0
376 eslint-plugin-react-refresh: ^0.5.0
377 eslint-plugin-solid: ^0.14.3
378 eslint-plugin-svelte: '>=2.35.1'
@@ -404,8 +403,6 @@ packages:
403 optional: true
404 eslint-plugin-jsx-a11y:
405 optional: true
407 - eslint-plugin-react-hooks:
408 - optional: true
406 eslint-plugin-react-refresh:
407 optional: true
408 eslint-plugin-solid:
@@ -429,12 +426,16 @@ packages:
426 engines: {node: '>=20.19.0'}
427 hasBin: true
428
432 - '@asamuzakjp/css-color@5.1.10':
433 - resolution: {integrity: sha512-02OhhkKtgNRuicQ/nF3TRnGsxL9wp0r3Y7VlKWyOHHGmGyvXv03y+PnymU8FKFJMTjIr1Bk8U2g1HWSLrpAHww==}
429 + '@asamuzakjp/css-color@5.1.11':
430 + resolution: {integrity: sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg==}
431 + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
432 +
433 + '@asamuzakjp/dom-selector@7.1.1':
434 + resolution: {integrity: sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ==}
435 engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
436
436 - '@asamuzakjp/dom-selector@7.0.9':
437 - resolution: {integrity: sha512-r3ElRr7y8ucyN2KdICwGsmj19RoN13CLCa/pvGydghWK6ZzeKQ+TcDjVdtEZz2ElpndM5jXw//B9CEee0mWnVg==}
437 + '@asamuzakjp/generational-cache@1.0.1':
438 + resolution: {integrity: sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg==}
439 engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
440
441 '@asamuzakjp/nwsapi@2.3.9':
@@ -617,8 +618,8 @@ packages:
618 '@codemirror/theme-one-dark@6.1.3':
619 resolution: {integrity: sha512-NzBdIvEJmx6fjeremiGp3t/okrLPYT0d9orIc7AFun8oZcRk58aejkqhv6spnz4MLAevrKNPMQYXEWMg4s+sKA==}
620
620 - '@codemirror/view@6.41.0':
621 - resolution: {integrity: sha512-6H/qadXsVuDY219Yljhohglve8xf4B8xJkVOEWfA5uiYKiTFppjqsvsfR5iPA0RbvRBoOyTZpbLIxe9+0UR8xA==}
621 + '@codemirror/view@6.41.1':
622 + resolution: {integrity: sha512-ToDnWKbBnke+ZLrP6vgTTDScGi5H37YYuZGniQaBzxMVdtCxMrslsmtnOvbPZk4RX9bvkQqnWR/WS/35tJA0qg==}
623
624 '@colors/colors@1.5.0':
625 resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
@@ -670,11 +671,11 @@ packages:
671 resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
672 engines: {node: '>=20.19.0'}
673
673 - '@e18e/eslint-plugin@0.2.0':
674 - resolution: {integrity: sha512-mXgODVwhuDjTJ+UT+XSvmMmCidtGKfrV5nMIv1UtpWex2pYLsIM3RSpT8HWIMAebS9qANbXPKlSX4BE7ZvuCgA==}
674 + '@e18e/eslint-plugin@0.3.0':
675 + resolution: {integrity: sha512-hHgfpxsrZ2UYHcicA+tGZnmk19uJTaye9VH79O+XS8R4ona2Hx3xjhXghclNW58uXMk3xXlbYEOMr8thsoBmWg==}
676 peerDependencies:
677 eslint: ^9.0.0 || ^10.0.0
677 - oxlint: ^1.41.0
678 + oxlint: ^1.55.0
679 peerDependenciesMeta:
680 eslint:
681 optional: true
@@ -885,26 +886,18 @@ packages:
886 resolution: {integrity: sha512-eIJYKTCECbP/nsKaaruF6LW967mtbQbsw4JTtSVkUQc9MneSkbrgPJAbKl9nWr0ZeowV8BfsarBmPpBzGelA2w==}
887 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
888
888 - '@eslint/core@0.17.0':
889 - resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
890 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
891 -
889 '@eslint/core@1.2.1':
890 resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
891 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
892
896 - '@eslint/markdown@7.5.1':
897 - resolution: {integrity: sha512-R8uZemG9dKTbru/DQRPblbJyXpObwKzo8rv1KYGGuPUPtjM4LXBYM9q5CIZAComzZupws3tWbDwam5AFpPLyJQ==}
898 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
893 + '@eslint/markdown@8.0.1':
894 + resolution: {integrity: sha512-WWKmld/EyNdEB8GMq7JMPX1SDWgyJAM1uhtCi5ySrqYQM4HQjmg11EX/q3ZpnpRXHfdccFtli3NBvvGaYjWyQw==}
895 + engines: {node: ^20.19.0 || ^22.13.0 || >=24}
896
897 '@eslint/object-schema@3.0.5':
898 resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==}
899 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
900
904 - '@eslint/plugin-kit@0.4.1':
905 - resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
906 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
907 -
901 '@eslint/plugin-kit@0.6.1':
902 resolution: {integrity: sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==}
903 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
@@ -959,12 +952,16 @@ packages:
952 '@henrygd/queue@1.2.0':
953 resolution: {integrity: sha512-jW/BLSTpcvExDhqJGxtIPgGr2O0IFF8XUNDwEbfCfhrXT8a4xztQ9Lv6U/vbYzYC0xVWn+3zv6YnLUh3bEFUKA==}
954
962 - '@humanfs/core@0.19.1':
963 - resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
955 + '@humanfs/core@0.19.2':
956 + resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==}
957 + engines: {node: '>=18.18.0'}
958 +
959 + '@humanfs/node@0.16.8':
960 + resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==}
961 engines: {node: '>=18.18.0'}
962
966 - '@humanfs/node@0.16.7':
967 - resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
963 + '@humanfs/types@0.15.0':
964 + resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==}
965 engines: {node: '>=18.18.0'}
966
967 '@humanwhocodes/module-importer@1.0.1':
@@ -1046,8 +1043,8 @@ packages:
1043 '@lezer/javascript@1.5.4':
1044 resolution: {integrity: sha512-vvYx3MhWqeZtGPwDStM2dwgljd5smolYD2lR2UyFcHfxbBQebqx8yjmFmxtJ/E6nN6u1D9srOiVWm3Rb4tmcUA==}
1045
1049 - '@lezer/lr@1.4.8':
1050 - resolution: {integrity: sha512-bPWa0Pgx69ylNlMlPvBPryqeLYQjyJjqPx+Aupm5zydLIF3NE+6MMLT8Yi23Bd9cif9VS00aUebn+6fDIGBcDA==}
1046 + '@lezer/lr@1.4.10':
1047 + resolution: {integrity: sha512-rnCpTIBafOx4mRp43xOxDJbFipJm/c0cia/V5TiGlhmMa+wsSdoGmUN3w5Bqrks/09Q/D4tNAmWaT8p6NRi77A==}
1048
1049 '@lezer/xml@1.0.6':
1050 resolution: {integrity: sha512-CdDwirL0OEaStFue/66ZmFSeppuL6Dwjlk8qk153mSQwiSH/Dlri4GNymrNWnUmPl2Um7QfV1FO9KFUyX3Twww==}
@@ -1058,6 +1055,9 @@ packages:
1055 '@microsoft/fetch-event-source@2.0.1':
1056 resolution: {integrity: sha512-W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==}
1057
1058 + '@nodable/entities@2.1.0':
1059 + resolution: {integrity: sha512-nyT7T3nbMyBI/lvr6L5TyWbFJAI9FTgVRakNoBqCD+PmID8DzFrrNdLLtHMwMszOtqZa8PAOV24ZqDnQrhQINA==}
1060 +
1061 '@nodelib/fs.scandir@2.1.5':
1062 resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
1063 engines: {node: '>= 8'}
@@ -1186,144 +1186,144 @@ packages:
1186 '@rolldown/pluginutils@1.0.0-rc.13':
1187 resolution: {integrity: sha512-3ngTAv6F/Py35BsYbeeLeecvhMKdsKm4AoOETVhAA+Qc8nrA2I0kF7oa93mE9qnIurngOSpMnQ0x2nQY2FPviA==}
1188
1189 - '@rolldown/pluginutils@1.0.0-rc.15':
1190 - resolution: {integrity: sha512-UromN0peaE53IaBRe9W7CjrZgXl90fqGpK+mIZbA3qSTeYqg3pqpROBdIPvOG3F5ereDHNwoHBI2e50n1BDr1g==}
1189 + '@rolldown/pluginutils@1.0.0-rc.16':
1190 + resolution: {integrity: sha512-45+YtqxLYKDWQouLKCrpIZhke+nXxhsw+qAHVzHDVwttyBlHNBVs2K25rDXrZzhpTp9w1FlAlvweV1H++fdZoA==}
1191
1192 - '@rollup/rollup-android-arm-eabi@4.60.1':
1193 - resolution: {integrity: sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==}
1192 + '@rollup/rollup-android-arm-eabi@4.60.2':
1193 + resolution: {integrity: sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==}
1194 cpu: [arm]
1195 os: [android]
1196
1197 - '@rollup/rollup-android-arm64@4.60.1':
1198 - resolution: {integrity: sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==}
1197 + '@rollup/rollup-android-arm64@4.60.2':
1198 + resolution: {integrity: sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==}
1199 cpu: [arm64]
1200 os: [android]
1201
1202 - '@rollup/rollup-darwin-arm64@4.60.1':
1203 - resolution: {integrity: sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==}
1202 + '@rollup/rollup-darwin-arm64@4.60.2':
1203 + resolution: {integrity: sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==}
1204 cpu: [arm64]
1205 os: [darwin]
1206
1207 - '@rollup/rollup-darwin-x64@4.60.1':
1208 - resolution: {integrity: sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==}
1207 + '@rollup/rollup-darwin-x64@4.60.2':
1208 + resolution: {integrity: sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==}
1209 cpu: [x64]
1210 os: [darwin]
1211
1212 - '@rollup/rollup-freebsd-arm64@4.60.1':
1213 - resolution: {integrity: sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==}
1212 + '@rollup/rollup-freebsd-arm64@4.60.2':
1213 + resolution: {integrity: sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==}
1214 cpu: [arm64]
1215 os: [freebsd]
1216
1217 - '@rollup/rollup-freebsd-x64@4.60.1':
1218 - resolution: {integrity: sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==}
1217 + '@rollup/rollup-freebsd-x64@4.60.2':
1218 + resolution: {integrity: sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==}
1219 cpu: [x64]
1220 os: [freebsd]
1221
1222 - '@rollup/rollup-linux-arm-gnueabihf@4.60.1':
1223 - resolution: {integrity: sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==}
1222 + '@rollup/rollup-linux-arm-gnueabihf@4.60.2':
1223 + resolution: {integrity: sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==}
1224 cpu: [arm]
1225 os: [linux]
1226 libc: [glibc]
1227
1228 - '@rollup/rollup-linux-arm-musleabihf@4.60.1':
1229 - resolution: {integrity: sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==}
1228 + '@rollup/rollup-linux-arm-musleabihf@4.60.2':
1229 + resolution: {integrity: sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==}
1230 cpu: [arm]
1231 os: [linux]
1232 libc: [musl]
1233
1234 - '@rollup/rollup-linux-arm64-gnu@4.60.1':
1235 - resolution: {integrity: sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==}
1234 + '@rollup/rollup-linux-arm64-gnu@4.60.2':
1235 + resolution: {integrity: sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==}
1236 cpu: [arm64]
1237 os: [linux]
1238 libc: [glibc]
1239
1240 - '@rollup/rollup-linux-arm64-musl@4.60.1':
1241 - resolution: {integrity: sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==}
1240 + '@rollup/rollup-linux-arm64-musl@4.60.2':
1241 + resolution: {integrity: sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==}
1242 cpu: [arm64]
1243 os: [linux]
1244 libc: [musl]
1245
1246 - '@rollup/rollup-linux-loong64-gnu@4.60.1':
1247 - resolution: {integrity: sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==}
1246 + '@rollup/rollup-linux-loong64-gnu@4.60.2':
1247 + resolution: {integrity: sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==}
1248 cpu: [loong64]
1249 os: [linux]
1250 libc: [glibc]
1251
1252 - '@rollup/rollup-linux-loong64-musl@4.60.1':
1253 - resolution: {integrity: sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==}
1252 + '@rollup/rollup-linux-loong64-musl@4.60.2':
1253 + resolution: {integrity: sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==}
1254 cpu: [loong64]
1255 os: [linux]
1256 libc: [musl]
1257
1258 - '@rollup/rollup-linux-ppc64-gnu@4.60.1':
1259 - resolution: {integrity: sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==}
1258 + '@rollup/rollup-linux-ppc64-gnu@4.60.2':
1259 + resolution: {integrity: sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==}
1260 cpu: [ppc64]
1261 os: [linux]
1262 libc: [glibc]
1263
1264 - '@rollup/rollup-linux-ppc64-musl@4.60.1':
1265 - resolution: {integrity: sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==}
1264 + '@rollup/rollup-linux-ppc64-musl@4.60.2':
1265 + resolution: {integrity: sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==}
1266 cpu: [ppc64]
1267 os: [linux]
1268 libc: [musl]
1269
1270 - '@rollup/rollup-linux-riscv64-gnu@4.60.1':
1271 - resolution: {integrity: sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==}
1270 + '@rollup/rollup-linux-riscv64-gnu@4.60.2':
1271 + resolution: {integrity: sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==}
1272 cpu: [riscv64]
1273 os: [linux]
1274 libc: [glibc]
1275
1276 - '@rollup/rollup-linux-riscv64-musl@4.60.1':
1277 - resolution: {integrity: sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==}
1276 + '@rollup/rollup-linux-riscv64-musl@4.60.2':
1277 + resolution: {integrity: sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==}
1278 cpu: [riscv64]
1279 os: [linux]
1280 libc: [musl]
1281
1282 - '@rollup/rollup-linux-s390x-gnu@4.60.1':
1283 - resolution: {integrity: sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==}
1282 + '@rollup/rollup-linux-s390x-gnu@4.60.2':
1283 + resolution: {integrity: sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==}
1284 cpu: [s390x]
1285 os: [linux]
1286 libc: [glibc]
1287
1288 - '@rollup/rollup-linux-x64-gnu@4.60.1':
1289 - resolution: {integrity: sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==}
1288 + '@rollup/rollup-linux-x64-gnu@4.60.2':
1289 + resolution: {integrity: sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==}
1290 cpu: [x64]
1291 os: [linux]
1292 libc: [glibc]
1293
1294 - '@rollup/rollup-linux-x64-musl@4.60.1':
1295 - resolution: {integrity: sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==}
1294 + '@rollup/rollup-linux-x64-musl@4.60.2':
1295 + resolution: {integrity: sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==}
1296 cpu: [x64]
1297 os: [linux]
1298 libc: [musl]
1299
1300 - '@rollup/rollup-openbsd-x64@4.60.1':
1301 - resolution: {integrity: sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==}
1300 + '@rollup/rollup-openbsd-x64@4.60.2':
1301 + resolution: {integrity: sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==}
1302 cpu: [x64]
1303 os: [openbsd]
1304
1305 - '@rollup/rollup-openharmony-arm64@4.60.1':
1306 - resolution: {integrity: sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==}
1305 + '@rollup/rollup-openharmony-arm64@4.60.2':
1306 + resolution: {integrity: sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==}
1307 cpu: [arm64]
1308 os: [openharmony]
1309
1310 - '@rollup/rollup-win32-arm64-msvc@4.60.1':
1311 - resolution: {integrity: sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==}
1310 + '@rollup/rollup-win32-arm64-msvc@4.60.2':
1311 + resolution: {integrity: sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==}
1312 cpu: [arm64]
1313 os: [win32]
1314
1315 - '@rollup/rollup-win32-ia32-msvc@4.60.1':
1316 - resolution: {integrity: sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==}
1315 + '@rollup/rollup-win32-ia32-msvc@4.60.2':
1316 + resolution: {integrity: sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==}
1317 cpu: [ia32]
1318 os: [win32]
1319
1320 - '@rollup/rollup-win32-x64-gnu@4.60.1':
1321 - resolution: {integrity: sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==}
1320 + '@rollup/rollup-win32-x64-gnu@4.60.2':
1321 + resolution: {integrity: sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==}
1322 cpu: [x64]
1323 os: [win32]
1324
1325 - '@rollup/rollup-win32-x64-msvc@4.60.1':
1326 - resolution: {integrity: sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==}
1325 + '@rollup/rollup-win32-x64-msvc@4.60.2':
1326 + resolution: {integrity: sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==}
1327 cpu: [x64]
1328 os: [win32]
1329
@@ -1519,6 +1519,9 @@ packages:
1519 '@types/jsonfile@6.1.4':
1520 resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
1521
1522 + '@types/katex@0.16.8':
1523 + resolution: {integrity: sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg==}
1524 +
1525 '@types/linkify-it@5.0.0':
1526 resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
1527
@@ -1649,8 +1652,8 @@ packages:
1652 vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
1653 vue: ^3.2.25
1654
1652 - '@vitest/eslint-plugin@1.6.15':
1653 - resolution: {integrity: sha512-dTMjrdngmcB+DxomlKQ+SUubCTvd0m2hQQFpv5sx+GRodmeoxr2PVbphk57SVp250vpxphk9Ccwyv6fQ6+2gkA==}
1655 + '@vitest/eslint-plugin@1.6.16':
1656 + resolution: {integrity: sha512-2pBN1F1JXq6zTSaYC58CMJa7pGxXIRsLfOioeZM4cPE3pRdSh1ySTSoHPQlOTEF5WgoVzWZQxhGQ3ygT78hOVg==}
1657 engines: {node: '>=18'}
1658 peerDependencies:
1659 '@typescript-eslint/eslint-plugin': '*'
@@ -1782,8 +1785,8 @@ packages:
1785 '@vue/devtools-shared@8.1.1':
1786 resolution: {integrity: sha512-+h4ttmJYl/txpxHKaoZcaKpC+pvckgLzIDiSQlaQ7kKthKh8KuwoLW2D8hPJEnqKzXOvu15UHEoGyngAXCz0EQ==}
1787
1785 - '@vue/language-core@3.2.6':
1786 - resolution: {integrity: sha512-xYYYX3/aVup576tP/23sEUpgiEnujrENaoNRbaozC1/MA9I6EGFQRJb4xrt/MmUCAGlxTKL2RmT8JLTPqagCkg==}
1788 + '@vue/language-core@3.2.7':
1789 + resolution: {integrity: sha512-Gn4q/tRxbpVGLEuARQ43p3YELlNAFgRUVCgW9U5Cr+5q4vfD2bWDWpl3ABbJMXUt5xlE1dF8dkigg2aUq7JYYw==}
1790
1791 '@vue/reactivity@3.5.32':
1792 resolution: {integrity: sha512-/ORasxSGvZ6MN5gc+uE364SxFdJ0+WqVG0CENXaGW58TOCdrAW76WWaplDtECeS1qphvtBZtR+3/o1g1zL4xPQ==}
@@ -1869,8 +1872,8 @@ packages:
1872 ajv@6.14.0:
1873 resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
1874
1872 - algoliasearch@5.50.1:
1873 - resolution: {integrity: sha512-/bwdue1/8LWELn/DBalGRfuLsXBLXULJo/yOeavJtDu8rBwxIzC6/Rz9Jg19S21VkJvRuZO1k8CZXBMS73mYbA==}
1875 + algoliasearch@5.50.2:
1876 + resolution: {integrity: sha512-Tfp26yoNWurUjfgK4GOrVJQhSNXu9tJtHfFFNosgT2YClG+vPyUjX/gbC8rG39qLncnZg8Fj34iarQWpMkqefw==}
1877 engines: {node: '>= 14.0.0'}
1878
1879 alien-signals@3.1.2:
@@ -1948,8 +1951,8 @@ packages:
1951 asynckit@0.4.0:
1952 resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
1953
1951 - axios@1.15.0:
1952 - resolution: {integrity: sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==}
1954 + axios@1.15.1:
1955 + resolution: {integrity: sha512-WOG+Jj8ZOvR0a3rAn+Tuf1UQJRxw5venr6DgdbJzngJE3qG7X0kL83CZGpdHMxEm+ZK3seAbvFsw4FfOfP9vxg==}
1956
1957 babel-walk@3.0.0-canary-5:
1958 resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==}
@@ -1965,8 +1968,8 @@ packages:
1968 resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
1969 engines: {node: 18 || 20 || >=22}
1970
1968 - baseline-browser-mapping@2.10.18:
1969 - resolution: {integrity: sha512-VSnGQAOLtP5mib/DPyg2/t+Tlv65NTBz83BJBJvmLVHHuKJVaDOBvJJykiT5TR++em5nfAySPccDZDa4oSrn8A==}
1971 + baseline-browser-mapping@2.10.20:
1972 + resolution: {integrity: sha512-1AaXxEPfXT+GvTBJFuy4yXVHWJBXa4OdbIebGN/wX5DlsIkU0+wzGnd2lOzokSk51d5LUmqjgBLRLlypLUqInQ==}
1973 engines: {node: '>=6.0.0'}
1974 hasBin: true
1975
@@ -2052,8 +2055,8 @@ packages:
2055 resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
2056 engines: {node: '>=10'}
2057
2055 - caniuse-lite@1.0.30001787:
2056 - resolution: {integrity: sha512-mNcrMN9KeI68u7muanUpEejSLghOKlVhRqS/Za2IeyGllJ9I9otGpR9g3nsw7n4W378TE/LyIteA0+/FOZm4Kg==}
2058 + caniuse-lite@1.0.30001788:
2059 + resolution: {integrity: sha512-6q8HFp+lOQtcf7wBK+uEenxymVWkGKkjFpCvw5W25cmMwEDU45p1xQFBQv8JDlMMry7eNxyBaR+qxgmTUZkIRQ==}
2060
2061 ccount@2.0.1:
2062 resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -2150,6 +2153,10 @@ packages:
2153 resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
2154 engines: {node: '>= 10'}
2155
2156 + commander@8.3.0:
2157 + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
2158 + engines: {node: '>= 12'}
2159 +
2160 comment-parser@1.4.5:
2161 resolution: {integrity: sha512-aRDkn3uyIlCFfk5NUA+VdwMmMsh8JGhc4hapfV4yxymHGQ3BVskMQfoXGpCo5IoBuQ9tS5iiVKhCpTcB4pW4qw==}
2162 engines: {node: '>= 12.0.0'}
@@ -2368,8 +2375,8 @@ packages:
2375 engines: {node: '>=14'}
2376 hasBin: true
2377
2371 - electron-to-chromium@1.5.335:
2372 - resolution: {integrity: sha512-q9n5T4BR4Xwa2cwbrwcsDJtHD/enpQ5S1xF1IAtdqf5AAgqDFmR/aakqH3ChFdqd/QXJhS3rnnXFtexU7rax6Q==}
2378 + electron-to-chromium@1.5.340:
2379 + resolution: {integrity: sha512-908qahOGocRMinT2nM3ajCEM99H4iPdv84eagPP3FfZy/1ZGeOy2CZYzjhms81ckOPCXPlW7LkY4XpxD8r1DrA==}
2380
2381 emoji-regex@8.0.0:
2382 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -2503,11 +2510,11 @@ packages:
2510 peerDependencies:
2511 eslint: '>=8'
2512
2506 - eslint-plugin-import-lite@0.5.2:
2507 - resolution: {integrity: sha512-XvfdWOC5dSLEI9krIPRlNmKSI2ViIE9pVylzfV9fCq0ZpDaNeUk6o0wZv0OzN83QdadgXp1NsY0qjLINxwYCsw==}
2513 + eslint-plugin-import-lite@0.6.0:
2514 + resolution: {integrity: sha512-80vevx2A7i3H7n1/6pqDO8cc5wRz6OwLDvIyVl9UflBV1N1f46e9Ihzi65IOLYoSxM6YykK2fTw1xm0Ixx6aTQ==}
2515 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2516 peerDependencies:
2510 - eslint: '>=9.0.0'
2517 + eslint: ^9.0.0 || ^10.0.0
2518
2519 eslint-plugin-jsdoc@62.9.0:
2520 resolution: {integrity: sha512-PY7/X4jrVgoIDncUmITlUqK546Ltmx/Pd4Hdsu4CvSjryQZJI2mEV4vrdMufyTetMiZ5taNSqvK//BTgVUlNkA==}
@@ -2531,8 +2538,8 @@ packages:
2538 resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
2539 engines: {node: '>=5.0.0'}
2540
2534 - eslint-plugin-perfectionist@5.8.0:
2535 - resolution: {integrity: sha512-k8uIptWIxkUclonCFGyDzgYs9NI+Qh0a7cUXS3L7IYZDEsjXuimFBVbxXPQQngWqMiaxJRwbtYB4smMGMqF+cw==}
2541 + eslint-plugin-perfectionist@5.9.0:
2542 + resolution: {integrity: sha512-8TWzg02zmnBdZwCkWLi8jhzqXI+fE7Z/RwV8SL6xD45tJ8Bp3wGuYL2XtQgfe/Wd0eBqOUX+s6ey73IyszvKTA==}
2543 engines: {node: ^20.0.0 || >=22.0.0}
2544 peerDependencies:
2545 eslint: ^8.45.0 || ^9.0.0 || ^10.0.0
@@ -2554,8 +2561,8 @@ packages:
2561 peerDependencies:
2562 eslint: '>=9.38.0'
2563
2557 - eslint-plugin-unicorn@63.0.0:
2558 - resolution: {integrity: sha512-Iqecl9118uQEXYh7adylgEmGfkn5es3/mlQTLLkd4pXkIk9CTGrAbeUux+YljSa2ohXCBmQQ0+Ej1kZaFgcfkA==}
2564 + eslint-plugin-unicorn@64.0.0:
2565 + resolution: {integrity: sha512-rNZwalHh8i0UfPlhNwg5BTUO1CMdKNmjqe+TgzOTZnpKoi8VBgsW7u9qCHIdpxEzZ1uwrJrPF0uRb7l//K38gA==}
2566 engines: {node: ^20.10.0 || >=21.0.0}
2567 peerDependencies:
2568 eslint: '>=9.38.0'
@@ -2611,8 +2618,8 @@ packages:
2618 resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
2619 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
2620
2614 - eslint@10.2.0:
2615 - resolution: {integrity: sha512-+L0vBFYGIpSNIt/KWTpFonPrqYvgKw1eUI5Vn7mEogrQcWtWYtNQ7dNqC+px/J0idT3BAkiWrhfS7k+Tum8TUA==}
2621 + eslint@10.2.1:
2622 + resolution: {integrity: sha512-wiyGaKsDgqXvF40P8mDwiUp/KQjE1FdrIEJsM8PZ3XCiniTMXS3OHWWUe5FI5agoCnr8x4xPrTDZuxsBlNHl+Q==}
2623 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
2624 hasBin: true
2625 peerDependencies:
@@ -2703,11 +2710,11 @@ packages:
2710 fast-wrap-ansi@0.1.6:
2711 resolution: {integrity: sha512-HlUwET7a5gqjURj70D5jl7aC3Zmy4weA1SHUfM0JFI0Ptq987NH2TwbBFLoERhfwk+E+eaq4EK3jXoT+R3yp3w==}
2712
2706 - fast-xml-builder@1.1.4:
2707 - resolution: {integrity: sha512-f2jhpN4Eccy0/Uz9csxh3Nu6q4ErKxf0XIsasomfOihuSUa3/xw6w8dnOtCDgEItQFJG8KyXPzQXzcODDrrbOg==}
2713 + fast-xml-builder@1.1.5:
2714 + resolution: {integrity: sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA==}
2715
2709 - fast-xml-parser@5.5.12:
2710 - resolution: {integrity: sha512-nUR0q8PPfoA/svPM43Gup7vLOZWppaNrYgGmrVqrAVJa7cOH4hMG6FX9M4mQ8dZA1/ObGZHzES7Ed88hxEBSJg==}
2716 + fast-xml-parser@5.7.1:
2717 + resolution: {integrity: sha512-8Cc3f8GUGUULg34pBch/KGyPLglS+OFs05deyOlY7fL2MTagYPKrVQNmR1fLF/yJ9PH5ZSTd3YDF6pnmeZU+zA==}
2718 hasBin: true
2719
2720 fastq@1.20.1:
@@ -2822,8 +2829,8 @@ packages:
2829 resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
2830 engines: {node: '>=10'}
2831
2825 - get-tsconfig@4.13.7:
2826 - resolution: {integrity: sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==}
2832 + get-tsconfig@4.14.0:
2833 + resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==}
2834
2835 giget@3.2.0:
2836 resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==}
@@ -2857,10 +2864,6 @@ packages:
2864 resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
2865 engines: {node: '>=18'}
2866
2860 - globals@16.5.0:
2861 - resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
2862 - engines: {node: '>=18'}
2863 -
2867 globals@17.5.0:
2868 resolution: {integrity: sha512-qoV+HK2yFl/366t2/Cb3+xxPUo5BuMynomoDmiaZBIdbs+0pYbjfZU+twLhGKp4uCZ/+NbtpVepH5bGCxRyy2g==}
2869 engines: {node: '>=18'}
@@ -2883,8 +2886,8 @@ packages:
2886 resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
2887 engines: {node: '>= 0.4'}
2888
2886 - hasown@2.0.2:
2887 - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
2889 + hasown@2.0.3:
2890 + resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==}
2891 engines: {node: '>= 0.4'}
2892
2893 hast-util-to-html@9.0.5:
@@ -3139,6 +3142,10 @@ packages:
3142 jstransformer@1.0.0:
3143 resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==}
3144
3145 + katex@0.16.45:
3146 + resolution: {integrity: sha512-pQpZbdBu7wCTmQUh7ufPmLr0pFoObnGUoL/yhtwJDgmmQpbkg/0HSVti25Fu4rmd1oCR6NGWe9vqTWuWv3GcNA==}
3147 + hasBin: true
3148 +
3149 keyv@4.5.4:
3150 resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
3151
@@ -3325,6 +3332,9 @@ packages:
3332 mdast-util-gfm@3.1.0:
3333 resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
3334
3335 + mdast-util-math@3.0.0:
3336 + resolution: {integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==}
3337 +
3338 mdast-util-phrasing@4.1.0:
3339 resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
3340
@@ -3387,6 +3397,9 @@ packages:
3397 micromark-extension-gfm@3.0.0:
3398 resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
3399
3400 + micromark-extension-math@3.1.0:
3401 + resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==}
3402 +
3403 micromark-factory-destination@2.0.1:
3404 resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
3405
@@ -3523,8 +3536,8 @@ packages:
3536 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
3537 hasBin: true
3538
3526 - nanoid@5.1.7:
3527 - resolution: {integrity: sha512-ua3NDgISf6jdwezAheMOk4mbE1LXjm1DfMUDMuJf4AqxLFK3ccGpgWizwa5YV7Yz9EpXwEaWoRXSb/BnV0t5dQ==}
3539 + nanoid@5.1.9:
3540 + resolution: {integrity: sha512-ZUvP7KeBLe3OZ1ypw6dI/TzYJuvHP77IM4Ry73waSQTLn8/g8rpdjfyVAh7t1/+FjBtG4lCP42MEbDxOsRpBMw==}
3541 engines: {node: ^18 || >=20}
3542 hasBin: true
3543
@@ -3596,11 +3609,11 @@ packages:
3609 resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
3610 engines: {node: '>=18'}
3611
3599 - oniguruma-parser@0.12.1:
3600 - resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==}
3612 + oniguruma-parser@0.12.2:
3613 + resolution: {integrity: sha512-6HVa5oIrgMC6aA6WF6XyyqbhRPJrKR02L20+2+zpDtO5QAzGHAUGw5TKQvwi5vctNnRHkJYmjAhRVQF2EKdTQw==}
3614
3602 - oniguruma-to-es@4.3.5:
3603 - resolution: {integrity: sha512-Zjygswjpsewa0NLTsiizVuMQZbp0MDyM6lIt66OxsF21npUDlzpHi1Mgb/qhQdkb+dWFTzJmFbEWdvZgRho8eQ==}
3615 + oniguruma-to-es@4.3.6:
3616 + resolution: {integrity: sha512-csuQ9x3Yr0cEIs/Zgx/OEt9iBw9vqIunAPQkx19R/fiMq2oGVTgcMqO/V3Ybqefr1TBvosI6jU539ksaBULJyA==}
3617
3618 open@10.2.0:
3619 resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
@@ -3757,8 +3770,8 @@ packages:
3770 resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
3771 engines: {node: '>=4'}
3772
3760 - postcss@8.5.9:
3761 - resolution: {integrity: sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==}
3773 + postcss@8.5.10:
3774 + resolution: {integrity: sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==}
3775 engines: {node: ^10 || ^12 || >=14}
3776
3777 prelude-ls@1.2.1:
@@ -3820,8 +3833,8 @@ packages:
3833 prettier-plugin-svelte:
3834 optional: true
3835
3823 - prettier@3.8.2:
3824 - resolution: {integrity: sha512-8c3mgTe0ASwWAJK+78dpviD+A8EqhndQPUBpNUIPt6+xWlIigCwfN01lWr9MAede4uqXGTEKeQWTvzb3vjia0Q==}
3836 + prettier@3.8.3:
3837 + resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==}
3838 engines: {node: '>=14'}
3839 hasBin: true
3840
@@ -4004,8 +4017,8 @@ packages:
4017 rollup:
4018 optional: true
4019
4007 - rollup@4.60.1:
4008 - resolution: {integrity: sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==}
4020 + rollup@4.60.2:
4021 + resolution: {integrity: sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==}
4022 engines: {node: '>=18.0.0', npm: '>=8.0.0'}
4023 hasBin: true
4024
@@ -4132,8 +4145,8 @@ packages:
4145 engines: {node: ^22 || >=24}
4146 hasBin: true
4147
4135 - std-env@4.0.0:
4136 - resolution: {integrity: sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==}
4148 + std-env@4.1.0:
4149 + resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==}
4150
4151 string-width@4.2.3:
4152 resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
@@ -4300,8 +4313,8 @@ packages:
4313 resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
4314 engines: {node: '>= 0.8.0'}
4315
4303 - type-fest@5.5.0:
4304 - resolution: {integrity: sha512-PlBfpQwiUvGViBNX84Yxwjsdhd1TUlXr6zjX7eoirtCPIr08NAmxwa+fcYBTeRQxHo9YC9wwF3m9i700sHma8g==}
4316 + type-fest@5.6.0:
4317 + resolution: {integrity: sha512-8ZiHFm91orbSAe2PSAiSVBVko18pbhbiB3U9GglSzF/zCGkR+rxpHx6sEMCUm4kxY4LjDIUGgCfUMtwfZfjfUA==}
4318 engines: {node: '>=20'}
4319
4320 typescript@5.9.3:
@@ -4340,6 +4353,9 @@ packages:
4353 unist-util-position@5.0.0:
4354 resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
4355
4356 + unist-util-remove-position@5.0.0:
4357 + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
4358 +
4359 unist-util-stringify-position@4.0.0:
4360 resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
4361
@@ -4582,8 +4598,8 @@ packages:
4598 peerDependencies:
4599 vue: ^3.3.4
4600
4585 - vue-tsc@3.2.6:
4586 - resolution: {integrity: sha512-gYW/kWI0XrwGzd0PKc7tVB/qpdeAkIZLNZb10/InizkQjHjnT8weZ/vBarZoj4kHKbUTZT/bAVgoOr8x4NsQ/Q==}
4601 + vue-tsc@3.2.7:
4602 + resolution: {integrity: sha512-zc1tL3HoQni1zGTGrwBVRQb7rGP5SWdu/m4rGB6JcnAC5MT5LFZIxF7Y+EJEnt4hGF23d60rXH7gRjHGb5KQQQ==}
4603 hasBin: true
4604 peerDependencies:
4605 typescript: '>=5.0.0'
@@ -4759,128 +4775,128 @@ snapshots:
4775 dependencies:
4776 lodash: 4.17.21
4777
4762 - '@algolia/abtesting@1.16.1':
4778 + '@algolia/abtesting@1.16.2':
4779 dependencies:
4764 - '@algolia/client-common': 5.50.1
4765 - '@algolia/requester-browser-xhr': 5.50.1
4766 - '@algolia/requester-fetch': 5.50.1
4767 - '@algolia/requester-node-http': 5.50.1
4780 + '@algolia/client-common': 5.50.2
4781 + '@algolia/requester-browser-xhr': 5.50.2
4782 + '@algolia/requester-fetch': 5.50.2
4783 + '@algolia/requester-node-http': 5.50.2
4784
4769 - '@algolia/client-abtesting@5.50.1':
4785 + '@algolia/client-abtesting@5.50.2':
4786 dependencies:
4771 - '@algolia/client-common': 5.50.1
4772 - '@algolia/requester-browser-xhr': 5.50.1
4773 - '@algolia/requester-fetch': 5.50.1
4774 - '@algolia/requester-node-http': 5.50.1
4787 + '@algolia/client-common': 5.50.2
4788 + '@algolia/requester-browser-xhr': 5.50.2
4789 + '@algolia/requester-fetch': 5.50.2
4790 + '@algolia/requester-node-http': 5.50.2
4791
4776 - '@algolia/client-analytics@5.50.1':
4792 + '@algolia/client-analytics@5.50.2':
4793 dependencies:
4778 - '@algolia/client-common': 5.50.1
4779 - '@algolia/requester-browser-xhr': 5.50.1
4780 - '@algolia/requester-fetch': 5.50.1
4781 - '@algolia/requester-node-http': 5.50.1
4794 + '@algolia/client-common': 5.50.2
4795 + '@algolia/requester-browser-xhr': 5.50.2
4796 + '@algolia/requester-fetch': 5.50.2
4797 + '@algolia/requester-node-http': 5.50.2
4798
4783 - '@algolia/client-common@5.50.1': {}
4799 + '@algolia/client-common@5.50.2': {}
4800
4785 - '@algolia/client-insights@5.50.1':
4801 + '@algolia/client-insights@5.50.2':
4802 dependencies:
4787 - '@algolia/client-common': 5.50.1
4788 - '@algolia/requester-browser-xhr': 5.50.1
4789 - '@algolia/requester-fetch': 5.50.1
4790 - '@algolia/requester-node-http': 5.50.1
4803 + '@algolia/client-common': 5.50.2
4804 + '@algolia/requester-browser-xhr': 5.50.2
4805 + '@algolia/requester-fetch': 5.50.2
4806 + '@algolia/requester-node-http': 5.50.2
4807
4792 - '@algolia/client-personalization@5.50.1':
4808 + '@algolia/client-personalization@5.50.2':
4809 dependencies:
4794 - '@algolia/client-common': 5.50.1
4795 - '@algolia/requester-browser-xhr': 5.50.1
4796 - '@algolia/requester-fetch': 5.50.1
4797 - '@algolia/requester-node-http': 5.50.1
4810 + '@algolia/client-common': 5.50.2
4811 + '@algolia/requester-browser-xhr': 5.50.2
4812 + '@algolia/requester-fetch': 5.50.2
4813 + '@algolia/requester-node-http': 5.50.2
4814
4799 - '@algolia/client-query-suggestions@5.50.1':
4815 + '@algolia/client-query-suggestions@5.50.2':
4816 dependencies:
4801 - '@algolia/client-common': 5.50.1
4802 - '@algolia/requester-browser-xhr': 5.50.1
4803 - '@algolia/requester-fetch': 5.50.1
4804 - '@algolia/requester-node-http': 5.50.1
4817 + '@algolia/client-common': 5.50.2
4818 + '@algolia/requester-browser-xhr': 5.50.2
4819 + '@algolia/requester-fetch': 5.50.2
4820 + '@algolia/requester-node-http': 5.50.2
4821
4806 - '@algolia/client-search@5.50.1':
4822 + '@algolia/client-search@5.50.2':
4823 dependencies:
4808 - '@algolia/client-common': 5.50.1
4809 - '@algolia/requester-browser-xhr': 5.50.1
4810 - '@algolia/requester-fetch': 5.50.1
4811 - '@algolia/requester-node-http': 5.50.1
4824 + '@algolia/client-common': 5.50.2
4825 + '@algolia/requester-browser-xhr': 5.50.2
4826 + '@algolia/requester-fetch': 5.50.2
4827 + '@algolia/requester-node-http': 5.50.2
4828
4813 - '@algolia/ingestion@1.50.1':
4829 + '@algolia/ingestion@1.50.2':
4830 dependencies:
4815 - '@algolia/client-common': 5.50.1
4816 - '@algolia/requester-browser-xhr': 5.50.1
4817 - '@algolia/requester-fetch': 5.50.1
4818 - '@algolia/requester-node-http': 5.50.1
4831 + '@algolia/client-common': 5.50.2
4832 + '@algolia/requester-browser-xhr': 5.50.2
4833 + '@algolia/requester-fetch': 5.50.2
4834 + '@algolia/requester-node-http': 5.50.2
4835
4820 - '@algolia/monitoring@1.50.1':
4836 + '@algolia/monitoring@1.50.2':
4837 dependencies:
4822 - '@algolia/client-common': 5.50.1
4823 - '@algolia/requester-browser-xhr': 5.50.1
4824 - '@algolia/requester-fetch': 5.50.1
4825 - '@algolia/requester-node-http': 5.50.1
4838 + '@algolia/client-common': 5.50.2
4839 + '@algolia/requester-browser-xhr': 5.50.2
4840 + '@algolia/requester-fetch': 5.50.2
4841 + '@algolia/requester-node-http': 5.50.2
4842
4827 - '@algolia/recommend@5.50.1':
4843 + '@algolia/recommend@5.50.2':
4844 dependencies:
4829 - '@algolia/client-common': 5.50.1
4830 - '@algolia/requester-browser-xhr': 5.50.1
4831 - '@algolia/requester-fetch': 5.50.1
4832 - '@algolia/requester-node-http': 5.50.1
4845 + '@algolia/client-common': 5.50.2
4846 + '@algolia/requester-browser-xhr': 5.50.2
4847 + '@algolia/requester-fetch': 5.50.2
4848 + '@algolia/requester-node-http': 5.50.2
4849
4834 - '@algolia/requester-browser-xhr@5.50.1':
4850 + '@algolia/requester-browser-xhr@5.50.2':
4851 dependencies:
4836 - '@algolia/client-common': 5.50.1
4852 + '@algolia/client-common': 5.50.2
4853
4838 - '@algolia/requester-fetch@5.50.1':
4854 + '@algolia/requester-fetch@5.50.2':
4855 dependencies:
4840 - '@algolia/client-common': 5.50.1
4856 + '@algolia/client-common': 5.50.2
4857
4842 - '@algolia/requester-node-http@5.50.1':
4858 + '@algolia/requester-node-http@5.50.2':
4859 dependencies:
4844 - '@algolia/client-common': 5.50.1
4860 + '@algolia/client-common': 5.50.2
4861
4846 - '@antfu/eslint-config@7.7.3(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(@vue/compiler-sfc@3.5.32)(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)(vitest@4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)))':
4862 + '@antfu/eslint-config@8.2.0(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@vue/compiler-sfc@3.5.32)(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)(vitest@4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)))':
4863 dependencies:
4864 '@antfu/install-pkg': 1.1.0
4865 '@clack/prompts': 1.2.0
4850 - '@e18e/eslint-plugin': 0.2.0(eslint@10.2.0(jiti@2.6.1))
4851 - '@eslint-community/eslint-plugin-eslint-comments': 4.7.1(eslint@10.2.0(jiti@2.6.1))
4852 - '@eslint/markdown': 7.5.1
4853 - '@stylistic/eslint-plugin': 5.10.0(eslint@10.2.0(jiti@2.6.1))
4854 - '@typescript-eslint/eslint-plugin': 8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
4855 - '@typescript-eslint/parser': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
4856 - '@vitest/eslint-plugin': 1.6.15(@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)(vitest@4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)))
4866 + '@e18e/eslint-plugin': 0.3.0(eslint@10.2.1(jiti@2.6.1))
4867 + '@eslint-community/eslint-plugin-eslint-comments': 4.7.1(eslint@10.2.1(jiti@2.6.1))
4868 + '@eslint/markdown': 8.0.1
4869 + '@stylistic/eslint-plugin': 5.10.0(eslint@10.2.1(jiti@2.6.1))
4870 + '@typescript-eslint/eslint-plugin': 8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
4871 + '@typescript-eslint/parser': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
4872 + '@vitest/eslint-plugin': 1.6.16(@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)(vitest@4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)))
4873 ansis: 4.2.0
4874 cac: 7.0.0
4859 - eslint: 10.2.0(jiti@2.6.1)
4860 - eslint-config-flat-gitignore: 2.3.0(eslint@10.2.0(jiti@2.6.1))
4875 + eslint: 10.2.1(jiti@2.6.1)
4876 + eslint-config-flat-gitignore: 2.3.0(eslint@10.2.1(jiti@2.6.1))
4877 eslint-flat-config-utils: 3.1.0
4862 - eslint-merge-processors: 2.0.0(eslint@10.2.0(jiti@2.6.1))
4863 - eslint-plugin-antfu: 3.2.2(eslint@10.2.0(jiti@2.6.1))
4864 - eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))
4865 - eslint-plugin-import-lite: 0.5.2(eslint@10.2.0(jiti@2.6.1))
4866 - eslint-plugin-jsdoc: 62.9.0(eslint@10.2.0(jiti@2.6.1))
4867 - eslint-plugin-jsonc: 3.1.2(eslint@10.2.0(jiti@2.6.1))
4868 - eslint-plugin-n: 17.24.0(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
4878 + eslint-merge-processors: 2.0.0(eslint@10.2.1(jiti@2.6.1))
4879 + eslint-plugin-antfu: 3.2.2(eslint@10.2.1(jiti@2.6.1))
4880 + eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))
4881 + eslint-plugin-import-lite: 0.6.0(eslint@10.2.1(jiti@2.6.1))
4882 + eslint-plugin-jsdoc: 62.9.0(eslint@10.2.1(jiti@2.6.1))
4883 + eslint-plugin-jsonc: 3.1.2(eslint@10.2.1(jiti@2.6.1))
4884 + eslint-plugin-n: 17.24.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
4885 eslint-plugin-no-only-tests: 3.3.0
4870 - eslint-plugin-perfectionist: 5.8.0(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
4871 - eslint-plugin-pnpm: 1.6.0(eslint@10.2.0(jiti@2.6.1))
4872 - eslint-plugin-regexp: 3.1.0(eslint@10.2.0(jiti@2.6.1))
4873 - eslint-plugin-toml: 1.3.1(eslint@10.2.0(jiti@2.6.1))
4874 - eslint-plugin-unicorn: 63.0.0(eslint@10.2.0(jiti@2.6.1))
4875 - eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))
4876 - eslint-plugin-vue: 10.8.0(@stylistic/eslint-plugin@5.10.0(eslint@10.2.0(jiti@2.6.1)))(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.2.0(jiti@2.6.1)))
4877 - eslint-plugin-yml: 3.3.1(eslint@10.2.0(jiti@2.6.1))
4878 - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.32)(eslint@10.2.0(jiti@2.6.1))
4886 + eslint-plugin-perfectionist: 5.9.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
4887 + eslint-plugin-pnpm: 1.6.0(eslint@10.2.1(jiti@2.6.1))
4888 + eslint-plugin-regexp: 3.1.0(eslint@10.2.1(jiti@2.6.1))
4889 + eslint-plugin-toml: 1.3.1(eslint@10.2.1(jiti@2.6.1))
4890 + eslint-plugin-unicorn: 64.0.0(eslint@10.2.1(jiti@2.6.1))
4891 + eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))
4892 + eslint-plugin-vue: 10.8.0(@stylistic/eslint-plugin@5.10.0(eslint@10.2.1(jiti@2.6.1)))(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.2.1(jiti@2.6.1)))
4893 + eslint-plugin-yml: 3.3.1(eslint@10.2.1(jiti@2.6.1))
4894 + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.32)(eslint@10.2.1(jiti@2.6.1))
4895 globals: 17.5.0
4896 local-pkg: 1.1.2
4897 parse-gitignore: 2.0.0
4898 toml-eslint-parser: 1.0.3
4883 - vue-eslint-parser: 10.4.0(eslint@10.2.0(jiti@2.6.1))
4899 + vue-eslint-parser: 10.4.0(eslint@10.2.1(jiti@2.6.1))
4900 yaml-eslint-parser: 2.0.0
4901 transitivePeerDependencies:
4902 - '@eslint/json'
@@ -4905,20 +4921,24 @@ snapshots:
4921 tinyexec: 1.1.1
4922 tinyglobby: 0.2.16
4923
4908 - '@asamuzakjp/css-color@5.1.10':
4924 + '@asamuzakjp/css-color@5.1.11':
4925 dependencies:
4926 + '@asamuzakjp/generational-cache': 1.0.1
4927 '@csstools/css-calc': 3.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
4928 '@csstools/css-color-parser': 4.1.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
4929 '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
4930 '@csstools/css-tokenizer': 4.0.0
4931
4915 - '@asamuzakjp/dom-selector@7.0.9':
4932 + '@asamuzakjp/dom-selector@7.1.1':
4933 dependencies:
4934 + '@asamuzakjp/generational-cache': 1.0.1
4935 '@asamuzakjp/nwsapi': 2.3.9
4936 bidi-js: 1.0.3
4937 css-tree: 3.2.1
4938 is-potential-custom-element-name: 1.0.1
4939
4940 + '@asamuzakjp/generational-cache@1.0.1': {}
4941 +
4942 '@asamuzakjp/nwsapi@2.3.9': {}
4943
4944 '@babel/code-frame@7.29.0':
@@ -5132,14 +5152,14 @@ snapshots:
5152 dependencies:
5153 '@codemirror/language': 6.12.3
5154 '@codemirror/state': 6.6.0
5135 - '@codemirror/view': 6.41.0
5155 + '@codemirror/view': 6.41.1
5156 '@lezer/common': 1.5.2
5157
5158 '@codemirror/commands@6.10.3':
5159 dependencies:
5160 '@codemirror/language': 6.12.3
5161 '@codemirror/state': 6.6.0
5142 - '@codemirror/view': 6.41.0
5162 + '@codemirror/view': 6.41.1
5163 '@lezer/common': 1.5.2
5164
5165 '@codemirror/lang-javascript@6.2.5':
@@ -5148,7 +5168,7 @@ snapshots:
5168 '@codemirror/language': 6.12.3
5169 '@codemirror/lint': 6.9.5
5170 '@codemirror/state': 6.6.0
5151 - '@codemirror/view': 6.41.0
5171 + '@codemirror/view': 6.41.1
5172 '@lezer/common': 1.5.2
5173 '@lezer/javascript': 1.5.4
5174
@@ -5157,29 +5177,29 @@ snapshots:
5177 '@codemirror/autocomplete': 6.20.1
5178 '@codemirror/language': 6.12.3
5179 '@codemirror/state': 6.6.0
5160 - '@codemirror/view': 6.41.0
5180 + '@codemirror/view': 6.41.1
5181 '@lezer/common': 1.5.2
5182 '@lezer/xml': 1.0.6
5183
5184 '@codemirror/language@6.12.3':
5185 dependencies:
5186 '@codemirror/state': 6.6.0
5167 - '@codemirror/view': 6.41.0
5187 + '@codemirror/view': 6.41.1
5188 '@lezer/common': 1.5.2
5189 '@lezer/highlight': 1.2.3
5170 - '@lezer/lr': 1.4.8
5190 + '@lezer/lr': 1.4.10
5191 style-mod: 4.1.3
5192
5193 '@codemirror/lint@6.9.5':
5194 dependencies:
5195 '@codemirror/state': 6.6.0
5176 - '@codemirror/view': 6.41.0
5196 + '@codemirror/view': 6.41.1
5197 crelt: 1.0.6
5198
5199 '@codemirror/search@6.6.0':
5200 dependencies:
5201 '@codemirror/state': 6.6.0
5182 - '@codemirror/view': 6.41.0
5202 + '@codemirror/view': 6.41.1
5203 crelt: 1.0.6
5204
5205 '@codemirror/state@6.6.0':
@@ -5190,10 +5210,10 @@ snapshots:
5210 dependencies:
5211 '@codemirror/language': 6.12.3
5212 '@codemirror/state': 6.6.0
5193 - '@codemirror/view': 6.41.0
5213 + '@codemirror/view': 6.41.1
5214 '@lezer/highlight': 1.2.3
5215
5196 - '@codemirror/view@6.41.0':
5216 + '@codemirror/view@6.41.1':
5217 dependencies:
5218 '@codemirror/state': 6.6.0
5219 crelt: 1.0.6
@@ -5235,11 +5255,11 @@ snapshots:
5255
5256 '@csstools/css-tokenizer@4.0.0': {}
5257
5238 - '@e18e/eslint-plugin@0.2.0(eslint@10.2.0(jiti@2.6.1))':
5258 + '@e18e/eslint-plugin@0.3.0(eslint@10.2.1(jiti@2.6.1))':
5259 dependencies:
5240 - eslint-plugin-depend: 1.5.0(eslint@10.2.0(jiti@2.6.1))
5260 + eslint-plugin-depend: 1.5.0(eslint@10.2.1(jiti@2.6.1))
5261 optionalDependencies:
5242 - eslint: 10.2.0(jiti@2.6.1)
5262 + eslint: 10.2.1(jiti@2.6.1)
5263
5264 '@emotion/hash@0.8.0': {}
5265
@@ -5339,24 +5359,24 @@ snapshots:
5359 '@esbuild/win32-x64@0.27.7':
5360 optional: true
5361
5342 - '@eslint-community/eslint-plugin-eslint-comments@4.7.1(eslint@10.2.0(jiti@2.6.1))':
5362 + '@eslint-community/eslint-plugin-eslint-comments@4.7.1(eslint@10.2.1(jiti@2.6.1))':
5363 dependencies:
5364 escape-string-regexp: 4.0.0
5345 - eslint: 10.2.0(jiti@2.6.1)
5365 + eslint: 10.2.1(jiti@2.6.1)
5366 ignore: 7.0.5
5367
5348 - '@eslint-community/eslint-utils@4.9.1(eslint@10.2.0(jiti@2.6.1))':
5368 + '@eslint-community/eslint-utils@4.9.1(eslint@10.2.1(jiti@2.6.1))':
5369 dependencies:
5350 - eslint: 10.2.0(jiti@2.6.1)
5370 + eslint: 10.2.1(jiti@2.6.1)
5371 eslint-visitor-keys: 3.4.3
5372
5373 '@eslint-community/regexpp@4.12.2': {}
5374
5355 - '@eslint/compat@2.0.5(eslint@10.2.0(jiti@2.6.1))':
5375 + '@eslint/compat@2.0.5(eslint@10.2.1(jiti@2.6.1))':
5376 dependencies:
5377 '@eslint/core': 1.2.1
5378 optionalDependencies:
5359 - eslint: 10.2.0(jiti@2.6.1)
5379 + eslint: 10.2.1(jiti@2.6.1)
5380
5381 '@eslint/config-array@0.23.5':
5382 dependencies:
@@ -5370,35 +5390,28 @@ snapshots:
5390 dependencies:
5391 '@eslint/core': 1.2.1
5392
5373 - '@eslint/core@0.17.0':
5374 - dependencies:
5375 - '@types/json-schema': 7.0.15
5376 -
5393 '@eslint/core@1.2.1':
5394 dependencies:
5395 '@types/json-schema': 7.0.15
5396
5381 - '@eslint/markdown@7.5.1':
5397 + '@eslint/markdown@8.0.1':
5398 dependencies:
5383 - '@eslint/core': 0.17.0
5384 - '@eslint/plugin-kit': 0.4.1
5399 + '@eslint/core': 1.2.1
5400 + '@eslint/plugin-kit': 0.6.1
5401 github-slugger: 2.0.0
5402 mdast-util-from-markdown: 2.0.3
5403 mdast-util-frontmatter: 2.0.1
5404 mdast-util-gfm: 3.1.0
5405 + mdast-util-math: 3.0.0
5406 micromark-extension-frontmatter: 2.0.0
5407 micromark-extension-gfm: 3.0.0
5408 + micromark-extension-math: 3.1.0
5409 micromark-util-normalize-identifier: 2.0.1
5410 transitivePeerDependencies:
5411 - supports-color
5412
5413 '@eslint/object-schema@3.0.5': {}
5414
5397 - '@eslint/plugin-kit@0.4.1':
5398 - dependencies:
5399 - '@eslint/core': 0.17.0
5400 - levn: 0.4.1
5401 -
5415 '@eslint/plugin-kit@0.6.1':
5416 dependencies:
5417 '@eslint/core': 1.2.1
@@ -5440,13 +5453,18 @@ snapshots:
5453
5454 '@henrygd/queue@1.2.0': {}
5455
5443 - '@humanfs/core@0.19.1': {}
5456 + '@humanfs/core@0.19.2':
5457 + dependencies:
5458 + '@humanfs/types': 0.15.0
5459
5445 - '@humanfs/node@0.16.7':
5460 + '@humanfs/node@0.16.8':
5461 dependencies:
5447 - '@humanfs/core': 0.19.1
5462 + '@humanfs/core': 0.19.2
5463 + '@humanfs/types': 0.15.0
5464 '@humanwhocodes/retry': 0.4.3
5465
5466 + '@humanfs/types@0.15.0': {}
5467 +
5468 '@humanwhocodes/module-importer@1.0.1': {}
5469
5470 '@humanwhocodes/retry@0.4.3': {}
@@ -5551,9 +5569,9 @@ snapshots:
5569 dependencies:
5570 '@lezer/common': 1.5.2
5571 '@lezer/highlight': 1.2.3
5554 - '@lezer/lr': 1.4.8
5572 + '@lezer/lr': 1.4.10
5573
5556 - '@lezer/lr@1.4.8':
5574 + '@lezer/lr@1.4.10':
5575 dependencies:
5576 '@lezer/common': 1.5.2
5577
@@ -5561,12 +5579,14 @@ snapshots:
5579 dependencies:
5580 '@lezer/common': 1.5.2
5581 '@lezer/highlight': 1.2.3
5564 - '@lezer/lr': 1.4.8
5582 + '@lezer/lr': 1.4.10
5583
5584 '@marijn/find-cluster-break@1.0.2': {}
5585
5586 '@microsoft/fetch-event-source@2.0.1': {}
5587
5588 + '@nodable/entities@2.1.0': {}
5589 +
5590 '@nodelib/fs.scandir@2.1.5':
5591 dependencies:
5592 '@nodelib/fs.stat': 2.0.5
@@ -5684,81 +5704,81 @@ snapshots:
5704
5705 '@rolldown/pluginutils@1.0.0-rc.13': {}
5706
5687 - '@rolldown/pluginutils@1.0.0-rc.15': {}
5707 + '@rolldown/pluginutils@1.0.0-rc.16': {}
5708
5689 - '@rollup/rollup-android-arm-eabi@4.60.1':
5709 + '@rollup/rollup-android-arm-eabi@4.60.2':
5710 optional: true
5711
5692 - '@rollup/rollup-android-arm64@4.60.1':
5712 + '@rollup/rollup-android-arm64@4.60.2':
5713 optional: true
5714
5695 - '@rollup/rollup-darwin-arm64@4.60.1':
5715 + '@rollup/rollup-darwin-arm64@4.60.2':
5716 optional: true
5717
5698 - '@rollup/rollup-darwin-x64@4.60.1':
5718 + '@rollup/rollup-darwin-x64@4.60.2':
5719 optional: true
5720
5701 - '@rollup/rollup-freebsd-arm64@4.60.1':
5721 + '@rollup/rollup-freebsd-arm64@4.60.2':
5722 optional: true
5723
5704 - '@rollup/rollup-freebsd-x64@4.60.1':
5724 + '@rollup/rollup-freebsd-x64@4.60.2':
5725 optional: true
5726
5707 - '@rollup/rollup-linux-arm-gnueabihf@4.60.1':
5727 + '@rollup/rollup-linux-arm-gnueabihf@4.60.2':
5728 optional: true
5729
5710 - '@rollup/rollup-linux-arm-musleabihf@4.60.1':
5730 + '@rollup/rollup-linux-arm-musleabihf@4.60.2':
5731 optional: true
5732
5713 - '@rollup/rollup-linux-arm64-gnu@4.60.1':
5733 + '@rollup/rollup-linux-arm64-gnu@4.60.2':
5734 optional: true
5735
5716 - '@rollup/rollup-linux-arm64-musl@4.60.1':
5736 + '@rollup/rollup-linux-arm64-musl@4.60.2':
5737 optional: true
5738
5719 - '@rollup/rollup-linux-loong64-gnu@4.60.1':
5739 + '@rollup/rollup-linux-loong64-gnu@4.60.2':
5740 optional: true
5741
5722 - '@rollup/rollup-linux-loong64-musl@4.60.1':
5742 + '@rollup/rollup-linux-loong64-musl@4.60.2':
5743 optional: true
5744
5725 - '@rollup/rollup-linux-ppc64-gnu@4.60.1':
5745 + '@rollup/rollup-linux-ppc64-gnu@4.60.2':
5746 optional: true
5747
5728 - '@rollup/rollup-linux-ppc64-musl@4.60.1':
5748 + '@rollup/rollup-linux-ppc64-musl@4.60.2':
5749 optional: true
5750
5731 - '@rollup/rollup-linux-riscv64-gnu@4.60.1':
5751 + '@rollup/rollup-linux-riscv64-gnu@4.60.2':
5752 optional: true
5753
5734 - '@rollup/rollup-linux-riscv64-musl@4.60.1':
5754 + '@rollup/rollup-linux-riscv64-musl@4.60.2':
5755 optional: true
5756
5737 - '@rollup/rollup-linux-s390x-gnu@4.60.1':
5757 + '@rollup/rollup-linux-s390x-gnu@4.60.2':
5758 optional: true
5759
5740 - '@rollup/rollup-linux-x64-gnu@4.60.1':
5760 + '@rollup/rollup-linux-x64-gnu@4.60.2':
5761 optional: true
5762
5743 - '@rollup/rollup-linux-x64-musl@4.60.1':
5763 + '@rollup/rollup-linux-x64-musl@4.60.2':
5764 optional: true
5765
5746 - '@rollup/rollup-openbsd-x64@4.60.1':
5766 + '@rollup/rollup-openbsd-x64@4.60.2':
5767 optional: true
5768
5749 - '@rollup/rollup-openharmony-arm64@4.60.1':
5769 + '@rollup/rollup-openharmony-arm64@4.60.2':
5770 optional: true
5771
5752 - '@rollup/rollup-win32-arm64-msvc@4.60.1':
5772 + '@rollup/rollup-win32-arm64-msvc@4.60.2':
5773 optional: true
5774
5755 - '@rollup/rollup-win32-ia32-msvc@4.60.1':
5775 + '@rollup/rollup-win32-ia32-msvc@4.60.2':
5776 optional: true
5777
5758 - '@rollup/rollup-win32-x64-gnu@4.60.1':
5778 + '@rollup/rollup-win32-x64-gnu@4.60.2':
5779 optional: true
5780
5761 - '@rollup/rollup-win32-x64-msvc@4.60.1':
5781 + '@rollup/rollup-win32-x64-msvc@4.60.2':
5782 optional: true
5783
5784 '@shikijs/core@4.0.2':
@@ -5773,7 +5793,7 @@ snapshots:
5793 dependencies:
5794 '@shikijs/types': 4.0.2
5795 '@shikijs/vscode-textmate': 10.0.2
5776 - oniguruma-to-es: 4.3.5
5796 + oniguruma-to-es: 4.3.6
5797
5798 '@shikijs/engine-oniguruma@4.0.2':
5799 dependencies:
@@ -5810,15 +5830,15 @@ snapshots:
5830
5831 '@singulio/app-auth-search@0.0.3':
5832 dependencies:
5813 - algoliasearch: 5.50.1
5833 + algoliasearch: 5.50.2
5834
5835 '@standard-schema/spec@1.1.0': {}
5836
5817 - '@stylistic/eslint-plugin@5.10.0(eslint@10.2.0(jiti@2.6.1))':
5837 + '@stylistic/eslint-plugin@5.10.0(eslint@10.2.1(jiti@2.6.1))':
5838 dependencies:
5819 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
5839 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
5840 '@typescript-eslint/types': 8.58.2
5821 - eslint: 10.2.0(jiti@2.6.1)
5841 + eslint: 10.2.1(jiti@2.6.1)
5842 eslint-visitor-keys: 4.2.1
5843 espree: 10.4.0
5844 estraverse: 5.3.0
@@ -5939,6 +5959,8 @@ snapshots:
5959 dependencies:
5960 '@types/node': 25.6.0
5961
5962 + '@types/katex@0.16.8': {}
5963 +
5964 '@types/linkify-it@5.0.0': {}
5965
5966 '@types/lodash-es@4.17.12':
@@ -5982,15 +6004,15 @@ snapshots:
6004
6005 '@types/web-bluetooth@0.0.21': {}
6006
5985 - '@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)':
6007 + '@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
6008 dependencies:
6009 '@eslint-community/regexpp': 4.12.2
5988 - '@typescript-eslint/parser': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
6010 + '@typescript-eslint/parser': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6011 '@typescript-eslint/scope-manager': 8.58.2
5990 - '@typescript-eslint/type-utils': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
5991 - '@typescript-eslint/utils': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
6012 + '@typescript-eslint/type-utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6013 + '@typescript-eslint/utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6014 '@typescript-eslint/visitor-keys': 8.58.2
5993 - eslint: 10.2.0(jiti@2.6.1)
6015 + eslint: 10.2.1(jiti@2.6.1)
6016 ignore: 7.0.5
6017 natural-compare: 1.4.0
6018 ts-api-utils: 2.5.0(typescript@5.9.3)
@@ -5998,14 +6020,14 @@ snapshots:
6020 transitivePeerDependencies:
6021 - supports-color
6022
6001 - '@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)':
6023 + '@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
6024 dependencies:
6025 '@typescript-eslint/scope-manager': 8.58.2
6026 '@typescript-eslint/types': 8.58.2
6027 '@typescript-eslint/typescript-estree': 8.58.2(typescript@5.9.3)
6028 '@typescript-eslint/visitor-keys': 8.58.2
6029 debug: 4.4.3
6008 - eslint: 10.2.0(jiti@2.6.1)
6030 + eslint: 10.2.1(jiti@2.6.1)
6031 typescript: 5.9.3
6032 transitivePeerDependencies:
6033 - supports-color
@@ -6019,13 +6041,13 @@ snapshots:
6041 transitivePeerDependencies:
6042 - supports-color
6043
6022 - '@typescript-eslint/rule-tester@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)':
6044 + '@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
6045 dependencies:
6024 - '@typescript-eslint/parser': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
6046 + '@typescript-eslint/parser': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6047 '@typescript-eslint/typescript-estree': 8.58.2(typescript@5.9.3)
6026 - '@typescript-eslint/utils': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
6048 + '@typescript-eslint/utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6049 ajv: 6.14.0
6028 - eslint: 10.2.0(jiti@2.6.1)
6050 + eslint: 10.2.1(jiti@2.6.1)
6051 json-stable-stringify-without-jsonify: 1.0.1
6052 lodash.merge: 4.6.2
6053 semver: 7.7.4
@@ -6042,13 +6064,13 @@ snapshots:
6064 dependencies:
6065 typescript: 5.9.3
6066
6045 - '@typescript-eslint/type-utils@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)':
6067 + '@typescript-eslint/type-utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
6068 dependencies:
6069 '@typescript-eslint/types': 8.58.2
6070 '@typescript-eslint/typescript-estree': 8.58.2(typescript@5.9.3)
6049 - '@typescript-eslint/utils': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
6071 + '@typescript-eslint/utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6072 debug: 4.4.3
6051 - eslint: 10.2.0(jiti@2.6.1)
6073 + eslint: 10.2.1(jiti@2.6.1)
6074 ts-api-utils: 2.5.0(typescript@5.9.3)
6075 typescript: 5.9.3
6076 transitivePeerDependencies:
@@ -6071,13 +6093,13 @@ snapshots:
6093 transitivePeerDependencies:
6094 - supports-color
6095
6074 - '@typescript-eslint/utils@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)':
6096 + '@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)':
6097 dependencies:
6076 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
6098 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
6099 '@typescript-eslint/scope-manager': 8.58.2
6100 '@typescript-eslint/types': 8.58.2
6101 '@typescript-eslint/typescript-estree': 8.58.2(typescript@5.9.3)
6080 - eslint: 10.2.0(jiti@2.6.1)
6102 + eslint: 10.2.1(jiti@2.6.1)
6103 typescript: 5.9.3
6104 transitivePeerDependencies:
6105 - supports-color
@@ -6094,7 +6116,7 @@ snapshots:
6116 '@babel/core': 7.29.0
6117 '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
6118 '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
6097 - '@rolldown/pluginutils': 1.0.0-rc.15
6119 + '@rolldown/pluginutils': 1.0.0-rc.16
6120 '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0)
6121 vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
6122 vue: 3.5.32(typescript@5.9.3)
@@ -6107,13 +6129,13 @@ snapshots:
6129 vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)
6130 vue: 3.5.32(typescript@5.9.3)
6131
6110 - '@vitest/eslint-plugin@1.6.15(@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)(vitest@4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)))':
6132 + '@vitest/eslint-plugin@1.6.16(@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)(vitest@4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3)))':
6133 dependencies:
6134 '@typescript-eslint/scope-manager': 8.58.2
6113 - '@typescript-eslint/utils': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
6114 - eslint: 10.2.0(jiti@2.6.1)
6135 + '@typescript-eslint/utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6136 + eslint: 10.2.1(jiti@2.6.1)
6137 optionalDependencies:
6116 - '@typescript-eslint/eslint-plugin': 8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
6138 + '@typescript-eslint/eslint-plugin': 8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
6139 typescript: 5.9.3
6140 vitest: 4.1.4(@types/node@25.6.0)(jsdom@29.0.2)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.99.0)(yaml@2.8.3))
6141 transitivePeerDependencies:
@@ -6262,7 +6284,7 @@ snapshots:
6284 '@vue/shared': 3.5.32
6285 estree-walker: 2.0.2
6286 magic-string: 0.30.21
6265 - postcss: 8.5.9
6287 + postcss: 8.5.10
6288 source-map-js: 1.2.1
6289
6290 '@vue/compiler-ssr@3.5.32':
@@ -6309,7 +6331,7 @@ snapshots:
6331
6332 '@vue/devtools-shared@8.1.1': {}
6333
6312 - '@vue/language-core@3.2.6':
6334 + '@vue/language-core@3.2.7':
6335 dependencies:
6336 '@volar/language-core': 2.4.28
6337 '@vue/compiler-dom': 3.5.32
@@ -6410,22 +6432,22 @@ snapshots:
6432 json-schema-traverse: 0.4.1
6433 uri-js: 4.4.1
6434
6413 - algoliasearch@5.50.1:
6414 - dependencies:
6415 - '@algolia/abtesting': 1.16.1
6416 - '@algolia/client-abtesting': 5.50.1
6417 - '@algolia/client-analytics': 5.50.1
6418 - '@algolia/client-common': 5.50.1
6419 - '@algolia/client-insights': 5.50.1
6420 - '@algolia/client-personalization': 5.50.1
6421 - '@algolia/client-query-suggestions': 5.50.1
6422 - '@algolia/client-search': 5.50.1
6423 - '@algolia/ingestion': 1.50.1
6424 - '@algolia/monitoring': 1.50.1
6425 - '@algolia/recommend': 5.50.1
6426 - '@algolia/requester-browser-xhr': 5.50.1
6427 - '@algolia/requester-fetch': 5.50.1
6428 - '@algolia/requester-node-http': 5.50.1
6435 + algoliasearch@5.50.2:
6436 + dependencies:
6437 + '@algolia/abtesting': 1.16.2
6438 + '@algolia/client-abtesting': 5.50.2
6439 + '@algolia/client-analytics': 5.50.2
6440 + '@algolia/client-common': 5.50.2
6441 + '@algolia/client-insights': 5.50.2
6442 + '@algolia/client-personalization': 5.50.2
6443 + '@algolia/client-query-suggestions': 5.50.2
6444 + '@algolia/client-search': 5.50.2
6445 + '@algolia/ingestion': 1.50.2
6446 + '@algolia/monitoring': 1.50.2
6447 + '@algolia/recommend': 5.50.2
6448 + '@algolia/requester-browser-xhr': 5.50.2
6449 + '@algolia/requester-fetch': 5.50.2
6450 + '@algolia/requester-node-http': 5.50.2
6451
6452 alien-signals@3.1.2: {}
6453
@@ -6479,7 +6501,7 @@ snapshots:
6501
6502 asynckit@0.4.0: {}
6503
6482 - axios@1.15.0(debug@4.4.3):
6504 + axios@1.15.1(debug@4.4.3):
6505 dependencies:
6506 follow-redirects: 1.16.0(debug@4.4.3)
6507 form-data: 4.0.5
@@ -6497,7 +6519,7 @@ snapshots:
6519
6520 balanced-match@4.0.4: {}
6521
6500 - baseline-browser-mapping@2.10.18: {}
6522 + baseline-browser-mapping@2.10.20: {}
6523
6524 bidi-js@1.0.3:
6525 dependencies:
@@ -6533,9 +6555,9 @@ snapshots:
6555
6556 browserslist@4.28.2:
6557 dependencies:
6536 - baseline-browser-mapping: 2.10.18
6537 - caniuse-lite: 1.0.30001787
6538 - electron-to-chromium: 1.5.335
6558 + baseline-browser-mapping: 2.10.20
6559 + caniuse-lite: 1.0.30001788
6560 + electron-to-chromium: 1.5.340
6561 node-releases: 2.0.37
6562 update-browserslist-db: 1.2.3(browserslist@4.28.2)
6563
@@ -6583,7 +6605,7 @@ snapshots:
6605
6606 camelcase@6.3.0: {}
6607
6586 - caniuse-lite@1.0.30001787: {}
6608 + caniuse-lite@1.0.30001788: {}
6609
6610 ccount@2.0.1: {}
6611
@@ -6650,7 +6672,7 @@ snapshots:
6672 '@codemirror/lint': 6.9.5
6673 '@codemirror/search': 6.6.0
6674 '@codemirror/state': 6.6.0
6653 - '@codemirror/view': 6.41.0
6675 + '@codemirror/view': 6.41.1
6676
6677 color-convert@2.0.1:
6678 dependencies:
@@ -6674,6 +6696,8 @@ snapshots:
6696
6697 commander@7.2.0: {}
6698
6699 + commander@8.3.0: {}
6700 +
6701 comment-parser@1.4.5: {}
6702
6703 comment-parser@1.4.6: {}
@@ -6900,7 +6924,7 @@ snapshots:
6924 minimatch: 9.0.9
6925 semver: 7.7.4
6926
6903 - electron-to-chromium@1.5.335: {}
6927 + electron-to-chromium@1.5.340: {}
6928
6929 emoji-regex@8.0.0: {}
6930
@@ -6947,7 +6971,7 @@ snapshots:
6971 es-errors: 1.3.0
6972 get-intrinsic: 1.3.0
6973 has-tostringtag: 1.0.2
6950 - hasown: 2.0.2
6974 + hasown: 2.0.3
6975
6976 esbuild@0.27.7:
6977 optionalDependencies:
@@ -6986,62 +7010,62 @@ snapshots:
7010
7011 escape-string-regexp@5.0.0: {}
7012
6989 - eslint-compat-utils@0.5.1(eslint@10.2.0(jiti@2.6.1)):
7013 + eslint-compat-utils@0.5.1(eslint@10.2.1(jiti@2.6.1)):
7014 dependencies:
6991 - eslint: 10.2.0(jiti@2.6.1)
7015 + eslint: 10.2.1(jiti@2.6.1)
7016 semver: 7.7.4
7017
6994 - eslint-config-flat-gitignore@2.3.0(eslint@10.2.0(jiti@2.6.1)):
7018 + eslint-config-flat-gitignore@2.3.0(eslint@10.2.1(jiti@2.6.1)):
7019 dependencies:
6996 - '@eslint/compat': 2.0.5(eslint@10.2.0(jiti@2.6.1))
6997 - eslint: 10.2.0(jiti@2.6.1)
7020 + '@eslint/compat': 2.0.5(eslint@10.2.1(jiti@2.6.1))
7021 + eslint: 10.2.1(jiti@2.6.1)
7022
7023 eslint-flat-config-utils@3.1.0:
7024 dependencies:
7025 '@eslint/config-helpers': 0.5.5
7026 pathe: 2.0.3
7027
7004 - eslint-json-compat-utils@0.2.3(eslint@10.2.0(jiti@2.6.1))(jsonc-eslint-parser@3.1.0):
7028 + eslint-json-compat-utils@0.2.3(eslint@10.2.1(jiti@2.6.1))(jsonc-eslint-parser@3.1.0):
7029 dependencies:
7006 - eslint: 10.2.0(jiti@2.6.1)
7030 + eslint: 10.2.1(jiti@2.6.1)
7031 esquery: 1.7.0
7032 jsonc-eslint-parser: 3.1.0
7033
7010 - eslint-merge-processors@2.0.0(eslint@10.2.0(jiti@2.6.1)):
7034 + eslint-merge-processors@2.0.0(eslint@10.2.1(jiti@2.6.1)):
7035 dependencies:
7012 - eslint: 10.2.0(jiti@2.6.1)
7036 + eslint: 10.2.1(jiti@2.6.1)
7037
7014 - eslint-plugin-antfu@3.2.2(eslint@10.2.0(jiti@2.6.1)):
7038 + eslint-plugin-antfu@3.2.2(eslint@10.2.1(jiti@2.6.1)):
7039 dependencies:
7016 - eslint: 10.2.0(jiti@2.6.1)
7040 + eslint: 10.2.1(jiti@2.6.1)
7041
7018 - eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1)):
7042 + eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3))(@typescript-eslint/utils@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1)):
7043 dependencies:
7044 '@es-joy/jsdoccomment': 0.84.0
7021 - '@typescript-eslint/rule-tester': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
7045 + '@typescript-eslint/rule-tester': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
7046 '@typescript-eslint/typescript-estree': 8.58.2(typescript@5.9.3)
7023 - '@typescript-eslint/utils': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
7024 - eslint: 10.2.0(jiti@2.6.1)
7047 + '@typescript-eslint/utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
7048 + eslint: 10.2.1(jiti@2.6.1)
7049
7026 - eslint-plugin-depend@1.5.0(eslint@10.2.0(jiti@2.6.1)):
7050 + eslint-plugin-depend@1.5.0(eslint@10.2.1(jiti@2.6.1)):
7051 dependencies:
7052 empathic: 2.0.0
7029 - eslint: 10.2.0(jiti@2.6.1)
7053 + eslint: 10.2.1(jiti@2.6.1)
7054 module-replacements: 2.11.0
7055 semver: 7.7.4
7056
7033 - eslint-plugin-es-x@7.8.0(eslint@10.2.0(jiti@2.6.1)):
7057 + eslint-plugin-es-x@7.8.0(eslint@10.2.1(jiti@2.6.1)):
7058 dependencies:
7035 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
7059 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
7060 '@eslint-community/regexpp': 4.12.2
7037 - eslint: 10.2.0(jiti@2.6.1)
7038 - eslint-compat-utils: 0.5.1(eslint@10.2.0(jiti@2.6.1))
7061 + eslint: 10.2.1(jiti@2.6.1)
7062 + eslint-compat-utils: 0.5.1(eslint@10.2.1(jiti@2.6.1))
7063
7040 - eslint-plugin-import-lite@0.5.2(eslint@10.2.0(jiti@2.6.1)):
7064 + eslint-plugin-import-lite@0.6.0(eslint@10.2.1(jiti@2.6.1)):
7065 dependencies:
7042 - eslint: 10.2.0(jiti@2.6.1)
7066 + eslint: 10.2.1(jiti@2.6.1)
7067
7044 - eslint-plugin-jsdoc@62.9.0(eslint@10.2.0(jiti@2.6.1)):
7068 + eslint-plugin-jsdoc@62.9.0(eslint@10.2.1(jiti@2.6.1)):
7069 dependencies:
7070 '@es-joy/jsdoccomment': 0.86.0
7071 '@es-joy/resolve.exports': 1.2.0
@@ -7049,7 +7073,7 @@ snapshots:
7073 comment-parser: 1.4.6
7074 debug: 4.4.3
7075 escape-string-regexp: 4.0.0
7052 - eslint: 10.2.0(jiti@2.6.1)
7076 + eslint: 10.2.1(jiti@2.6.1)
7077 espree: 11.2.0
7078 esquery: 1.7.0
7079 html-entities: 2.6.0
@@ -7061,28 +7085,28 @@ snapshots:
7085 transitivePeerDependencies:
7086 - supports-color
7087
7064 - eslint-plugin-jsonc@3.1.2(eslint@10.2.0(jiti@2.6.1)):
7088 + eslint-plugin-jsonc@3.1.2(eslint@10.2.1(jiti@2.6.1)):
7089 dependencies:
7066 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
7090 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
7091 '@eslint/core': 1.2.1
7092 '@eslint/plugin-kit': 0.6.1
7093 '@ota-meshi/ast-token-store': 0.3.0
7094 diff-sequences: 29.6.3
7071 - eslint: 10.2.0(jiti@2.6.1)
7072 - eslint-json-compat-utils: 0.2.3(eslint@10.2.0(jiti@2.6.1))(jsonc-eslint-parser@3.1.0)
7095 + eslint: 10.2.1(jiti@2.6.1)
7096 + eslint-json-compat-utils: 0.2.3(eslint@10.2.1(jiti@2.6.1))(jsonc-eslint-parser@3.1.0)
7097 jsonc-eslint-parser: 3.1.0
7098 natural-compare: 1.4.0
7099 synckit: 0.11.12
7100 transitivePeerDependencies:
7101 - '@eslint/json'
7102
7079 - eslint-plugin-n@17.24.0(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3):
7103 + eslint-plugin-n@17.24.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3):
7104 dependencies:
7081 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
7105 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
7106 enhanced-resolve: 5.20.1
7083 - eslint: 10.2.0(jiti@2.6.1)
7084 - eslint-plugin-es-x: 7.8.0(eslint@10.2.0(jiti@2.6.1))
7085 - get-tsconfig: 4.13.7
7107 + eslint: 10.2.1(jiti@2.6.1)
7108 + eslint-plugin-es-x: 7.8.0(eslint@10.2.1(jiti@2.6.1))
7109 + get-tsconfig: 4.14.0
7110 globals: 15.15.0
7111 globrex: 0.1.2
7112 ignore: 5.3.2
@@ -7093,19 +7117,19 @@ snapshots:
7117
7118 eslint-plugin-no-only-tests@3.3.0: {}
7119
7096 - eslint-plugin-perfectionist@5.8.0(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3):
7120 + eslint-plugin-perfectionist@5.9.0(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3):
7121 dependencies:
7098 - '@typescript-eslint/utils': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
7099 - eslint: 10.2.0(jiti@2.6.1)
7122 + '@typescript-eslint/utils': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
7123 + eslint: 10.2.1(jiti@2.6.1)
7124 natural-orderby: 5.0.0
7125 transitivePeerDependencies:
7126 - supports-color
7127 - typescript
7128
7105 - eslint-plugin-pnpm@1.6.0(eslint@10.2.0(jiti@2.6.1)):
7129 + eslint-plugin-pnpm@1.6.0(eslint@10.2.1(jiti@2.6.1)):
7130 dependencies:
7131 empathic: 2.0.0
7108 - eslint: 10.2.0(jiti@2.6.1)
7132 + eslint: 10.2.1(jiti@2.6.1)
7133 jsonc-eslint-parser: 3.1.0
7134 pathe: 2.0.3
7135 pnpm-workspace-yaml: 1.6.0
@@ -7113,39 +7137,39 @@ snapshots:
7137 yaml: 2.8.3
7138 yaml-eslint-parser: 2.0.0
7139
7116 - eslint-plugin-regexp@3.1.0(eslint@10.2.0(jiti@2.6.1)):
7140 + eslint-plugin-regexp@3.1.0(eslint@10.2.1(jiti@2.6.1)):
7141 dependencies:
7118 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
7142 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
7143 '@eslint-community/regexpp': 4.12.2
7144 comment-parser: 1.4.6
7121 - eslint: 10.2.0(jiti@2.6.1)
7145 + eslint: 10.2.1(jiti@2.6.1)
7146 jsdoc-type-pratt-parser: 7.2.0
7147 refa: 0.12.1
7148 regexp-ast-analysis: 0.7.1
7149 scslre: 0.3.0
7150
7127 - eslint-plugin-toml@1.3.1(eslint@10.2.0(jiti@2.6.1)):
7151 + eslint-plugin-toml@1.3.1(eslint@10.2.1(jiti@2.6.1)):
7152 dependencies:
7153 '@eslint/core': 1.2.1
7154 '@eslint/plugin-kit': 0.6.1
7155 '@ota-meshi/ast-token-store': 0.3.0
7156 debug: 4.4.3
7133 - eslint: 10.2.0(jiti@2.6.1)
7157 + eslint: 10.2.1(jiti@2.6.1)
7158 toml-eslint-parser: 1.0.3
7159 transitivePeerDependencies:
7160 - supports-color
7161
7138 - eslint-plugin-unicorn@63.0.0(eslint@10.2.0(jiti@2.6.1)):
7162 + eslint-plugin-unicorn@64.0.0(eslint@10.2.1(jiti@2.6.1)):
7163 dependencies:
7164 '@babel/helper-validator-identifier': 7.28.5
7141 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
7165 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
7166 change-case: 5.4.4
7167 ci-info: 4.4.0
7168 clean-regexp: 1.0.0
7169 core-js-compat: 3.49.0
7146 - eslint: 10.2.0(jiti@2.6.1)
7170 + eslint: 10.2.1(jiti@2.6.1)
7171 find-up-simple: 1.0.1
7148 - globals: 16.5.0
7172 + globals: 17.5.0
7173 indent-string: 5.0.0
7174 is-builtin-module: 5.0.0
7175 jsesc: 3.1.0
@@ -7155,27 +7179,27 @@ snapshots:
7179 semver: 7.7.4
7180 strip-indent: 4.1.1
7181
7158 - eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1)):
7182 + eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1)):
7183 dependencies:
7160 - eslint: 10.2.0(jiti@2.6.1)
7184 + eslint: 10.2.1(jiti@2.6.1)
7185 optionalDependencies:
7162 - '@typescript-eslint/eslint-plugin': 8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
7186 + '@typescript-eslint/eslint-plugin': 8.58.2(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
7187
7164 - eslint-plugin-vue@10.8.0(@stylistic/eslint-plugin@5.10.0(eslint@10.2.0(jiti@2.6.1)))(@typescript-eslint/parser@8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.0(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.2.0(jiti@2.6.1))):
7188 + eslint-plugin-vue@10.8.0(@stylistic/eslint-plugin@5.10.0(eslint@10.2.1(jiti@2.6.1)))(@typescript-eslint/parser@8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3))(eslint@10.2.1(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.2.1(jiti@2.6.1))):
7189 dependencies:
7166 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
7167 - eslint: 10.2.0(jiti@2.6.1)
7190 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
7191 + eslint: 10.2.1(jiti@2.6.1)
7192 natural-compare: 1.4.0
7193 nth-check: 2.1.1
7194 postcss-selector-parser: 7.1.1
7195 semver: 7.7.4
7172 - vue-eslint-parser: 10.4.0(eslint@10.2.0(jiti@2.6.1))
7196 + vue-eslint-parser: 10.4.0(eslint@10.2.1(jiti@2.6.1))
7197 xml-name-validator: 4.0.0
7198 optionalDependencies:
7175 - '@stylistic/eslint-plugin': 5.10.0(eslint@10.2.0(jiti@2.6.1))
7176 - '@typescript-eslint/parser': 8.58.2(eslint@10.2.0(jiti@2.6.1))(typescript@5.9.3)
7199 + '@stylistic/eslint-plugin': 5.10.0(eslint@10.2.1(jiti@2.6.1))
7200 + '@typescript-eslint/parser': 8.58.2(eslint@10.2.1(jiti@2.6.1))(typescript@5.9.3)
7201
7178 - eslint-plugin-yml@3.3.1(eslint@10.2.0(jiti@2.6.1)):
7202 + eslint-plugin-yml@3.3.1(eslint@10.2.1(jiti@2.6.1)):
7203 dependencies:
7204 '@eslint/core': 1.2.1
7205 '@eslint/plugin-kit': 0.6.1
@@ -7183,16 +7207,16 @@ snapshots:
7207 debug: 4.4.3
7208 diff-sequences: 29.6.3
7209 escape-string-regexp: 5.0.0
7186 - eslint: 10.2.0(jiti@2.6.1)
7210 + eslint: 10.2.1(jiti@2.6.1)
7211 natural-compare: 1.4.0
7212 yaml-eslint-parser: 2.0.0
7213 transitivePeerDependencies:
7214 - supports-color
7215
7192 - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.32)(eslint@10.2.0(jiti@2.6.1)):
7216 + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.32)(eslint@10.2.1(jiti@2.6.1)):
7217 dependencies:
7218 '@vue/compiler-sfc': 3.5.32
7195 - eslint: 10.2.0(jiti@2.6.1)
7219 + eslint: 10.2.1(jiti@2.6.1)
7220
7221 eslint-scope@9.1.2:
7222 dependencies:
@@ -7207,15 +7231,15 @@ snapshots:
7231
7232 eslint-visitor-keys@5.0.1: {}
7233
7210 - eslint@10.2.0(jiti@2.6.1):
7234 + eslint@10.2.1(jiti@2.6.1):
7235 dependencies:
7212 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
7236 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.1(jiti@2.6.1))
7237 '@eslint-community/regexpp': 4.12.2
7238 '@eslint/config-array': 0.23.5
7239 '@eslint/config-helpers': 0.5.5
7240 '@eslint/core': 1.2.1
7241 '@eslint/plugin-kit': 0.7.1
7218 - '@humanfs/node': 0.16.7
7242 + '@humanfs/node': 0.16.8
7243 '@humanwhocodes/module-importer': 1.0.1
7244 '@humanwhocodes/retry': 0.4.3
7245 '@types/estree': 1.0.8
@@ -7336,13 +7360,14 @@ snapshots:
7360 dependencies:
7361 fast-string-width: 1.1.0
7362
7339 - fast-xml-builder@1.1.4:
7363 + fast-xml-builder@1.1.5:
7364 dependencies:
7365 path-expression-matcher: 1.5.0
7366
7343 - fast-xml-parser@5.5.12:
7367 + fast-xml-parser@5.7.1:
7368 dependencies:
7345 - fast-xml-builder: 1.1.4
7369 + '@nodable/entities': 2.1.0
7370 + fast-xml-builder: 1.1.5
7371 path-expression-matcher: 1.5.0
7372 strnum: 2.2.3
7373
@@ -7405,7 +7430,7 @@ snapshots:
7430 asynckit: 0.4.0
7431 combined-stream: 1.0.8
7432 es-set-tostringtag: 2.1.0
7408 - hasown: 2.0.2
7433 + hasown: 2.0.3
7434 mime-types: 2.1.35
7435
7436 format@0.2.2: {}
@@ -7441,7 +7466,7 @@ snapshots:
7466 get-proto: 1.0.1
7467 gopd: 1.2.0
7468 has-symbols: 1.1.0
7444 - hasown: 2.0.2
7469 + hasown: 2.0.3
7470 math-intrinsics: 1.1.0
7471
7472 get-proto@1.0.1:
@@ -7455,7 +7480,7 @@ snapshots:
7480
7481 get-stream@6.0.1: {}
7482
7458 - get-tsconfig@4.13.7:
7483 + get-tsconfig@4.14.0:
7484 dependencies:
7485 resolve-pkg-maps: 1.0.0
7486
@@ -7497,8 +7522,6 @@ snapshots:
7522
7523 globals@15.15.0: {}
7524
7500 - globals@16.5.0: {}
7501 -
7525 globals@17.5.0: {}
7526
7527 globrex@0.1.2: {}
@@ -7513,7 +7536,7 @@ snapshots:
7536 dependencies:
7537 has-symbols: 1.1.0
7538
7516 - hasown@2.0.2:
7539 + hasown@2.0.3:
7540 dependencies:
7541 function-bind: 1.1.2
7542
@@ -7595,7 +7618,7 @@ snapshots:
7618
7619 is-core-module@2.16.1:
7620 dependencies:
7598 - hasown: 2.0.2
7621 + hasown: 2.0.3
7622
7623 is-docker@2.2.1: {}
7624
@@ -7629,7 +7652,7 @@ snapshots:
7652 call-bound: 1.0.4
7653 gopd: 1.2.0
7654 has-tostringtag: 1.0.2
7632 - hasown: 2.0.2
7655 + hasown: 2.0.3
7656
7657 is-stream@2.0.1: {}
7658
@@ -7714,8 +7737,8 @@ snapshots:
7737
7738 jsdom@29.0.2:
7739 dependencies:
7717 - '@asamuzakjp/css-color': 5.1.10
7718 - '@asamuzakjp/dom-selector': 7.0.9
7740 + '@asamuzakjp/css-color': 5.1.11
7741 + '@asamuzakjp/dom-selector': 7.1.1
7742 '@bramus/specificity': 2.4.2
7743 '@csstools/css-syntax-patches-for-csstree': 1.1.3(css-tree@3.2.1)
7744 '@exodus/bytes': 1.15.0
@@ -7769,6 +7792,10 @@ snapshots:
7792 is-promise: 2.2.2
7793 promise: 7.3.1
7794
7795 + katex@0.16.45:
7796 + dependencies:
7797 + commander: 8.3.0
7798 +
7799 keyv@4.5.4:
7800 dependencies:
7801 json-buffer: 3.0.1
@@ -7990,6 +8017,18 @@ snapshots:
8017 transitivePeerDependencies:
8018 - supports-color
8019
8020 + mdast-util-math@3.0.0:
8021 + dependencies:
8022 + '@types/hast': 3.0.4
8023 + '@types/mdast': 4.0.4
8024 + devlop: 1.1.0
8025 + longest-streak: 3.1.0
8026 + mdast-util-from-markdown: 2.0.3
8027 + mdast-util-to-markdown: 2.1.2
8028 + unist-util-remove-position: 5.0.0
8029 + transitivePeerDependencies:
8030 + - supports-color
8031 +
8032 mdast-util-phrasing@4.1.0:
8033 dependencies:
8034 '@types/mdast': 4.0.4
@@ -8121,6 +8160,16 @@ snapshots:
8160 micromark-util-combine-extensions: 2.0.1
8161 micromark-util-types: 2.0.2
8162
8163 + micromark-extension-math@3.1.0:
8164 + dependencies:
8165 + '@types/katex': 0.16.8
8166 + devlop: 1.1.0
8167 + katex: 0.16.45
8168 + micromark-factory-space: 2.0.1
8169 + micromark-util-character: 2.1.1
8170 + micromark-util-symbol: 2.0.1
8171 + micromark-util-types: 2.0.2
8172 +
8173 micromark-factory-destination@2.0.1:
8174 dependencies:
8175 micromark-util-character: 2.1.1
@@ -8319,7 +8368,7 @@ snapshots:
8368
8369 nanoid@3.3.11: {}
8370
8322 - nanoid@5.1.7: {}
8371 + nanoid@5.1.9: {}
8372
8373 natural-compare@1.4.0: {}
8374
@@ -8388,11 +8437,11 @@ snapshots:
8437 dependencies:
8438 mimic-function: 5.0.1
8439
8391 - oniguruma-parser@0.12.1: {}
8440 + oniguruma-parser@0.12.2: {}
8441
8393 - oniguruma-to-es@4.3.5:
8442 + oniguruma-to-es@4.3.6:
8443 dependencies:
8395 - oniguruma-parser: 0.12.1
8444 + oniguruma-parser: 0.12.2
8445 regex: 6.1.0
8446 regex-recursion: 6.0.2
8447
@@ -8540,7 +8589,7 @@ snapshots:
8589 cssesc: 3.0.0
8590 util-deprecate: 1.0.2
8591
8543 - postcss@8.5.9:
8592 + postcss@8.5.10:
8593 dependencies:
8594 nanoid: 3.3.11
8595 picocolors: 1.1.1
@@ -8548,11 +8597,11 @@ snapshots:
8597
8598 prelude-ls@1.2.1: {}
8599
8551 - prettier-plugin-tailwindcss@0.7.2(prettier@3.8.2):
8600 + prettier-plugin-tailwindcss@0.7.2(prettier@3.8.3):
8601 dependencies:
8553 - prettier: 3.8.2
8602 + prettier: 3.8.3
8603
8555 - prettier@3.8.2: {}
8604 + prettier@3.8.3: {}
8605
8606 promise@7.3.1:
8607 dependencies:
@@ -8729,44 +8778,44 @@ snapshots:
8778
8779 rfdc@1.4.1: {}
8780
8732 - rollup-plugin-visualizer@5.14.0(rollup@4.60.1):
8781 + rollup-plugin-visualizer@5.14.0(rollup@4.60.2):
8782 dependencies:
8783 open: 8.4.2
8784 picomatch: 4.0.4
8785 source-map: 0.7.6
8786 yargs: 17.7.2
8787 optionalDependencies:
8739 - rollup: 4.60.1
8788 + rollup: 4.60.2
8789
8741 - rollup@4.60.1:
8790 + rollup@4.60.2:
8791 dependencies:
8792 '@types/estree': 1.0.8
8793 optionalDependencies:
8745 - '@rollup/rollup-android-arm-eabi': 4.60.1
8746 - '@rollup/rollup-android-arm64': 4.60.1
8747 - '@rollup/rollup-darwin-arm64': 4.60.1
8748 - '@rollup/rollup-darwin-x64': 4.60.1
8749 - '@rollup/rollup-freebsd-arm64': 4.60.1
8750 - '@rollup/rollup-freebsd-x64': 4.60.1
8751 - '@rollup/rollup-linux-arm-gnueabihf': 4.60.1
8752 - '@rollup/rollup-linux-arm-musleabihf': 4.60.1
8753 - '@rollup/rollup-linux-arm64-gnu': 4.60.1
8754 - '@rollup/rollup-linux-arm64-musl': 4.60.1
8755 - '@rollup/rollup-linux-loong64-gnu': 4.60.1
8756 - '@rollup/rollup-linux-loong64-musl': 4.60.1
8757 - '@rollup/rollup-linux-ppc64-gnu': 4.60.1
8758 - '@rollup/rollup-linux-ppc64-musl': 4.60.1
8759 - '@rollup/rollup-linux-riscv64-gnu': 4.60.1
8760 - '@rollup/rollup-linux-riscv64-musl': 4.60.1
8761 - '@rollup/rollup-linux-s390x-gnu': 4.60.1
8762 - '@rollup/rollup-linux-x64-gnu': 4.60.1
8763 - '@rollup/rollup-linux-x64-musl': 4.60.1
8764 - '@rollup/rollup-openbsd-x64': 4.60.1
8765 - '@rollup/rollup-openharmony-arm64': 4.60.1
8766 - '@rollup/rollup-win32-arm64-msvc': 4.60.1
8767 - '@rollup/rollup-win32-ia32-msvc': 4.60.1
8768 - '@rollup/rollup-win32-x64-gnu': 4.60.1
8769 - '@rollup/rollup-win32-x64-msvc': 4.60.1
8794 + '@rollup/rollup-android-arm-eabi': 4.60.2
8795 + '@rollup/rollup-android-arm64': 4.60.2
8796 + '@rollup/rollup-darwin-arm64': 4.60.2
8797 + '@rollup/rollup-darwin-x64': 4.60.2
8798 + '@rollup/rollup-freebsd-arm64': 4.60.2
8799 + '@rollup/rollup-freebsd-x64': 4.60.2
8800 + '@rollup/rollup-linux-arm-gnueabihf': 4.60.2
8801 + '@rollup/rollup-linux-arm-musleabihf': 4.60.2
8802 + '@rollup/rollup-linux-arm64-gnu': 4.60.2
8803 + '@rollup/rollup-linux-arm64-musl': 4.60.2
8804 + '@rollup/rollup-linux-loong64-gnu': 4.60.2
8805 + '@rollup/rollup-linux-loong64-musl': 4.60.2
8806 + '@rollup/rollup-linux-ppc64-gnu': 4.60.2
8807 + '@rollup/rollup-linux-ppc64-musl': 4.60.2
8808 + '@rollup/rollup-linux-riscv64-gnu': 4.60.2
8809 + '@rollup/rollup-linux-riscv64-musl': 4.60.2
8810 + '@rollup/rollup-linux-s390x-gnu': 4.60.2
8811 + '@rollup/rollup-linux-x64-gnu': 4.60.2
8812 + '@rollup/rollup-linux-x64-musl': 4.60.2
8813 + '@rollup/rollup-openbsd-x64': 4.60.2
8814 + '@rollup/rollup-openharmony-arm64': 4.60.2
8815 + '@rollup/rollup-win32-arm64-msvc': 4.60.2
8816 + '@rollup/rollup-win32-ia32-msvc': 4.60.2
8817 + '@rollup/rollup-win32-x64-gnu': 4.60.2
8818 + '@rollup/rollup-win32-x64-msvc': 4.60.2
8819 fsevents: 2.3.3
8820
8821 run-applescript@7.1.0: {}
@@ -8885,7 +8934,7 @@ snapshots:
8934 transitivePeerDependencies:
8935 - supports-color
8936
8888 - std-env@4.0.0: {}
8937 + std-env@4.1.0: {}
8938
8939 string-width@4.2.3:
8940 dependencies:
@@ -8969,11 +9018,11 @@ snapshots:
9018 unconfig: 7.5.0
9019 yaml: 2.8.3
9020
8972 - thememirror@2.0.1(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.41.0):
9021 + thememirror@2.0.1(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.41.1):
9022 dependencies:
9023 '@codemirror/language': 6.12.3
9024 '@codemirror/state': 6.6.0
8976 - '@codemirror/view': 6.41.0
9025 + '@codemirror/view': 6.41.1
9026
9027 tinybench@2.9.0: {}
9028
@@ -9044,7 +9093,7 @@ snapshots:
9093 dependencies:
9094 prelude-ls: 1.2.1
9095
9047 - type-fest@5.5.0:
9096 + type-fest@5.6.0:
9097 dependencies:
9098 tagged-tag: 1.0.0
9099
@@ -9089,6 +9138,11 @@ snapshots:
9138 dependencies:
9139 '@types/unist': 3.0.3
9140
9141 + unist-util-remove-position@5.0.0:
9142 + dependencies:
9143 + '@types/unist': 3.0.3
9144 + unist-util-visit: 5.1.0
9145 +
9146 unist-util-stringify-position@4.0.0:
9147 dependencies:
9148 '@types/unist': 3.0.3
@@ -9163,11 +9217,11 @@ snapshots:
9217 '@types/unist': 3.0.3
9218 vfile-message: 4.0.3
9219
9166 - vite-bundle-visualizer@1.2.1(rollup@4.60.1):
9220 + vite-bundle-visualizer@1.2.1(rollup@4.60.2):
9221 dependencies:
9222 cac: 6.7.14
9223 import-from-esm: 1.3.4
9170 - rollup-plugin-visualizer: 5.14.0(rollup@4.60.1)
9224 + rollup-plugin-visualizer: 5.14.0(rollup@4.60.2)
9225 tmp: 0.2.5
9226 transitivePeerDependencies:
9227 - rolldown
@@ -9243,8 +9297,8 @@ snapshots:
9297 esbuild: 0.27.7
9298 fdir: 6.5.0(picomatch@4.0.4)
9299 picomatch: 4.0.4
9246 - postcss: 8.5.9
9247 - rollup: 4.60.1
9300 + postcss: 8.5.10
9301 + rollup: 4.60.2
9302 tinyglobby: 0.2.16
9303 optionalDependencies:
9304 '@types/node': 25.6.0
@@ -9269,7 +9323,7 @@ snapshots:
9323 obug: 2.1.1
9324 pathe: 2.0.3
9325 picomatch: 4.0.4
9272 - std-env: 4.0.0
9326 + std-env: 4.1.0
9327 tinybench: 2.9.0
9328 tinyexec: 1.1.1
9329 tinyglobby: 0.2.16
@@ -9303,16 +9357,16 @@ snapshots:
9357 '@codemirror/commands': 6.10.3
9358 '@codemirror/language': 6.12.3
9359 '@codemirror/state': 6.6.0
9306 - '@codemirror/view': 6.41.0
9360 + '@codemirror/view': 6.41.1
9361 codemirror: 6.0.2
9362 vue: 3.5.32(typescript@5.9.3)
9363
9364 vue-component-type-helpers@2.2.12: {}
9365
9312 - vue-eslint-parser@10.4.0(eslint@10.2.0(jiti@2.6.1)):
9366 + vue-eslint-parser@10.4.0(eslint@10.2.1(jiti@2.6.1)):
9367 dependencies:
9368 debug: 4.4.3
9315 - eslint: 10.2.0(jiti@2.6.1)
9369 + eslint: 10.2.1(jiti@2.6.1)
9370 eslint-scope: 9.1.2
9371 eslint-visitor-keys: 5.0.1
9372 espree: 11.2.0
@@ -9362,10 +9416,10 @@ snapshots:
9416 dependencies:
9417 vue: 3.5.32(typescript@5.9.3)
9418
9365 - vue-tsc@3.2.6(typescript@5.9.3):
9419 + vue-tsc@3.2.7(typescript@5.9.3):
9420 dependencies:
9421 '@volar/typescript': 2.4.28
9368 - '@vue/language-core': 3.2.6
9422 + '@vue/language-core': 3.2.7
9423 typescript: 5.9.3
9424
9425 vue3-apexcharts@1.11.1(apexcharts@5.10.6)(vue@3.5.32(typescript@5.9.3)):
@@ -9411,7 +9465,7 @@ snapshots:
9465
9466 wait-on@9.0.5(debug@4.4.3):
9467 dependencies:
9414 - axios: 1.15.0(debug@4.4.3)
9468 + axios: 1.15.1(debug@4.4.3)
9469 joi: 18.1.2
9470 lodash: 4.18.1
9471 minimist: 1.2.8
frontend/src/api/endpoints/aiAnalyst.ts
+1 -1
@@ -1,5 +1,5 @@
1 -import type { FlaskBaseResponse } from "@/types/flask.d"
1 import type { AiAnalystIoc, AiAnalystJob, AiAnalystReport, AlertWithReport } from "@/types/aiAnalyst.d"
2 +import type { FlaskBaseResponse } from "@/types/flask.d"
3 import { HttpClient } from "../httpClient"
4
5 export default {
frontend/src/app-layouts/common/Navbar/items.tsx
+6 -6
@@ -6,19 +6,19 @@ import IncidentManagementIcon from "@/assets/icons/alert-settings-icon.svg"
6 import { renderIcon } from "@/utils"
7
8 const OverviewIcon = "carbon:dashboard"
9 -const IndiciesIcon = "ph:list-magnifying-glass"
9 +// const IndiciesIcon = "ph:list-magnifying-glass"
10 const AgentsIcon = "carbon:network-3"
11 -const ConnectorsIcon = "carbon:hybrid-networking"
11 +// const ConnectorsIcon = "carbon:hybrid-networking"
12 const GraylogIcon = "majesticons:pulse-line"
13 const AlertsIcon = "carbon:warning-hex"
14 -const ArtifactsIcon = "carbon:document-multiple-01"
14 +// const ArtifactsIcon = "carbon:document-multiple-01"
15 // const SocIcon = "carbon:security"
16 const HealthcheckIcon = "ph:heartbeat"
17 const CustomersIcon = "carbon:user-multiple"
18 -const ExternalServicesIcon = "carbon:ibm-cloud-direct-link-2-dedicated"
18 +// const ExternalServicesIcon = "carbon:ibm-cloud-direct-link-2-dedicated"
19 const ReportCreationIcon = "carbon:report-data"
20 -const SchedulerIcon = "material-symbols:autoplay"
21 -const CustomerPortalIcon = "streamline-ultimate:coding-apps-website-apps-browser"
20 +// const SchedulerIcon = "material-symbols:autoplay"
21 +// const CustomerPortalIcon = "streamline-ultimate:coding-apps-website-apps-browser"
22 const AiAnalystIcon = "carbon:machine-learning-model"
23 const ToolsIcon = "carbon:tool-box"
24 // const EventSearchIcon = "carbon:search-locate"
frontend/src/components/aiAnalyst/AlertsReportsList.vue
+1 -1
@@ -1,6 +1,6 @@
1 <template>
2 <div class="alerts-reports-list @container">
3 - <div ref="header" class="flex items-center justify-between gap-2">
3 + <div class="flex items-center justify-between gap-2">
4 <div class="flex items-center gap-2">
5 <div class="flex items-center gap-1 text-sm">
6 <span>Total</span>
frontend/src/components/aiAnalyst/TalonChat.vue
+1 -1
@@ -123,8 +123,8 @@ import Api from "@/api"
123 import Icon from "@/components/common/Icon.vue"
124 import Markdown from "@/components/common/Markdown.vue"
125 import { useSettingsStore } from "@/stores/settings"
126 -import { secureLocalStorage } from "@/utils/secure-storage"
126 import { formatDate } from "@/utils/format"
127 +import { secureLocalStorage } from "@/utils/secure-storage"
128
129 interface TalonMessage {
130 id: string
frontend/src/components/aiAnalyst/TalonOverview.vue
+8 -8
@@ -39,12 +39,12 @@
39 <SectionHeader title="How It Works" icon="carbon:flow" />
40 <div class="mt-3 grid grid-cols-1 gap-3 sm:grid-cols-2 lg:grid-cols-4">
41 <StepCard
42 - v-for="step in investigationSteps"
43 - :key="step.step"
44 - :step="step.step"
45 - :title="step.title"
46 - :description="step.description"
47 - :icon="step.icon"
42 + v-for="item in investigationSteps"
43 + :key="item.step"
44 + :step="item.step"
45 + :title="item.title"
46 + :description="item.description"
47 + :icon="item.icon"
48 />
49 </div>
50 </section>
@@ -100,7 +100,7 @@ const SectionHeader = defineComponent({
100 setup(props) {
101 return () =>
102 h("div", { class: "flex items-center gap-2" }, [
103 - h(Icon, { name: props.icon!, size: 18, class: "text-primary" }),
103 + h(Icon, { name: props.icon, size: 18, class: "text-primary" }),
104 h("h2", { class: "text-default text-lg font-semibold" }, props.title)
105 ])
106 }
@@ -132,7 +132,7 @@ const FeatureCard = defineComponent({
132 h(
133 "div",
134 { class: "bg-primary/10 flex h-9 w-9 shrink-0 items-center justify-center rounded-lg" },
135 - h(Icon, { name: props.icon!, size: 16, class: "text-primary" })
135 + h(Icon, { name: props.icon, size: 16, class: "text-primary" })
136 ),
137 h("div", { class: "flex flex-col gap-1" }, [
138 h("div", { class: "text-default text-sm font-semibold" }, props.title),
frontend/src/components/artifacts/ArtifactsCollect.vue
+4 -4
@@ -327,19 +327,19 @@ function getData() {
327
328 Object.entries(parameterValues.value).forEach(([key, value]) => {
329 if (value !== undefined && value !== null && value !== "") {
330 - parameters.env!.push({ key, value })
330 + parameters.env?.push({ key, value })
331 }
332 })
333
334 const payload: CollectRequest = {
335 ...filters.value,
336 - hostname: filters.value.hostname!,
337 - artifact_name: filters.value.artifact_name!,
336 + hostname: filters.value.hostname || "",
337 + artifact_name: filters.value.artifact_name || "",
338 data_store_only: filters.value.data_store_only || false
339 }
340
341 // Only add parameters if there are any
342 - if (parameters.env!.length > 0) {
342 + if (parameters.env?.length && parameters.env.length > 0) {
343 payload.parameters = parameters
344 }
345
frontend/src/components/customers/aiTriggers/CustomerAITriggersForm.vue
+1 -3
@@ -2,7 +2,7 @@
2 <div class="customer-ai-triggers-form flex grow flex-col justify-between">
3 <div class="form-box">
4 <n-spin v-model:show="loading">
5 - <n-form ref="formRef" :label-width="80" :model="form">
5 + <n-form :label-width="80" :model="form">
6 <n-form-item label="Enabled" path="enabled">
7 <n-switch v-model:value="form.enabled" />
8 </n-form-item>
@@ -22,7 +22,6 @@
22 </template>
23
24 <script setup lang="ts">
25 -import type { FormInst } from "naive-ui"
25 import type { AITriggerPayload } from "@/api/endpoints/incidentManagement/aiTriggers"
26 import type { AITrigger } from "@/types/incidentManagement/aiTriggers.d"
27 import { NButton, NForm, NFormItem, NSpin, NSwitch, useMessage } from "naive-ui"
@@ -52,7 +51,6 @@ const emit = defineEmits<{
51
52 const message = useMessage()
53 const form = ref<AITriggerForm>(getClearForm(aiTrigger))
55 -const formRef = ref<FormInst | null>(null)
54 const loading = ref(false)
55
56 watch(loading, val => {
frontend/src/components/customers/eventSources/CustomerEventSourceForm.vue
+2 -2
@@ -87,7 +87,7 @@ function submit() {
87 .updateEventSource(props.editingSource.id, {
88 name: form.name,
89 index_pattern: form.index_pattern,
90 - event_type: form.event_type!,
90 + event_type: form.event_type || "",
91 time_field: form.time_field,
92 enabled: form.enabled
93 })
@@ -111,7 +111,7 @@ function submit() {
111 customer_code: props.customerCode,
112 name: form.name,
113 index_pattern: form.index_pattern,
114 - event_type: form.event_type!,
114 + event_type: form.event_type || "",
115 time_field: form.time_field,
116 enabled: form.enabled
117 })
frontend/src/components/dashboards/DashboardsBrowser.vue
+2 -3
@@ -57,9 +57,8 @@ const selectedCustomerCode = ref<string | null>(null)
57
58 // ── Enabled dashboards (lista aggiornata da EnabledDashboardsSection via v-model) ──
59 const enabledDashboards = ref<EnabledDashboard[]>([])
60 -const enabledDashboardsSectionRef = useTemplateRef<InstanceType<typeof EnabledDashboardsSection>>(
61 - "enabledDashboardsSectionRef"
62 -)
60 +const enabledDashboardsSectionRef =
61 + useTemplateRef<InstanceType<typeof EnabledDashboardsSection>>("enabledDashboardsSectionRef")
62
63 const customersOptions = computed(() =>
64 customersList.value.map(c => ({ label: `#${c.customer_code} - ${c.customer_name}`, value: c.customer_code }))
frontend/src/components/incidentManagement/alerts/AlertAiAnalyst.vue
+1 -2
@@ -47,7 +47,7 @@
47
48 <script setup lang="ts">
49 import type { TalonJobData } from "@/types/talon.d"
50 -import { NSpin, NSelect, NTabPane, NTabs, NTag, useMessage } from "naive-ui"
50 +import { NSelect, NSpin, NTabPane, NTabs, NTag } from "naive-ui"
51 import { computed, onBeforeMount, ref } from "vue"
52 import Api from "@/api"
53 import Icon from "@/components/common/Icon.vue"
@@ -59,7 +59,6 @@ const props = defineProps<{
59 alertId: number
60 }>()
61
62 -const message = useMessage()
62 const dFormats = useSettingsStore().dateFormat
63
64 const loading = ref(false)
frontend/src/components/incidentManagement/alerts/AlertOverview.vue
+1 -1
@@ -172,10 +172,10 @@
172 import type { Alert } from "@/types/incidentManagement/alerts.d"
173 import { NButton, NSpin, useDialog, useMessage } from "naive-ui"
174 import { computed, defineAsyncComponent, ref, toRefs } from "vue"
175 +import Api from "@/api"
176 import CardKV from "@/components/common/cards/CardKV.vue"
177 import Icon from "@/components/common/Icon.vue"
178 import { useNavigation } from "@/composables/useNavigation"
178 -import Api from "@/api"
179 import AssigneeIcon from "../common/AssigneeIcon.vue"
180 import StatusIcon from "../common/StatusIcon.vue"
181 import AlertAssignUser from "./AlertAssignUser.vue"
frontend/src/views/incidentManagement/AiAnalyst.vue
+3 -3
@@ -13,9 +13,9 @@
13 <n-tab-pane name="reports" tab="Reports" display-directive="show:lazy">
14 <AlertsReportsList />
15 </n-tab-pane>
16 - <n-tab-pane name="talon" tab="Talon Chat" display-directive="show:lazy" class="!p-0">
16 + <n-tab-pane name="talon" tab="Talon Chat" display-directive="show:lazy" class="p-0!">
17 <div class="h-[calc(100vh-200px)]">
18 - <TalonChat ref="talonChatRef" />
18 + <TalonChat />
19 </div>
20 </n-tab-pane>
21 </n-tabs>
@@ -25,10 +25,10 @@
25 <script setup lang="ts">
26 import { NTabPane, NTabs } from "naive-ui"
27 import { ref } from "vue"
28 -import Icon from "@/components/common/Icon.vue"
28 import AlertsReportsList from "@/components/aiAnalyst/AlertsReportsList.vue"
29 import TalonChat from "@/components/aiAnalyst/TalonChat.vue"
30 import TalonOverview from "@/components/aiAnalyst/TalonOverview.vue"
31 +import Icon from "@/components/common/Icon.vue"
32
33 const activeTab = ref("overview")
34 </script>