@cryptotaxi247 / CoPilot / commits / f445a782

Remove cypress (#724)

* Chore: Removes Cypress e2e testing Removes Cypress-related files and dependencies. This simplifies the frontend setup by removing end-to-end tests from the project, reducing build times, and streamlining the dependency list. * Chore: Enforces eslint 10 Adds peer dependency rule to allow only eslint 10, ensuring consistent linting across the project. --------- Co-authored-by: Davide Di Modica <webmaster.ddm@gmail.com>

taylor_socfortress committed Feb 17, 2026 at 08:44 UTC f445a7826b0a029524e010e945b48cf08c6dab5c
9 files changed +154 -1038
frontend/cypress.config.cjs deleted
-8
@@ -1,8 +0,0 @@
1 -const { defineConfig } = require("cypress")
2 -
3 -module.exports = defineConfig({
4 - e2e: {
5 - specPattern: "cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}",
6 - baseUrl: "http://localhost:4173"
7 - }
8 -})
frontend/cypress/e2e/example.cy.ts deleted
-8
@@ -1,8 +0,0 @@
1 -// https://docs.cypress.io/api/introduction/api.html
2 -
3 -describe("My First Test", () => {
4 - it("visits the app root url", () => {
5 - cy.visit("/")
6 - cy.contains(`[data-test="login-title"]`, "SOCFortress CoPilot")
7 - })
8 -})
frontend/cypress/e2e/tsconfig.json deleted
-11
@@ -1,11 +0,0 @@
1 -{
2 - "extends": "@vue/tsconfig/tsconfig.dom.json",
3 - "compilerOptions": {
4 - "target": "es5",
5 - "lib": ["es5", "dom"],
6 - "types": ["cypress"],
7 - "sourceMap": false,
8 - "isolatedModules": false
9 - },
10 - "include": ["./**/*", "../support/**/*"]
11 -}
frontend/cypress/fixtures/example.json deleted
-5
@@ -1,5 +0,0 @@
1 -{
2 - "name": "Using fixtures to represent data",
3 - "email": "hello@cypress.io",
4 - "body": "Fixtures are a great way to mock data for responses to routes"
5 -}
frontend/cypress/support/commands.ts deleted
-39
@@ -1,39 +0,0 @@
1 -/// <reference types="cypress" />
2 -// ***********************************************
3 -// This example commands.ts shows you how to
4 -// create various custom commands and overwrite
5 -// existing commands.
6 -//
7 -// For more comprehensive examples of custom
8 -// commands please read more here:
9 -// https://on.cypress.io/custom-commands
10 -// ***********************************************
11 -//
12 -//
13 -// -- This is a parent command --
14 -// Cypress.Commands.add('login', (email, password) => { ... })
15 -//
16 -//
17 -// -- This is a child command --
18 -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
19 -//
20 -//
21 -// -- This is a dual command --
22 -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
23 -//
24 -//
25 -// -- This will overwrite an existing command --
26 -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
27 -//
28 -// declare global {
29 -// namespace Cypress {
30 -// interface Chainable {
31 -// login(email: string, password: string): Chainable<void>
32 -// drag(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
33 -// dismiss(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
34 -// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
35 -// }
36 -// }
37 -// }
38 -
39 -export {}
frontend/cypress/support/e2e.ts deleted
-20
@@ -1,20 +0,0 @@
1 -// ***********************************************************
2 -// This example support/index.js is processed and
3 -// loaded automatically before your test files.
4 -//
5 -// This is a great place to put global configuration and
6 -// behavior that modifies Cypress.
7 -//
8 -// You can change the location of this file or turn off
9 -// automatically serving support files with the
10 -// 'supportFile' configuration option.
11 -//
12 -// You can read more here:
13 -// https://on.cypress.io/configuration
14 -// ***********************************************************
15 -
16 -// Import commands.js using ES2015 syntax:
17 -import "./commands"
18 -
19 -// Alternatively you can use CommonJS syntax:
20 -// require('./commands')
frontend/package.json
+6 -5
@@ -14,12 +14,10 @@
14 "build:only": "vite build",
15 "build:docker": "docker build .",
16 "build:analyzer": "vite-bundle-visualizer -t sunburst",
17 - "build:check": "run-s libs:reload build lint type-check format test:e2e test:unit build:docker",
17 + "build:check": "run-s libs:reload build lint type-check format test:unit build:docker",
18 "preview": "vite build && echo '' && vite preview --port 4173 --host",
19 "preview:only": "vite preview --port 4173 --host",
20 "test:unit": "vitest run",
21 - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
22 - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
21 "type-check": "vue-tsc --build --force",
22 "lint": "eslint . --fix",
23 "format": "prettier --write src/",
@@ -113,7 +111,6 @@
111 "@vue/test-utils": "^2.4.6",
112 "@vue/tsconfig": "~0.8.1",
113 "baseline-browser-mapping": "^2.9.19",
116 - "cypress": "^15.10.0",
114 "depcheck": "^1.4.7",
115 "eslint": "~10.0.0",
116 "flourite": "^1.3.0",
@@ -137,10 +134,14 @@
134 "vue-tsc": "^3.2.4"
135 },
136 "pnpm": {
137 + "peerDependencyRules": {
138 + "allowedVersions": {
139 + "eslint": "10"
140 + }
141 + },
142 "onlyBuiltDependencies": [
143 "@parcel/watcher",
144 "@tailwindcss/oxide",
143 - "cypress",
145 "esbuild",
146 "unrs-resolver"
147 ]
frontend/pnpm-lock.yaml
+147 -941
@@ -219,9 +219,6 @@ importers:
219 baseline-browser-mapping:
220 specifier: ^2.9.19
221 version: 2.9.19
222 - cypress:
223 - specifier: ^15.10.0
224 - version: 15.10.0
222 depcheck:
223 specifier: ^1.4.7
224 version: 1.4.7
@@ -662,13 +659,6 @@ packages:
659 resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
660 engines: {node: '>=20.19.0'}
661
665 - '@cypress/request@3.0.10':
666 - resolution: {integrity: sha512-hauBrOdvu08vOsagkZ/Aju5XuiZx6ldsLfByg1htFeldhex+PeMrYauANzFsMJeAA0+dyPLbDoX2OYuvVoLDkQ==}
667 - engines: {node: '>= 6'}
668 -
669 - '@cypress/xvfb@1.2.4':
670 - resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==}
671 -
662 '@emotion/hash@0.8.0':
663 resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
664
@@ -933,8 +923,8 @@ packages:
923 '@hapi/pinpoint@2.0.1':
924 resolution: {integrity: sha512-EKQmr16tM8s16vTT3cA5L0kZZcTMU5DUOZTuvpnY738m+jyP3JIUj+Mm1xc1rsLkGBQ/gVnfKYPwOmPg1tUR4Q==}
925
936 - '@hapi/tlds@1.1.5':
937 - resolution: {integrity: sha512-Vq/1gnIIsvFUpKlDdfrPd/ssHDpAyBP/baVukh3u2KSG2xoNjsnRNjQiPmuyPPGqsn1cqVWWhtZHfOBaLizFRQ==}
926 + '@hapi/tlds@1.1.6':
927 + resolution: {integrity: sha512-xdi7A/4NZokvV0ewovme3aUO5kQhW9pQ2YD1hRqZGhhSi5rBv4usHYidVocXSi9eihYsznZxLtAiEYYUL6VBGw==}
928 engines: {node: '>=14.0.0'}
929
930 '@hapi/topo@6.0.2':
@@ -1031,6 +1021,13 @@ packages:
1021 '@one-ini/wasm@0.1.1':
1022 resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
1023
1024 + '@ota-meshi/ast-token-store@0.2.0':
1025 + resolution: {integrity: sha512-VQNg9OyqbvjMb+/EoFl1t5mp5qU53AHd6VLIKvj0nfnBiLnom2OSm+heyXD3++GePoVNf1D/KKU8fOIHi4y0xw==}
1026 + engines: {node: ^20.19.0 || ^22.13.0 || >=24}
1027 + peerDependencies:
1028 + '@eslint/markdown': ^7.4.0
1029 + eslint: '>=9.0.0'
1030 +
1031 '@parcel/watcher-android-arm64@2.5.6':
1032 resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==}
1033 engines: {node: '>= 10.0.0'}
@@ -1495,18 +1492,9 @@ packages:
1492 '@types/parse-json@4.0.2':
1493 resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
1494
1498 - '@types/sinonjs__fake-timers@8.1.1':
1499 - resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==}
1500 -
1501 - '@types/sizzle@2.3.10':
1502 - resolution: {integrity: sha512-TC0dmN0K8YcWEAEfiPi5gJP14eJe30TTGjkvek3iM/1NdHHsdCA/Td6GvNndMOo/iSnIsZ4HuuhrYPDAmbxzww==}
1503 -
1495 '@types/tern@0.23.9':
1496 resolution: {integrity: sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==}
1497
1507 - '@types/tmp@0.2.6':
1508 - resolution: {integrity: sha512-chhaNf2oKHlRkDGt+tiKE2Z5aJ6qalm7Z9rlLdBwmOiAAf09YQvvoLXjWK4HWPF1xU/fqvMgfNfpVoBscA/tKA==}
1509 -
1498 '@types/tough-cookie@4.0.5':
1499 resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
1500
@@ -1519,9 +1507,6 @@ packages:
1507 '@types/web-bluetooth@0.0.21':
1508 resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
1509
1522 - '@types/yauzl@2.10.3':
1523 - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
1524 -
1510 '@typescript-eslint/eslint-plugin@8.56.0':
1511 resolution: {integrity: sha512-lRyPDLzNCuae71A3t9NEINBiTn7swyOhvUj3MyUOxb8x6g6vPEFoOU+ZRmGMusNC3X3YMhqMIX7i8ShqhT74Pw==}
1512 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1814,10 +1799,6 @@ packages:
1799 resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
1800 engines: {node: '>= 14'}
1801
1817 - aggregate-error@3.1.0:
1818 - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
1819 - engines: {node: '>=8'}
1820 -
1802 ajv@6.12.6:
1803 resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
1804
@@ -1828,14 +1809,6 @@ packages:
1809 alien-signals@3.1.2:
1810 resolution: {integrity: sha512-d9dYqZTS90WLiU0I5c6DHj/HcKkF8ZyGN3G5x8wSbslulz70KOxaqCT0hQCo9KOyhVqzqGojvNdJXoTumZOtcw==}
1811
1831 - ansi-colors@4.1.3:
1832 - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
1833 - engines: {node: '>=6'}
1834 -
1835 - ansi-escapes@4.3.2:
1836 - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
1837 - engines: {node: '>=8'}
1838 -
1812 ansi-regex@5.0.1:
1813 resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
1814 engines: {node: '>=8'}
@@ -1859,9 +1832,6 @@ packages:
1832 apexcharts@5.5.1:
1833 resolution: {integrity: sha512-fIJSzME9V0Ksfzk4x8CGMcK6HGLaRonxL7V7+7gHl4alAQBm4O/7D/3bM4F/MLmOakhkOs/RZbwYwLJDbAFzGw==}
1834
1862 - arch@2.2.0:
1863 - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
1864 -
1835 are-docs-informative@0.0.2:
1836 resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
1837 engines: {node: '>=14'}
@@ -1887,13 +1857,6 @@ packages:
1857 resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
1858 engines: {node: '>=8'}
1859
1890 - asn1@0.2.6:
1891 - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
1892 -
1893 - assert-plus@1.0.0:
1894 - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
1895 - engines: {node: '>=0.8'}
1896 -
1860 assertion-error@2.0.1:
1861 resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
1862 engines: {node: '>=12'}
@@ -1906,26 +1869,12 @@ packages:
1869 resolution: {integrity: sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg==}
1870 engines: {node: '>=20.19.0'}
1871
1909 - astral-regex@2.0.0:
1910 - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
1911 - engines: {node: '>=8'}
1912 -
1872 async-validator@4.2.5:
1873 resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
1874
1875 asynckit@0.4.0:
1876 resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
1877
1919 - at-least-node@1.0.0:
1920 - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
1921 - engines: {node: '>= 4.0.0'}
1922 -
1923 - aws-sign2@0.7.0:
1924 - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
1925 -
1926 - aws4@1.13.2:
1927 - resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==}
1928 -
1878 axios@1.13.5:
1879 resolution: {integrity: sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==}
1880
@@ -1936,25 +1885,16 @@ packages:
1885 resolution: {integrity: sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==}
1886 engines: {node: 20 || >=22}
1887
1939 - base64-js@1.5.1:
1940 - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
1941 -
1888 baseline-browser-mapping@2.9.19:
1889 resolution: {integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==}
1890 hasBin: true
1891
1946 - bcrypt-pbkdf@1.0.2:
1947 - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
1948 -
1892 bidi-js@1.0.3:
1893 resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
1894
1895 birpc@2.9.0:
1896 resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
1897
1955 - blob-util@2.0.2:
1956 - resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==}
1957 -
1898 bluebird@3.7.2:
1899 resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
1900
@@ -1980,12 +1920,6 @@ packages:
1920 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1921 hasBin: true
1922
1983 - buffer-crc32@0.2.13:
1984 - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
1985 -
1986 - buffer@5.7.1:
1987 - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
1988 -
1923 builtin-modules@5.0.0:
1924 resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==}
1925 engines: {node: '>=18.20'}
@@ -2010,18 +1944,10 @@ packages:
1944 resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
1945 engines: {node: '>=8'}
1946
2013 - cachedir@2.4.0:
2014 - resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==}
2015 - engines: {node: '>=6'}
2016 -
1947 call-bind-apply-helpers@1.0.2:
1948 resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
1949 engines: {node: '>= 0.4'}
1950
2021 - call-bound@1.0.4:
2022 - resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
2023 - engines: {node: '>= 0.4'}
2024 -
1951 callsite@1.0.0:
1952 resolution: {integrity: sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==}
1953
@@ -2036,9 +1962,6 @@ packages:
1962 caniuse-lite@1.0.30001770:
1963 resolution: {integrity: sha512-x/2CLQ1jHENRbHg5PSId2sXq1CIO1CISvwWAj027ltMVG2UNgW+w9oH2+HzgEIRFembL8bUlXtfbBHR1fCg2xw==}
1964
2039 - caseless@0.12.0:
2040 - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
2041 -
1965 ccount@2.0.1:
1966 resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
1967
@@ -2046,10 +1969,6 @@ packages:
1969 resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
1970 engines: {node: '>=18'}
1971
2049 - chalk@4.1.2:
2050 - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
2051 - engines: {node: '>=10'}
2052 -
1972 change-case@5.4.4:
1973 resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
1974
@@ -2091,22 +2010,6 @@ packages:
2010 resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
2011 engines: {node: '>=4'}
2012
2094 - clean-stack@2.2.0:
2095 - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
2096 - engines: {node: '>=6'}
2097 -
2098 - cli-cursor@3.1.0:
2099 - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
2100 - engines: {node: '>=8'}
2101 -
2102 - cli-table3@0.6.1:
2103 - resolution: {integrity: sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==}
2104 - engines: {node: 10.* || >= 12.*}
2105 -
2106 - cli-truncate@2.1.0:
2107 - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
2108 - engines: {node: '>=8'}
2109 -
2013 cliui@7.0.4:
2014 resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
2015
@@ -2127,13 +2030,6 @@ packages:
2030 colord@2.9.3:
2031 resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
2032
2130 - colorette@2.0.20:
2131 - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
2132 -
2133 - colors@1.4.0:
2134 - resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
2135 - engines: {node: '>=0.1.90'}
2136 -
2033 combined-stream@1.0.8:
2034 resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
2035 engines: {node: '>= 0.8'}
@@ -2145,14 +2041,14 @@ packages:
2041 resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
2042 engines: {node: '>=14'}
2043
2148 - commander@6.2.1:
2149 - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
2150 - engines: {node: '>= 6'}
2151 -
2044 commander@7.2.0:
2045 resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
2046 engines: {node: '>= 10'}
2047
2048 + commander@8.3.0:
2049 + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
2050 + engines: {node: '>= 12'}
2051 +
2052 comment-parser@1.4.1:
2053 resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
2054 engines: {node: '>= 12.0.0'}
@@ -2161,10 +2057,6 @@ packages:
2057 resolution: {integrity: sha512-aRDkn3uyIlCFfk5NUA+VdwMmMsh8JGhc4hapfV4yxymHGQ3BVskMQfoXGpCo5IoBuQ9tS5iiVKhCpTcB4pW4qw==}
2058 engines: {node: '>= 12.0.0'}
2059
2164 - common-tags@1.8.2:
2165 - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
2166 - engines: {node: '>=4.0.0'}
2167 -
2060 concat-map@0.0.1:
2061 resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
2062
@@ -2191,9 +2083,6 @@ packages:
2083 core-js-compat@3.48.0:
2084 resolution: {integrity: sha512-OM4cAF3D6VtH/WkLtWvyNC56EZVXsZdU3iqaMG2B4WvYrlqU831pc4UtG5yp0sE9z8Y02wVN7PjW5Zf9Gt0f1Q==}
2085
2194 - core-util-is@1.0.2:
2195 - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
2196 -
2086 cosmiconfig@7.1.0:
2087 resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
2088 engines: {node: '>=10'}
@@ -2249,15 +2138,6 @@ packages:
2138 csstype@3.2.3:
2139 resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
2140
2252 - cypress@15.10.0:
2253 - resolution: {integrity: sha512-OtUh7OMrfEjKoXydlAD1CfG2BvKxIqgWGY4/RMjrqQ3BKGBo5JFKoYNH+Tpcj4xKxWH4XK0Xri+9y8WkxhYbqQ==}
2254 - engines: {node: ^20.1.0 || ^22.0.0 || >=24.0.0}
2255 - hasBin: true
2256 -
2257 - dashdash@1.14.1:
2258 - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
2259 - engines: {node: '>=0.10'}
2260 -
2141 data-urls@7.0.0:
2142 resolution: {integrity: sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA==}
2143 engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
@@ -2276,14 +2156,6 @@ packages:
2156 debounce@1.2.1:
2157 resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
2158
2279 - debug@3.2.7:
2280 - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
2281 - peerDependencies:
2282 - supports-color: '*'
2283 - peerDependenciesMeta:
2284 - supports-color:
2285 - optional: true
2286 -
2159 debug@4.4.3:
2160 resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
2161 engines: {node: '>=6.0'}
@@ -2392,9 +2264,6 @@ packages:
2264 easy-bem@1.1.1:
2265 resolution: {integrity: sha512-GJRqdiy2h+EXy6a8E6R+ubmqUM08BK0FWNq41k24fup6045biQ8NXxoXimiwegMQvFFV3t1emADdGNL1TlS61A==}
2266
2395 - ecc-jsbn@0.1.2:
2396 - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
2397 -
2267 echarts@6.0.0:
2268 resolution: {integrity: sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==}
2269
@@ -2406,6 +2275,10 @@ packages:
2275 electron-to-chromium@1.5.286:
2276 resolution: {integrity: sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==}
2277
2278 + emoji-regex-xs@2.0.1:
2279 + resolution: {integrity: sha512-1QFuh8l7LqUcKe24LsPUNzjrzJQ7pgRwp1QMcZ5MX6mFplk2zQ08NVCM84++1cveaUUYtcCYHmeFEuNg16sU4g==}
2280 + engines: {node: '>=10.0.0'}
2281 +
2282 emoji-regex@8.0.0:
2283 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
2284
@@ -2416,17 +2289,10 @@ packages:
2289 resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==}
2290 engines: {node: '>=14'}
2291
2419 - end-of-stream@1.4.5:
2420 - resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
2421 -
2292 enhanced-resolve@5.19.0:
2293 resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==}
2294 engines: {node: '>=10.13.0'}
2295
2426 - enquirer@2.4.1:
2427 - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
2428 - engines: {node: '>=8.6'}
2429 -
2296 entities@4.5.0:
2297 resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
2298 engines: {node: '>=0.12'}
@@ -2558,6 +2424,13 @@ packages:
2424 peerDependencies:
2425 eslint: '>=6.0.0'
2426
2427 + eslint-plugin-markdown-preferences@0.40.2:
2428 + resolution: {integrity: sha512-zaHQpfQijr/v7werfw6yQd05TpNoY6FTBTFAlxpFaOvoxfmQg89GLlU7KhrS0Ty++YCVVDgMJURwEn/c2w5n7g==}
2429 + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
2430 + peerDependencies:
2431 + '@eslint/markdown': ^7.4.0
2432 + eslint: '>=9.0.0'
2433 +
2434 eslint-plugin-n@17.24.0:
2435 resolution: {integrity: sha512-/gC7/KAYmfNnPNOb3eu8vw+TdVnV0zhdQwexsw6FLXbhzroVj20vRn2qL8lDWDGnAQ2J8DhdfvXxX9EoxvERvw==}
2436 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2585,8 +2458,8 @@ packages:
2458 peerDependencies:
2459 eslint: '>=9.38.0'
2460
2588 - eslint-plugin-toml@1.0.4:
2589 - resolution: {integrity: sha512-oGjx1+rwN2YCS3xPCpnKX3Ei5vJngU+8LpdzovfIhWr+CoLIOpl7T2+/E00zaDHNMhCnuENlBqRCmXVvzUePjQ==}
2461 + eslint-plugin-toml@1.1.0:
2462 + resolution: {integrity: sha512-0CFwlR5sUOqebF8fZOj10h8MwPkBPAFQPqnM3v5Otzp/RqIiXpfUOOBuTx/lh8Wa5WRxo29yWMA7x2k2F1kzcA==}
2463 engines: {node: ^20.19.0 || ^22.13.0 || >=24}
2464 peerDependencies:
2465 eslint: '>=9.38.0'
@@ -2620,8 +2493,8 @@ packages:
2493 '@typescript-eslint/parser':
2494 optional: true
2495
2623 - eslint-plugin-yml@3.1.2:
2624 - resolution: {integrity: sha512-n9lxbFrNlGDLOSyIrEYkkYr7icbULMh66wwkIEluisq0lXSu1qVEEXM0g8MM8UQbtd9t1HMgN6bC+DaOe5dWdQ==}
2496 + eslint-plugin-yml@3.2.0:
2497 + resolution: {integrity: sha512-69gbDR+2IqaGJHyTXJ/FKJsv5QL3wKCfI2Z/rGjXwM88RxAqSOtM/AmF/YPhSWdHwezE8xyZbvDVnzgUPbO4ag==}
2498 engines: {node: ^20.19.0 || ^22.13.0 || >=24.0.0}
2499 peerDependencies:
2500 eslint: '>=9.38.0'
@@ -2700,24 +2573,13 @@ packages:
2573 event-stream@3.3.4:
2574 resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==}
2575
2703 - eventemitter2@6.4.7:
2704 - resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==}
2705 -
2576 evtd@0.2.4:
2577 resolution: {integrity: sha512-qaeGN5bx63s/AXgQo8gj6fBkxge+OoLddLniox5qtLAEY5HSnuSlISXVPxnSae1dWblvTh4/HoMIB+mbMsvZzw==}
2578
2709 - execa@4.1.0:
2710 - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
2711 - engines: {node: '>=10'}
2712 -
2579 execa@5.1.1:
2580 resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
2581 engines: {node: '>=10'}
2582
2717 - executable@4.1.1:
2718 - resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
2719 - engines: {node: '>=4'}
2720 -
2583 expand-tilde@2.0.2:
2584 resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==}
2585 engines: {node: '>=0.10.0'}
@@ -2729,18 +2591,6 @@ packages:
2591 exsolve@1.0.8:
2592 resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
2593
2732 - extend@3.0.2:
2733 - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
2734 -
2735 - extract-zip@2.0.1:
2736 - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
2737 - engines: {node: '>= 10.17.0'}
2738 - hasBin: true
2739 -
2740 - extsprintf@1.3.0:
2741 - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
2742 - engines: {'0': node >=0.6.0}
2743 -
2594 fast-deep-equal@3.1.3:
2595 resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
2596
@@ -2757,9 +2607,6 @@ packages:
2607 fault@2.0.1:
2608 resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
2609
2760 - fd-slicer@1.1.0:
2761 - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
2762 -
2610 fdir@6.5.0:
2611 resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
2612 engines: {node: '>=12.0.0'}
@@ -2769,10 +2616,6 @@ packages:
2616 picomatch:
2617 optional: true
2618
2772 - figures@3.2.0:
2773 - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
2774 - engines: {node: '>=8'}
2775 -
2619 file-entry-cache@8.0.0:
2620 resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
2621 engines: {node: '>=16.0.0'}
@@ -2820,9 +2663,6 @@ packages:
2663 resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
2664 engines: {node: '>=14'}
2665
2823 - forever-agent@0.6.1:
2824 - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
2825 -
2666 form-data@4.0.5:
2667 resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
2668 engines: {node: '>= 6'}
@@ -2841,10 +2681,6 @@ packages:
2681 resolution: {integrity: sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==}
2682 engines: {node: '>=14.14'}
2683
2844 - fs-extra@9.1.0:
2845 - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
2846 - engines: {node: '>=10'}
2847 -
2684 fsevents@2.3.3:
2685 resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
2686 engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -2864,6 +2700,10 @@ packages:
2700 resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
2701 engines: {node: 6.* || 8.* || >= 10.*}
2702
2703 + get-east-asian-width@1.4.0:
2704 + resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
2705 + engines: {node: '>=18'}
2706 +
2707 get-intrinsic@1.3.0:
2708 resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
2709 engines: {node: '>= 0.4'}
@@ -2872,10 +2712,6 @@ packages:
2712 resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
2713 engines: {node: '>= 0.4'}
2714
2875 - get-stream@5.2.0:
2876 - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
2877 - engines: {node: '>=8'}
2878 -
2715 get-stream@6.0.1:
2716 resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
2717 engines: {node: '>=10'}
@@ -2883,9 +2719,6 @@ packages:
2719 get-tsconfig@4.13.6:
2720 resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
2721
2886 - getpass@0.1.7:
2887 - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
2888 -
2722 giget@2.0.0:
2723 resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
2724 hasBin: true
@@ -2902,10 +2735,6 @@ packages:
2735 deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
2736 hasBin: true
2737
2905 - global-dirs@3.0.1:
2906 - resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
2907 - engines: {node: '>=10'}
2908 -
2738 global-modules@1.0.0:
2739 resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==}
2740 engines: {node: '>=0.10.0'}
@@ -2939,10 +2768,6 @@ packages:
2768 graphemer@1.4.0:
2769 resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
2770
2942 - has-flag@4.0.0:
2943 - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
2944 - engines: {node: '>=8'}
2945 -
2771 has-symbols@1.1.0:
2772 resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
2773 engines: {node: '>= 0.4'}
@@ -2951,10 +2776,6 @@ packages:
2776 resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
2777 engines: {node: '>= 0.4'}
2778
2954 - hasha@5.2.2:
2955 - resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
2956 - engines: {node: '>=8'}
2957 -
2779 hasown@2.0.2:
2780 resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
2781 engines: {node: '>= 0.4'}
@@ -2996,25 +2817,14 @@ packages:
2817 resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
2818 engines: {node: '>= 14'}
2819
2999 - http-signature@1.4.0:
3000 - resolution: {integrity: sha512-G5akfn7eKbpDN+8nPS/cb57YeA1jLTVxjpCj7tmm3QKPdyDy7T+qSC40e9ptydSWvkwjSXw1VbkpyEm39ukeAg==}
3001 - engines: {node: '>=0.10'}
3002 -
2820 https-proxy-agent@7.0.6:
2821 resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
2822 engines: {node: '>= 14'}
2823
3007 - human-signals@1.1.1:
3008 - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==}
3009 - engines: {node: '>=8.12.0'}
3010 -
2824 human-signals@2.1.0:
2825 resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
2826 engines: {node: '>=10.17.0'}
2827
3015 - ieee754@1.2.1:
3016 - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
3017 -
2828 ignore@5.3.2:
2829 resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
2830 engines: {node: '>= 4'}
@@ -3041,10 +2851,6 @@ packages:
2851 resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
2852 engines: {node: '>=0.8.19'}
2853
3044 - indent-string@4.0.0:
3045 - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
3046 - engines: {node: '>=8'}
3047 -
2854 indent-string@5.0.0:
2855 resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
2856 engines: {node: '>=12'}
@@ -3052,10 +2858,6 @@ packages:
2858 ini@1.3.8:
2859 resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
2860
3055 - ini@2.0.0:
3056 - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
3057 - engines: {node: '>=10'}
3058 -
2861 is-arrayish@0.2.1:
2862 resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
2863
@@ -3094,18 +2896,10 @@ packages:
2896 engines: {node: '>=14.16'}
2897 hasBin: true
2898
3097 - is-installed-globally@0.4.0:
3098 - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
3099 - engines: {node: '>=10'}
3100 -
2899 is-number@7.0.0:
2900 resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
2901 engines: {node: '>=0.12.0'}
2902
3105 - is-path-inside@3.0.3:
3106 - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
3107 - engines: {node: '>=8'}
3108 -
2903 is-potential-custom-element-name@1.0.1:
2904 resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
2905
@@ -3113,13 +2907,6 @@ packages:
2907 resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
2908 engines: {node: '>=8'}
2909
3116 - is-typedarray@1.0.0:
3117 - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
3118 -
3119 - is-unicode-supported@0.1.0:
3120 - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
3121 - engines: {node: '>=10'}
3122 -
2910 is-what@5.5.0:
2911 resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
2912 engines: {node: '>=18'}
@@ -3143,9 +2930,6 @@ packages:
2930 resolution: {integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==}
2931 engines: {node: '>=18'}
2932
3146 - isstream@0.1.2:
3147 - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
3148 -
2933 jackspeak@3.4.3:
2934 resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
2935
@@ -3183,9 +2967,6 @@ packages:
2967 resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==}
2968 hasBin: true
2969
3186 - jsbn@0.1.1:
3187 - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
3188 -
2970 jsdoc-type-pratt-parser@7.0.0:
2971 resolution: {integrity: sha512-c7YbokssPOSHmqTbSAmTtnVgAVa/7lumWNYqomgd5KOMyPrRve2anx6lonfOsXEQacqF9FKVUj7bLg4vRSvdYA==}
2972 engines: {node: '>=20.0.0'}
@@ -3221,15 +3002,9 @@ packages:
3002 json-schema-traverse@0.4.1:
3003 resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
3004
3224 - json-schema@0.4.0:
3225 - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
3226 -
3005 json-stable-stringify-without-jsonify@1.0.1:
3006 resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
3007
3230 - json-stringify-safe@5.0.1:
3231 - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
3232 -
3008 json5@2.2.3:
3009 resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
3010 engines: {node: '>=6'}
@@ -3242,9 +3017,9 @@ packages:
3017 jsonfile@6.2.0:
3018 resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
3019
3245 - jsprim@2.0.2:
3246 - resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==}
3247 - engines: {'0': node >=0.6.0}
3020 + katex@0.16.28:
3021 + resolution: {integrity: sha512-YHzO7721WbmAL6Ov1uzN/l5mY5WWWhJBSW+jq4tkfZfsxmo1hu6frS0EOswvjBUnWE6NtjEs48SFn5CQESRLZg==}
3022 + hasBin: true
3023
3024 keyv@4.5.4:
3025 resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -3347,15 +3122,6 @@ packages:
3122 linkify-it@5.0.0:
3123 resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
3124
3350 - listr2@3.14.0:
3351 - resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==}
3352 - engines: {node: '>=10.0.0'}
3353 - peerDependencies:
3354 - enquirer: '>= 2.3.0 < 3'
3355 - peerDependenciesMeta:
3356 - enquirer:
3357 - optional: true
3358 -
3125 local-pkg@1.1.2:
3126 resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
3127 engines: {node: '>=14'}
@@ -3367,23 +3133,12 @@ packages:
3133 lodash-es@4.17.23:
3134 resolution: {integrity: sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==}
3135
3370 - lodash.once@4.1.1:
3371 - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
3372 -
3136 lodash@4.17.21:
3137 resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
3138
3139 lodash@4.17.23:
3140 resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
3141
3379 - log-symbols@4.1.0:
3380 - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
3381 - engines: {node: '>=10'}
3382 -
3383 - log-update@4.0.0:
3384 - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
3385 - engines: {node: '>=10'}
3386 -
3142 longest-streak@3.1.0:
3143 resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
3144
@@ -3449,6 +3204,9 @@ packages:
3204 mdast-util-gfm@3.1.0:
3205 resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
3206
3207 + mdast-util-math@3.0.0:
3208 + resolution: {integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==}
3209 +
3210 mdast-util-phrasing@4.1.0:
3211 resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
3212
@@ -3507,6 +3265,9 @@ packages:
3265 micromark-extension-gfm@3.0.0:
3266 resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
3267
3268 + micromark-extension-math@3.1.0:
3269 + resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==}
3270 +
3271 micromark-factory-destination@2.0.1:
3272 resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
3273
@@ -3693,10 +3454,6 @@ packages:
3454 object-deep-merge@2.0.0:
3455 resolution: {integrity: sha512-3DC3UMpeffLTHiuXSy/UG4NOIYTLlY9u3V82+djSCLYClWobZiS4ivYzpIUWrRY/nfsJ8cWsKyG3QfyLePmhvg==}
3456
3696 - object-inspect@1.13.4:
3697 - resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
3698 - engines: {node: '>= 0.4'}
3699 -
3457 obug@2.1.1:
3458 resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
3459
@@ -3706,9 +3463,6 @@ packages:
3463 ohash@2.0.11:
3464 resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
3465
3709 - once@1.4.0:
3710 - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
3711 -
3466 onetime@5.1.2:
3467 resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
3468 engines: {node: '>=6'}
@@ -3735,9 +3489,6 @@ packages:
3489 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
3490 engines: {node: '>= 0.8.0'}
3491
3738 - ospath@1.2.2:
3739 - resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==}
3740 -
3492 p-limit@3.1.0:
3493 resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
3494 engines: {node: '>=10'}
@@ -3746,10 +3497,6 @@ packages:
3497 resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
3498 engines: {node: '>=10'}
3499
3749 - p-map@4.0.0:
3750 - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
3751 - engines: {node: '>=10'}
3752 -
3500 package-json-from-dist@1.0.1:
3501 resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
3502
@@ -3816,18 +3563,12 @@ packages:
3563 pause-stream@0.0.11:
3564 resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
3565
3819 - pend@1.2.0:
3820 - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
3821 -
3566 perfect-debounce@1.0.0:
3567 resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
3568
3569 perfect-debounce@2.1.0:
3570 resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
3571
3828 - performance-now@2.1.0:
3829 - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
3830 -
3572 picocolors@1.1.1:
3573 resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
3574
@@ -3844,10 +3585,6 @@ packages:
3585 engines: {node: '>=0.10'}
3586 hasBin: true
3587
3847 - pify@2.3.0:
3848 - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
3849 - engines: {node: '>=0.10.0'}
3850 -
3588 pinia-plugin-persistedstate@4.7.1:
3589 resolution: {integrity: sha512-WHOqh2esDlR3eAaknPbqXrkkj0D24h8shrDPqysgCFR6ghqP/fpFfJmMPJp0gETHsvrh9YNNg6dQfo2OEtDnIQ==}
3590 peerDependencies:
@@ -3962,23 +3699,12 @@ packages:
3699 engines: {node: '>=14'}
3700 hasBin: true
3701
3965 - pretty-bytes@5.6.0:
3966 - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
3967 - engines: {node: '>=6'}
3968 -
3969 - process@0.11.10:
3970 - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
3971 - engines: {node: '>= 0.6.0'}
3972 -
3702 property-information@7.1.0:
3703 resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
3704
3705 proto-list@1.2.4:
3706 resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
3707
3979 - proxy-from-env@1.0.0:
3980 - resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==}
3981 -
3708 proxy-from-env@1.1.0:
3709 resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
3710
@@ -3987,9 +3713,6 @@ packages:
3713 engines: {node: '>= 0.10'}
3714 hasBin: true
3715
3990 - pump@3.0.3:
3991 - resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
3992 -
3716 punycode.js@2.3.1:
3717 resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
3718 engines: {node: '>=6'}
@@ -3998,10 +3721,6 @@ packages:
3721 resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
3722 engines: {node: '>=6'}
3723
4001 - qs@6.14.2:
4002 - resolution: {integrity: sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==}
4003 - engines: {node: '>=0.6'}
4004 -
3724 quansync@0.2.11:
3725 resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
3726
@@ -4055,9 +3774,6 @@ packages:
3774 resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
3775 hasBin: true
3776
4058 - request-progress@3.0.0:
4059 - resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==}
4060 -
3777 require-directory@2.1.1:
3778 resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
3779 engines: {node: '>=0.10.0'}
@@ -4093,10 +3809,6 @@ packages:
3809 engines: {node: '>= 0.4'}
3810 hasBin: true
3811
4096 - restore-cursor@3.1.0:
4097 - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
4098 - engines: {node: '>=8'}
4099 -
3812 restore-cursor@5.1.0:
3813 resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
3814 engines: {node: '>=18'}
@@ -4129,12 +3841,6 @@ packages:
3841 rxjs@7.8.2:
3842 resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
3843
4132 - safe-buffer@5.2.1:
4133 - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
4134 -
4135 - safer-buffer@2.1.2:
4136 - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
4137 -
3844 sass@1.97.3:
3845 resolution: {integrity: sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==}
3846 engines: {node: '>=14.0.0'}
@@ -4185,22 +3891,6 @@ packages:
3891 shiki@3.22.0:
3892 resolution: {integrity: sha512-LBnhsoYEe0Eou4e1VgJACes+O6S6QC0w71fCSp5Oya79inkwkm15gQ1UF6VtQ8j/taMDh79hAB49WUk8ALQW3g==}
3893
4188 - side-channel-list@1.0.0:
4189 - resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
4190 - engines: {node: '>= 0.4'}
4191 -
4192 - side-channel-map@1.0.1:
4193 - resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
4194 - engines: {node: '>= 0.4'}
4195 -
4196 - side-channel-weakmap@1.0.2:
4197 - resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
4198 - engines: {node: '>= 0.4'}
4199 -
4200 - side-channel@1.1.0:
4201 - resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
4202 - engines: {node: '>= 0.4'}
4203 -
3894 siginfo@2.0.0:
3895 resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
3896
@@ -4218,14 +3908,6 @@ packages:
3908 sisteransi@1.0.5:
3909 resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
3910
4221 - slice-ansi@3.0.0:
4222 - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
4223 - engines: {node: '>=8'}
4224 -
4225 - slice-ansi@4.0.0:
4226 - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
4227 - engines: {node: '>=10'}
4228 -
3911 sortablejs@1.14.0:
3912 resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==}
3913
@@ -4259,11 +3941,6 @@ packages:
3941 sprintf-js@1.0.3:
3942 resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
3943
4262 - sshpk@1.18.0:
4263 - resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==}
4264 - engines: {node: '>=0.10.0'}
4265 - hasBin: true
4266 -
3944 stackback@0.0.2:
3945 resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
3946
@@ -4286,6 +3963,10 @@ packages:
3963 resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
3964 engines: {node: '>=12'}
3965
3966 + string-width@8.1.1:
3967 + resolution: {integrity: sha512-KpqHIdDL9KwYk22wEOg/VIqYbrnLeSApsKT/bSj6Ez7pn3CftUiLAv2Lccpq1ALcpLV9UX1Ppn92npZWu2w/aw==}
3968 + engines: {node: '>=20'}
3969 +
3970 stringify-entities@4.0.4:
3971 resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
3972
@@ -4318,14 +3999,6 @@ packages:
3999 resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==}
4000 engines: {node: '>=16'}
4001
4321 - supports-color@7.2.0:
4322 - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
4323 - engines: {node: '>=8'}
4324 -
4325 - supports-color@8.1.1:
4326 - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
4327 - engines: {node: '>=10'}
4328 -
4002 supports-preserve-symlinks-flag@1.0.0:
4003 resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
4004 engines: {node: '>= 0.4'}
@@ -4342,12 +4015,6 @@ packages:
4015 resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
4016 engines: {node: ^14.18.0 || >=16.0.0}
4017
4345 - systeminformation@5.31.0:
4346 - resolution: {integrity: sha512-z5pjzvC8UnQJ/iu34z+mo3lAeMzTGdArjPQoG5uPyV5XY4BY+M6ZcRTl4XnZqudz6sP713LhWMKv6e0kGFGCgQ==}
4347 - engines: {node: '>=8.0.0'}
4348 - os: [darwin, linux, win32, freebsd, openbsd, netbsd, sunos, android]
4349 - hasBin: true
4350 -
4018 tagged-tag@1.0.0:
4019 resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
4020 engines: {node: '>=20'}
@@ -4370,9 +4037,6 @@ packages:
4037 '@codemirror/state': ^6.0.0
4038 '@codemirror/view': ^6.0.0
4039
4373 - throttleit@1.0.1:
4374 - resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==}
4375 -
4040 through@2.3.8:
4041 resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
4042
@@ -4391,16 +4055,9 @@ packages:
4055 resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==}
4056 engines: {node: '>=14.0.0'}
4057
4394 - tldts-core@6.1.86:
4395 - resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==}
4396 -
4058 tldts-core@7.0.23:
4059 resolution: {integrity: sha512-0g9vrtDQLrNIiCj22HSe9d4mLVG3g5ph5DZ8zCKBr4OtrspmNB6ss7hVyzArAeE88ceZocIEGkyW1Ime7fxPtQ==}
4060
4400 - tldts@6.1.86:
4401 - resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==}
4402 - hasBin: true
4403 -
4061 tldts@7.0.23:
4062 resolution: {integrity: sha512-ASdhgQIBSay0R/eXggAkQ53G4nTJqTXqC2kbaBbdDwM7SkjyZyO0OaaN1/FH7U/yCeqOHDwFO5j8+Os/IS1dXw==}
4063 hasBin: true
@@ -4425,10 +4082,6 @@ packages:
4082 resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
4083 engines: {node: '>=6'}
4084
4428 - tough-cookie@5.1.2:
4429 - resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
4430 - engines: {node: '>=16'}
4431 -
4085 tough-cookie@6.0.0:
4086 resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
4087 engines: {node: '>=16'}
@@ -4437,10 +4090,6 @@ packages:
4090 resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==}
4091 engines: {node: '>=20'}
4092
4440 - tree-kill@1.2.2:
4441 - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
4442 - hasBin: true
4443 -
4093 treemate@0.3.11:
4094 resolution: {integrity: sha512-M8RGFoKtZ8dF+iwJfAJTOH/SM4KluKOKRJpjCMhI8bG3qB74zrFoArKZ62ll0Fr3mqkMJiQOmWYkdYgDeITYQg==}
4095
@@ -4467,24 +4116,10 @@ packages:
4116 tslib@2.8.1:
4117 resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
4118
4470 - tunnel-agent@0.6.0:
4471 - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
4472 -
4473 - tweetnacl@0.14.5:
4474 - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
4475 -
4119 type-check@0.4.0:
4120 resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
4121 engines: {node: '>= 0.8.0'}
4122
4480 - type-fest@0.21.3:
4481 - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
4482 - engines: {node: '>=10'}
4483 -
4484 - type-fest@0.8.1:
4485 - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
4486 - engines: {node: '>=8'}
4487 -
4123 type-fest@5.4.4:
4124 resolution: {integrity: sha512-JnTrzGu+zPV3aXIUhnyWJj4z/wigMsdYajGLIYakqyOW1nPllzXEJee0QQbHj+CTIQtXGlAjuK0UY+2xTyjVAw==}
4125 engines: {node: '>=20'}
@@ -4522,6 +4157,9 @@ packages:
4157 unist-util-position@5.0.0:
4158 resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
4159
4160 + unist-util-remove-position@5.0.0:
4161 + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
4162 +
4163 unist-util-stringify-position@4.0.0:
4164 resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
4165
@@ -4547,10 +4185,6 @@ packages:
4185 resolution: {integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==}
4186 engines: {node: ^20.19.0 || >=22.12.0}
4187
4550 - untildify@4.0.0:
4551 - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
4552 - engines: {node: '>=8'}
4553 -
4188 untyped@2.0.0:
4189 resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==}
4190 hasBin: true
@@ -4567,10 +4201,6 @@ packages:
4201 util-deprecate@1.0.2:
4202 resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
4203
4570 - uuid@8.3.2:
4571 - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
4572 - hasBin: true
4573 -
4204 validator@13.15.26:
4205 resolution: {integrity: sha512-spH26xU080ydGggxRyR1Yhcbgx+j3y5jbNXk/8L+iRvdIEQ4uTRH2Sgf2dokud6Q4oAtsbNvJ1Ft+9xmm6IZcA==}
4206 engines: {node: '>= 0.10'}
@@ -4580,10 +4210,6 @@ packages:
4210 peerDependencies:
4211 vue: ^3.0.11
4212
4583 - verror@1.10.0:
4584 - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
4585 - engines: {'0': node >=0.6.0}
4586 -
4213 vfile-message@4.0.3:
4214 resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
4215
@@ -4851,10 +4477,6 @@ packages:
4477 resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
4478 engines: {node: '>=0.10.0'}
4479
4854 - wrap-ansi@6.2.0:
4855 - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
4856 - engines: {node: '>=8'}
4857 -
4480 wrap-ansi@7.0.0:
4481 resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
4482 engines: {node: '>=10'}
@@ -4863,9 +4485,6 @@ packages:
4485 resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
4486 engines: {node: '>=12'}
4487
4866 - wrappy@1.0.2:
4867 - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
4868 -
4488 wsl-utils@0.1.0:
4489 resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
4490 engines: {node: '>=18'}
@@ -4926,9 +4545,6 @@ packages:
4545 resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
4546 engines: {node: '>=12'}
4547
4929 - yauzl@2.10.0:
4930 - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
4931 -
4548 yocto-queue@0.1.0:
4549 resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
4550 engines: {node: '>=10'}
@@ -5057,11 +4673,11 @@ snapshots:
4673 eslint-plugin-perfectionist: 5.5.0(eslint@10.0.0(jiti@2.6.1))(typescript@5.9.3)
4674 eslint-plugin-pnpm: 1.5.0(eslint@10.0.0(jiti@2.6.1))
4675 eslint-plugin-regexp: 3.0.0(eslint@10.0.0(jiti@2.6.1))
5060 - eslint-plugin-toml: 1.0.4(eslint@10.0.0(jiti@2.6.1))
4676 + eslint-plugin-toml: 1.1.0(@eslint/markdown@7.5.1)(eslint@10.0.0(jiti@2.6.1))
4677 eslint-plugin-unicorn: 63.0.0(eslint@10.0.0(jiti@2.6.1))
4678 eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.56.0(@typescript-eslint/parser@8.56.0(eslint@10.0.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.0(jiti@2.6.1))
4679 eslint-plugin-vue: 10.8.0(@stylistic/eslint-plugin@5.8.0(eslint@10.0.0(jiti@2.6.1)))(@typescript-eslint/parser@8.56.0(eslint@10.0.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.0(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.0.0(jiti@2.6.1)))
5064 - eslint-plugin-yml: 3.1.2(eslint@10.0.0(jiti@2.6.1))
4680 + eslint-plugin-yml: 3.2.0(@eslint/markdown@7.5.1)(eslint@10.0.0(jiti@2.6.1))
4681 eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.28)(eslint@10.0.0(jiti@2.6.1))
4682 globals: 17.3.0
4683 jsonc-eslint-parser: 2.4.2
@@ -5129,7 +4745,7 @@ snapshots:
4745 '@babel/types': 7.29.0
4746 '@jridgewell/remapping': 2.3.5
4747 convert-source-map: 2.0.0
5132 - debug: 4.4.3(supports-color@8.1.1)
4748 + debug: 4.4.3
4749 gensync: 1.0.0-beta.2
4750 json5: 2.2.3
4751 semver: 6.3.1
@@ -5290,7 +4906,7 @@ snapshots:
4906 '@babel/parser': 7.29.0
4907 '@babel/template': 7.28.6
4908 '@babel/types': 7.29.0
5293 - debug: 4.4.3(supports-color@8.1.1)
4909 + debug: 4.4.3
4910 transitivePeerDependencies:
4911 - supports-color
4912
@@ -5416,34 +5032,6 @@ snapshots:
5032
5033 '@csstools/css-tokenizer@4.0.0': {}
5034
5419 - '@cypress/request@3.0.10':
5420 - dependencies:
5421 - aws-sign2: 0.7.0
5422 - aws4: 1.13.2
5423 - caseless: 0.12.0
5424 - combined-stream: 1.0.8
5425 - extend: 3.0.2
5426 - forever-agent: 0.6.1
5427 - form-data: 4.0.5
5428 - http-signature: 1.4.0
5429 - is-typedarray: 1.0.0
5430 - isstream: 0.1.2
5431 - json-stringify-safe: 5.0.1
5432 - mime-types: 2.1.35
5433 - performance-now: 2.1.0
5434 - qs: 6.14.2
5435 - safe-buffer: 5.2.1
5436 - tough-cookie: 5.1.2
5437 - tunnel-agent: 0.6.0
5438 - uuid: 8.3.2
5439 -
5440 - '@cypress/xvfb@1.2.4(supports-color@8.1.1)':
5441 - dependencies:
5442 - debug: 3.2.7(supports-color@8.1.1)
5443 - lodash.once: 4.1.1
5444 - transitivePeerDependencies:
5445 - - supports-color
5446 -
5035 '@emotion/hash@0.8.0': {}
5036
5037 '@es-joy/jsdoccomment@0.78.0':
@@ -5564,7 +5152,7 @@ snapshots:
5152 '@eslint/config-array@0.23.1':
5153 dependencies:
5154 '@eslint/object-schema': 3.0.1
5567 - debug: 4.4.3(supports-color@8.1.1)
5155 + debug: 4.4.3
5156 minimatch: 10.2.1
5157 transitivePeerDependencies:
5158 - supports-color
@@ -5630,7 +5218,7 @@ snapshots:
5218
5219 '@hapi/pinpoint@2.0.1': {}
5220
5633 - '@hapi/tlds@1.1.5': {}
5221 + '@hapi/tlds@1.1.6': {}
5222
5223 '@hapi/topo@6.0.2':
5224 dependencies:
@@ -5753,6 +5341,14 @@ snapshots:
5341
5342 '@one-ini/wasm@0.1.1': {}
5343
5344 + '@ota-meshi/ast-token-store@0.2.0(@eslint/markdown@7.5.1)(eslint@10.0.0(jiti@2.6.1))':
5345 + dependencies:
5346 + '@eslint/markdown': 7.5.1
5347 + eslint: 10.0.0(jiti@2.6.1)
5348 + eslint-plugin-markdown-preferences: 0.40.2(@eslint/markdown@7.5.1)(eslint@10.0.0(jiti@2.6.1))
5349 + transitivePeerDependencies:
5350 + - supports-color
5351 +
5352 '@parcel/watcher-android-arm64@2.5.6':
5353 optional: true
5354
@@ -6107,16 +5703,10 @@ snapshots:
5703
5704 '@types/parse-json@4.0.2': {}
5705
6110 - '@types/sinonjs__fake-timers@8.1.1': {}
6111 -
6112 - '@types/sizzle@2.3.10': {}
6113 -
5706 '@types/tern@0.23.9':
5707 dependencies:
5708 '@types/estree': 1.0.8
5709
6118 - '@types/tmp@0.2.6': {}
6119 -
5710 '@types/tough-cookie@4.0.5': {}
5711
5712 '@types/unist@3.0.3': {}
@@ -6125,11 +5715,6 @@ snapshots:
5715
5716 '@types/web-bluetooth@0.0.21': {}
5717
6128 - '@types/yauzl@2.10.3':
6129 - dependencies:
6130 - '@types/node': 25.2.3
6131 - optional: true
6132 -
5718 '@typescript-eslint/eslint-plugin@8.56.0(@typescript-eslint/parser@8.56.0(eslint@10.0.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.0(jiti@2.6.1))(typescript@5.9.3)':
5719 dependencies:
5720 '@eslint-community/regexpp': 4.12.2
@@ -6152,7 +5737,7 @@ snapshots:
5737 '@typescript-eslint/types': 8.56.0
5738 '@typescript-eslint/typescript-estree': 8.56.0(typescript@5.9.3)
5739 '@typescript-eslint/visitor-keys': 8.56.0
6155 - debug: 4.4.3(supports-color@8.1.1)
5740 + debug: 4.4.3
5741 eslint: 10.0.0(jiti@2.6.1)
5742 typescript: 5.9.3
5743 transitivePeerDependencies:
@@ -6162,7 +5747,7 @@ snapshots:
5747 dependencies:
5748 '@typescript-eslint/tsconfig-utils': 8.56.0(typescript@5.9.3)
5749 '@typescript-eslint/types': 8.56.0
6165 - debug: 4.4.3(supports-color@8.1.1)
5750 + debug: 4.4.3
5751 typescript: 5.9.3
5752 transitivePeerDependencies:
5753 - supports-color
@@ -6181,7 +5766,7 @@ snapshots:
5766 '@typescript-eslint/types': 8.56.0
5767 '@typescript-eslint/typescript-estree': 8.56.0(typescript@5.9.3)
5768 '@typescript-eslint/utils': 8.56.0(eslint@10.0.0(jiti@2.6.1))(typescript@5.9.3)
6184 - debug: 4.4.3(supports-color@8.1.1)
5769 + debug: 4.4.3
5770 eslint: 10.0.0(jiti@2.6.1)
5771 ts-api-utils: 2.4.0(typescript@5.9.3)
5772 typescript: 5.9.3
@@ -6196,7 +5781,7 @@ snapshots:
5781 '@typescript-eslint/tsconfig-utils': 8.56.0(typescript@5.9.3)
5782 '@typescript-eslint/types': 8.56.0
5783 '@typescript-eslint/visitor-keys': 8.56.0
6199 - debug: 4.4.3(supports-color@8.1.1)
5784 + debug: 4.4.3
5785 minimatch: 9.0.5
5786 semver: 7.7.4
5787 tinyglobby: 0.2.15
@@ -6547,11 +6132,6 @@ snapshots:
6132
6133 agent-base@7.1.4: {}
6134
6550 - aggregate-error@3.1.0:
6551 - dependencies:
6552 - clean-stack: 2.2.0
6553 - indent-string: 4.0.0
6554 -
6135 ajv@6.12.6:
6136 dependencies:
6137 fast-deep-equal: 3.1.3
@@ -6578,12 +6158,6 @@ snapshots:
6158
6159 alien-signals@3.1.2: {}
6160
6581 - ansi-colors@4.1.3: {}
6582 -
6583 - ansi-escapes@4.3.2:
6584 - dependencies:
6585 - type-fest: 0.21.3
6586 -
6161 ansi-regex@5.0.1: {}
6162
6163 ansi-regex@6.2.2: {}
@@ -6600,8 +6174,6 @@ snapshots:
6174 dependencies:
6175 '@yr/monotone-cubic-spline': 1.0.3
6176
6603 - arch@2.2.0: {}
6604 -
6177 are-docs-informative@0.0.2: {}
6178
6179 arg@5.0.2: {}
@@ -6618,12 +6190,6 @@ snapshots:
6190
6191 arrify@2.0.1: {}
6192
6621 - asn1@0.2.6:
6622 - dependencies:
6623 - safer-buffer: 2.1.2
6624 -
6625 - assert-plus@1.0.0: {}
6626 -
6193 assertion-error@2.0.1: {}
6194
6195 ast-kit@2.2.0:
@@ -6636,18 +6202,10 @@ snapshots:
6202 '@babel/parser': 7.29.0
6203 ast-kit: 2.2.0
6204
6639 - astral-regex@2.0.0: {}
6640 -
6205 async-validator@4.2.5: {}
6206
6207 asynckit@0.4.0: {}
6208
6645 - at-least-node@1.0.0: {}
6646 -
6647 - aws-sign2@0.7.0: {}
6648 -
6649 - aws4@1.13.2: {}
6650 -
6209 axios@1.13.5(debug@4.4.3):
6210 dependencies:
6211 follow-redirects: 1.15.11(debug@4.4.3)
@@ -6662,22 +6220,14 @@ snapshots:
6220 dependencies:
6221 jackspeak: 4.2.3
6222
6665 - base64-js@1.5.1: {}
6666 -
6223 baseline-browser-mapping@2.9.19: {}
6224
6669 - bcrypt-pbkdf@1.0.2:
6670 - dependencies:
6671 - tweetnacl: 0.14.5
6672 -
6225 bidi-js@1.0.3:
6226 dependencies:
6227 require-from-string: 2.0.2
6228
6229 birpc@2.9.0: {}
6230
6679 - blob-util@2.0.2: {}
6680 -
6231 bluebird@3.7.2: {}
6232
6233 boolbase@1.0.0: {}
@@ -6707,13 +6257,6 @@ snapshots:
6257 node-releases: 2.0.27
6258 update-browserslist-db: 1.2.3(browserslist@4.28.1)
6259
6710 - buffer-crc32@0.2.13: {}
6711 -
6712 - buffer@5.7.1:
6713 - dependencies:
6714 - base64-js: 1.5.1
6715 - ieee754: 1.2.1
6716 -
6260 builtin-modules@5.0.0: {}
6261
6262 bundle-name@4.1.0:
@@ -6740,18 +6283,11 @@ snapshots:
6283
6284 cac@6.7.14: {}
6285
6743 - cachedir@2.4.0: {}
6744 -
6286 call-bind-apply-helpers@1.0.2:
6287 dependencies:
6288 es-errors: 1.3.0
6289 function-bind: 1.1.2
6290
6750 - call-bound@1.0.4:
6751 - dependencies:
6752 - call-bind-apply-helpers: 1.0.2
6753 - get-intrinsic: 1.3.0
6754 -
6291 callsite@1.0.0: {}
6292
6293 callsites@3.1.0: {}
@@ -6760,17 +6296,10 @@ snapshots:
6296
6297 caniuse-lite@1.0.30001770: {}
6298
6763 - caseless@0.12.0: {}
6764 -
6299 ccount@2.0.1: {}
6300
6301 chai@6.2.2: {}
6302
6769 - chalk@4.1.2:
6770 - dependencies:
6771 - ansi-styles: 4.3.0
6772 - supports-color: 7.2.0
6773 -
6303 change-case@5.4.4: {}
6304
6305 character-entities-html4@2.1.0: {}
@@ -6805,23 +6334,6 @@ snapshots:
6334 dependencies:
6335 escape-string-regexp: 1.0.5
6336
6808 - clean-stack@2.2.0: {}
6809 -
6810 - cli-cursor@3.1.0:
6811 - dependencies:
6812 - restore-cursor: 3.1.0
6813 -
6814 - cli-table3@0.6.1:
6815 - dependencies:
6816 - string-width: 4.2.3
6817 - optionalDependencies:
6818 - colors: 1.4.0
6819 -
6820 - cli-truncate@2.1.0:
6821 - dependencies:
6822 - slice-ansi: 3.0.0
6823 - string-width: 4.2.3
6824 -
6337 cliui@7.0.4:
6338 dependencies:
6339 string-width: 4.2.3
@@ -6852,11 +6364,6 @@ snapshots:
6364
6365 colord@2.9.3: {}
6366
6855 - colorette@2.0.20: {}
6856 -
6857 - colors@1.4.0:
6858 - optional: true
6859 -
6367 combined-stream@1.0.8:
6368 dependencies:
6369 delayed-stream: 1.0.0
@@ -6865,16 +6372,14 @@ snapshots:
6372
6373 commander@10.0.1: {}
6374
6868 - commander@6.2.1: {}
6869 -
6375 commander@7.2.0: {}
6376
6377 + commander@8.3.0: {}
6378 +
6379 comment-parser@1.4.1: {}
6380
6381 comment-parser@1.4.5: {}
6382
6876 - common-tags@1.8.2: {}
6877 -
6383 concat-map@0.0.1: {}
6384
6385 confbox@0.1.8: {}
@@ -6899,8 +6404,6 @@ snapshots:
6404 dependencies:
6405 browserslist: 4.28.1
6406
6902 - core-util-is@1.0.2: {}
6903 -
6407 cosmiconfig@7.1.0:
6408 dependencies:
6409 '@types/parse-json': 4.0.2
@@ -6966,55 +6469,6 @@ snapshots:
6469
6470 csstype@3.2.3: {}
6471
6969 - cypress@15.10.0:
6970 - dependencies:
6971 - '@cypress/request': 3.0.10
6972 - '@cypress/xvfb': 1.2.4(supports-color@8.1.1)
6973 - '@types/sinonjs__fake-timers': 8.1.1
6974 - '@types/sizzle': 2.3.10
6975 - '@types/tmp': 0.2.6
6976 - arch: 2.2.0
6977 - blob-util: 2.0.2
6978 - bluebird: 3.7.2
6979 - buffer: 5.7.1
6980 - cachedir: 2.4.0
6981 - chalk: 4.1.2
6982 - ci-info: 4.4.0
6983 - cli-cursor: 3.1.0
6984 - cli-table3: 0.6.1
6985 - commander: 6.2.1
6986 - common-tags: 1.8.2
6987 - dayjs: 1.11.19
6988 - debug: 4.4.3(supports-color@8.1.1)
6989 - enquirer: 2.4.1
6990 - eventemitter2: 6.4.7
6991 - execa: 4.1.0
6992 - executable: 4.1.1
6993 - extract-zip: 2.0.1(supports-color@8.1.1)
6994 - figures: 3.2.0
6995 - fs-extra: 9.1.0
6996 - hasha: 5.2.2
6997 - is-installed-globally: 0.4.0
6998 - listr2: 3.14.0(enquirer@2.4.1)
6999 - lodash: 4.17.23
7000 - log-symbols: 4.1.0
7001 - minimist: 1.2.8
7002 - ospath: 1.2.2
7003 - pretty-bytes: 5.6.0
7004 - process: 0.11.10
7005 - proxy-from-env: 1.0.0
7006 - request-progress: 3.0.0
7007 - supports-color: 8.1.1
7008 - systeminformation: 5.31.0
7009 - tmp: 0.2.5
7010 - tree-kill: 1.2.2
7011 - untildify: 4.0.0
7012 - yauzl: 2.10.0
7013 -
7014 - dashdash@1.14.1:
7015 - dependencies:
7016 - assert-plus: 1.0.0
7017 -
6472 data-urls@7.0.0:
6473 dependencies:
6474 whatwg-mimetype: 5.0.0
@@ -7032,17 +6486,9 @@ snapshots:
6486
6487 debounce@1.2.1: {}
6488
7035 - debug@3.2.7(supports-color@8.1.1):
7036 - dependencies:
7037 - ms: 2.1.3
7038 - optionalDependencies:
7039 - supports-color: 8.1.1
7040 -
7041 - debug@4.4.3(supports-color@8.1.1):
6489 + debug@4.4.3:
6490 dependencies:
6491 ms: 2.1.3
7044 - optionalDependencies:
7045 - supports-color: 8.1.1
6492
6493 decimal.js@10.6.0: {}
6494
@@ -7075,7 +6521,7 @@ snapshots:
6521 callsite: 1.0.0
6522 camelcase: 6.3.0
6523 cosmiconfig: 7.1.0
7078 - debug: 4.4.3(supports-color@8.1.1)
6524 + debug: 4.4.3
6525 deps-regex: 0.2.0
6526 findup-sync: 5.0.0
6527 ignore: 5.3.2
@@ -7148,11 +6594,6 @@ snapshots:
6594
6595 easy-bem@1.1.1: {}
6596
7151 - ecc-jsbn@0.1.2:
7152 - dependencies:
7153 - jsbn: 0.1.1
7154 - safer-buffer: 2.1.2
7155 -
6597 echarts@6.0.0:
6598 dependencies:
6599 tslib: 2.3.0
@@ -7167,26 +6608,19 @@ snapshots:
6608
6609 electron-to-chromium@1.5.286: {}
6610
6611 + emoji-regex-xs@2.0.1: {}
6612 +
6613 emoji-regex@8.0.0: {}
6614
6615 emoji-regex@9.2.2: {}
6616
6617 empathic@2.0.0: {}
6618
7176 - end-of-stream@1.4.5:
7177 - dependencies:
7178 - once: 1.4.0
7179 -
6619 enhanced-resolve@5.19.0:
6620 dependencies:
6621 graceful-fs: 4.2.11
6622 tapable: 2.3.0
6623
7185 - enquirer@2.4.1:
7186 - dependencies:
7187 - ansi-colors: 4.1.3
7188 - strip-ansi: 6.0.1
7189 -
6624 entities@4.5.0: {}
6625
6626 entities@6.0.1: {}
@@ -7312,7 +6746,7 @@ snapshots:
6746 '@es-joy/resolve.exports': 1.2.0
6747 are-docs-informative: 0.0.2
6748 comment-parser: 1.4.5
7315 - debug: 4.4.3(supports-color@8.1.1)
6749 + debug: 4.4.3
6750 escape-string-regexp: 4.0.0
6751 eslint: 10.0.0(jiti@2.6.1)
6752 espree: 11.1.0
@@ -7341,6 +6775,26 @@ snapshots:
6775 transitivePeerDependencies:
6776 - '@eslint/json'
6777
6778 + eslint-plugin-markdown-preferences@0.40.2(@eslint/markdown@7.5.1)(eslint@10.0.0(jiti@2.6.1)):
6779 + dependencies:
6780 + '@eslint/markdown': 7.5.1
6781 + diff-sequences: 29.6.3
6782 + emoji-regex-xs: 2.0.1
6783 + eslint: 10.0.0(jiti@2.6.1)
6784 + mdast-util-from-markdown: 2.0.2
6785 + mdast-util-frontmatter: 2.0.1
6786 + mdast-util-gfm: 3.1.0
6787 + mdast-util-math: 3.0.0
6788 + micromark-extension-frontmatter: 2.0.0
6789 + micromark-extension-gfm: 3.0.0
6790 + micromark-extension-math: 3.1.0
6791 + micromark-factory-space: 2.0.1
6792 + micromark-util-character: 2.1.1
6793 + micromark-util-symbol: 2.0.1
6794 + string-width: 8.1.1
6795 + transitivePeerDependencies:
6796 + - supports-color
6797 +
6798 eslint-plugin-n@17.24.0(eslint@10.0.0(jiti@2.6.1))(typescript@5.9.3):
6799 dependencies:
6800 '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.0(jiti@2.6.1))
@@ -7389,14 +6843,16 @@ snapshots:
6843 regexp-ast-analysis: 0.7.1
6844 scslre: 0.3.0
6845
7392 - eslint-plugin-toml@1.0.4(eslint@10.0.0(jiti@2.6.1)):
6846 + eslint-plugin-toml@1.1.0(@eslint/markdown@7.5.1)(eslint@10.0.0(jiti@2.6.1)):
6847 dependencies:
6848 '@eslint/core': 1.1.0
6849 '@eslint/plugin-kit': 0.6.0
7396 - debug: 4.4.3(supports-color@8.1.1)
6850 + '@ota-meshi/ast-token-store': 0.2.0(@eslint/markdown@7.5.1)(eslint@10.0.0(jiti@2.6.1))
6851 + debug: 4.4.3
6852 eslint: 10.0.0(jiti@2.6.1)
6853 toml-eslint-parser: 1.0.3
6854 transitivePeerDependencies:
6855 + - '@eslint/markdown'
6856 - supports-color
6857
6858 eslint-plugin-unicorn@63.0.0(eslint@10.0.0(jiti@2.6.1)):
@@ -7439,17 +6895,19 @@ snapshots:
6895 '@stylistic/eslint-plugin': 5.8.0(eslint@10.0.0(jiti@2.6.1))
6896 '@typescript-eslint/parser': 8.56.0(eslint@10.0.0(jiti@2.6.1))(typescript@5.9.3)
6897
7442 - eslint-plugin-yml@3.1.2(eslint@10.0.0(jiti@2.6.1)):
6898 + eslint-plugin-yml@3.2.0(@eslint/markdown@7.5.1)(eslint@10.0.0(jiti@2.6.1)):
6899 dependencies:
6900 '@eslint/core': 1.1.0
6901 '@eslint/plugin-kit': 0.6.0
7446 - debug: 4.4.3(supports-color@8.1.1)
6902 + '@ota-meshi/ast-token-store': 0.2.0(@eslint/markdown@7.5.1)(eslint@10.0.0(jiti@2.6.1))
6903 + debug: 4.4.3
6904 diff-sequences: 29.6.3
6905 escape-string-regexp: 5.0.0
6906 eslint: 10.0.0(jiti@2.6.1)
6907 natural-compare: 1.4.0
6908 yaml-eslint-parser: 2.0.0
6909 transitivePeerDependencies:
6910 + - '@eslint/markdown'
6911 - supports-color
6912
6913 eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.28)(eslint@10.0.0(jiti@2.6.1)):
@@ -7484,7 +6942,7 @@ snapshots:
6942 '@types/estree': 1.0.8
6943 ajv: 6.12.6
6944 cross-spawn: 7.0.6
7487 - debug: 4.4.3(supports-color@8.1.1)
6945 + debug: 4.4.3
6946 escape-string-regexp: 4.0.0
6947 eslint-scope: 9.1.0
6948 eslint-visitor-keys: 5.0.0
@@ -7555,22 +7013,8 @@ snapshots:
7013 stream-combiner: 0.0.4
7014 through: 2.3.8
7015
7558 - eventemitter2@6.4.7: {}
7559 -
7016 evtd@0.2.4: {}
7017
7562 - execa@4.1.0:
7563 - dependencies:
7564 - cross-spawn: 7.0.6
7565 - get-stream: 5.2.0
7566 - human-signals: 1.1.1
7567 - is-stream: 2.0.1
7568 - merge-stream: 2.0.0
7569 - npm-run-path: 4.0.1
7570 - onetime: 5.1.2
7571 - signal-exit: 3.0.7
7572 - strip-final-newline: 2.0.0
7573 -
7018 execa@5.1.1:
7019 dependencies:
7020 cross-spawn: 7.0.6
@@ -7583,10 +7027,6 @@ snapshots:
7027 signal-exit: 3.0.7
7028 strip-final-newline: 2.0.0
7029
7586 - executable@4.1.1:
7587 - dependencies:
7588 - pify: 2.3.0
7589 -
7030 expand-tilde@2.0.2:
7031 dependencies:
7032 homedir-polyfill: 1.0.3
@@ -7595,20 +7035,6 @@ snapshots:
7035
7036 exsolve@1.0.8: {}
7037
7598 - extend@3.0.2: {}
7599 -
7600 - extract-zip@2.0.1(supports-color@8.1.1):
7601 - dependencies:
7602 - debug: 4.4.3(supports-color@8.1.1)
7603 - get-stream: 5.2.0
7604 - yauzl: 2.10.0
7605 - optionalDependencies:
7606 - '@types/yauzl': 2.10.3
7607 - transitivePeerDependencies:
7608 - - supports-color
7609 -
7610 - extsprintf@1.3.0: {}
7611 -
7038 fast-deep-equal@3.1.3: {}
7039
7040 fast-json-stable-stringify@2.1.0: {}
@@ -7623,18 +7049,10 @@ snapshots:
7049 dependencies:
7050 format: 0.2.2
7051
7626 - fd-slicer@1.1.0:
7627 - dependencies:
7628 - pend: 1.2.0
7629 -
7052 fdir@6.5.0(picomatch@4.0.3):
7053 optionalDependencies:
7054 picomatch: 4.0.3
7055
7634 - figures@3.2.0:
7635 - dependencies:
7636 - escape-string-regexp: 1.0.5
7637 -
7056 file-entry-cache@8.0.0:
7057 dependencies:
7058 flat-cache: 4.0.1
@@ -7670,15 +7088,13 @@ snapshots:
7088
7089 follow-redirects@1.15.11(debug@4.4.3):
7090 optionalDependencies:
7673 - debug: 4.4.3(supports-color@8.1.1)
7091 + debug: 4.4.3
7092
7093 foreground-child@3.3.1:
7094 dependencies:
7095 cross-spawn: 7.0.6
7096 signal-exit: 4.1.0
7097
7680 - forever-agent@0.6.1: {}
7681 -
7098 form-data@4.0.5:
7099 dependencies:
7100 asynckit: 0.4.0
@@ -7701,13 +7117,6 @@ snapshots:
7117 jsonfile: 6.2.0
7118 universalify: 2.0.1
7119
7704 - fs-extra@9.1.0:
7705 - dependencies:
7706 - at-least-node: 1.0.0
7707 - graceful-fs: 4.2.11
7708 - jsonfile: 6.2.0
7709 - universalify: 2.0.1
7710 -
7120 fsevents@2.3.3:
7121 optional: true
7122
@@ -7719,6 +7128,8 @@ snapshots:
7128
7129 get-caller-file@2.0.5: {}
7130
7131 + get-east-asian-width@1.4.0: {}
7132 +
7133 get-intrinsic@1.3.0:
7134 dependencies:
7135 call-bind-apply-helpers: 1.0.2
@@ -7737,20 +7148,12 @@ snapshots:
7148 dunder-proto: 1.0.1
7149 es-object-atoms: 1.1.1
7150
7740 - get-stream@5.2.0:
7741 - dependencies:
7742 - pump: 3.0.3
7743 -
7151 get-stream@6.0.1: {}
7152
7153 get-tsconfig@4.13.6:
7154 dependencies:
7155 resolve-pkg-maps: 1.0.0
7156
7750 - getpass@0.1.7:
7751 - dependencies:
7752 - assert-plus: 1.0.0
7753 -
7157 giget@2.0.0:
7158 dependencies:
7159 citty: 0.1.6
@@ -7776,10 +7179,6 @@ snapshots:
7179 package-json-from-dist: 1.0.1
7180 path-scurry: 1.11.1
7181
7779 - global-dirs@3.0.1:
7780 - dependencies:
7781 - ini: 2.0.0
7782 -
7182 global-modules@1.0.0:
7183 dependencies:
7184 global-prefix: 1.0.2
@@ -7808,19 +7207,12 @@ snapshots:
7207
7208 graphemer@1.4.0: {}
7209
7811 - has-flag@4.0.0: {}
7812 -
7210 has-symbols@1.1.0: {}
7211
7212 has-tostringtag@1.0.2:
7213 dependencies:
7214 has-symbols: 1.1.0
7215
7819 - hasha@5.2.2:
7820 - dependencies:
7821 - is-stream: 2.0.1
7822 - type-fest: 0.8.1
7823 -
7216 hasown@2.0.2:
7217 dependencies:
7218 function-bind: 1.1.2
@@ -7868,29 +7260,19 @@ snapshots:
7260 http-proxy-agent@7.0.2:
7261 dependencies:
7262 agent-base: 7.1.4
7871 - debug: 4.4.3(supports-color@8.1.1)
7263 + debug: 4.4.3
7264 transitivePeerDependencies:
7265 - supports-color
7266
7875 - http-signature@1.4.0:
7876 - dependencies:
7877 - assert-plus: 1.0.0
7878 - jsprim: 2.0.2
7879 - sshpk: 1.18.0
7880 -
7267 https-proxy-agent@7.0.6:
7268 dependencies:
7269 agent-base: 7.1.4
7884 - debug: 4.4.3(supports-color@8.1.1)
7270 + debug: 4.4.3
7271 transitivePeerDependencies:
7272 - supports-color
7273
7888 - human-signals@1.1.1: {}
7889 -
7274 human-signals@2.1.0: {}
7275
7892 - ieee754@1.2.1: {}
7893 -
7276 ignore@5.3.2: {}
7277
7278 ignore@7.0.5: {}
@@ -7904,7 +7286,7 @@ snapshots:
7286
7287 import-from-esm@1.3.4:
7288 dependencies:
7907 - debug: 4.4.3(supports-color@8.1.1)
7289 + debug: 4.4.3
7290 import-meta-resolve: 4.2.0
7291 transitivePeerDependencies:
7292 - supports-color
@@ -7913,14 +7295,10 @@ snapshots:
7295
7296 imurmurhash@0.1.4: {}
7297
7916 - indent-string@4.0.0: {}
7917 -
7298 indent-string@5.0.0: {}
7299
7300 ini@1.3.8: {}
7301
7922 - ini@2.0.0: {}
7923 -
7302 is-arrayish@0.2.1: {}
7303
7304 is-builtin-module@5.0.0:
@@ -7947,23 +7325,12 @@ snapshots:
7325 dependencies:
7326 is-docker: 3.0.0
7327
7950 - is-installed-globally@0.4.0:
7951 - dependencies:
7952 - global-dirs: 3.0.1
7953 - is-path-inside: 3.0.3
7954 -
7328 is-number@7.0.0: {}
7329
7957 - is-path-inside@3.0.3: {}
7958 -
7330 is-potential-custom-element-name@1.0.1: {}
7331
7332 is-stream@2.0.1: {}
7333
7963 - is-typedarray@1.0.0: {}
7964 -
7965 - is-unicode-supported@0.1.0: {}
7966 -
7334 is-what@5.5.0: {}
7335
7336 is-windows@1.0.2: {}
@@ -7980,8 +7347,6 @@ snapshots:
7347
7348 isexe@3.1.5: {}
7349
7983 - isstream@0.1.2: {}
7984 -
7350 jackspeak@3.4.3:
7351 dependencies:
7352 '@isaacs/cliui': 8.0.2
@@ -8000,7 +7365,7 @@ snapshots:
7365 '@hapi/formula': 3.0.2
7366 '@hapi/hoek': 11.0.7
7367 '@hapi/pinpoint': 2.0.1
8003 - '@hapi/tlds': 1.1.5
7368 + '@hapi/tlds': 1.1.6
7369 '@hapi/topo': 6.0.2
7370 '@standard-schema/spec': 1.1.0
7371
@@ -8025,8 +7390,6 @@ snapshots:
7390 argparse: 1.0.10
7391 esprima: 4.0.1
7392
8028 - jsbn@0.1.1: {}
8029 -
7393 jsdoc-type-pratt-parser@7.0.0: {}
7394
7395 jsdoc-type-pratt-parser@7.1.1: {}
@@ -8068,12 +7431,8 @@ snapshots:
7431
7432 json-schema-traverse@0.4.1: {}
7433
8071 - json-schema@0.4.0: {}
8072 -
7434 json-stable-stringify-without-jsonify@1.0.1: {}
7435
8075 - json-stringify-safe@5.0.1: {}
8076 -
7436 json5@2.2.3: {}
7437
7438 jsonc-eslint-parser@2.4.2:
@@ -8089,12 +7448,9 @@ snapshots:
7448 optionalDependencies:
7449 graceful-fs: 4.2.11
7450
8092 - jsprim@2.0.2:
7451 + katex@0.16.28:
7452 dependencies:
8094 - assert-plus: 1.0.0
8095 - extsprintf: 1.3.0
8096 - json-schema: 0.4.0
8097 - verror: 1.10.0
7453 + commander: 8.3.0
7454
7455 keyv@4.5.4:
7456 dependencies:
@@ -8170,19 +7526,6 @@ snapshots:
7526 dependencies:
7527 uc.micro: 2.1.0
7528
8173 - listr2@3.14.0(enquirer@2.4.1):
8174 - dependencies:
8175 - cli-truncate: 2.1.0
8176 - colorette: 2.0.20
8177 - log-update: 4.0.0
8178 - p-map: 4.0.0
8179 - rfdc: 1.4.1
8180 - rxjs: 7.8.2
8181 - through: 2.3.8
8182 - wrap-ansi: 7.0.0
8183 - optionalDependencies:
8184 - enquirer: 2.4.1
8185 -
7529 local-pkg@1.1.2:
7530 dependencies:
7531 mlly: 1.8.0
@@ -8195,24 +7538,10 @@ snapshots:
7538
7539 lodash-es@4.17.23: {}
7540
8198 - lodash.once@4.1.1: {}
8199 -
7541 lodash@4.17.21: {}
7542
7543 lodash@4.17.23: {}
7544
8204 - log-symbols@4.1.0:
8205 - dependencies:
8206 - chalk: 4.1.2
8207 - is-unicode-supported: 0.1.0
8208 -
8209 - log-update@4.0.0:
8210 - dependencies:
8211 - ansi-escapes: 4.3.2
8212 - cli-cursor: 3.1.0
8213 - slice-ansi: 4.0.0
8214 - wrap-ansi: 6.2.0
8215 -
7545 longest-streak@3.1.0: {}
7546
7547 lru-cache@10.4.3: {}
@@ -8340,6 +7669,18 @@ snapshots:
7669 transitivePeerDependencies:
7670 - supports-color
7671
7672 + mdast-util-math@3.0.0:
7673 + dependencies:
7674 + '@types/hast': 3.0.4
7675 + '@types/mdast': 4.0.4
7676 + devlop: 1.1.0
7677 + longest-streak: 3.1.0
7678 + mdast-util-from-markdown: 2.0.2
7679 + mdast-util-to-markdown: 2.1.2
7680 + unist-util-remove-position: 5.0.0
7681 + transitivePeerDependencies:
7682 + - supports-color
7683 +
7684 mdast-util-phrasing@4.1.0:
7685 dependencies:
7686 '@types/mdast': 4.0.4
@@ -8469,6 +7810,16 @@ snapshots:
7810 micromark-util-combine-extensions: 2.0.1
7811 micromark-util-types: 2.0.2
7812
7813 + micromark-extension-math@3.1.0:
7814 + dependencies:
7815 + '@types/katex': 0.16.8
7816 + devlop: 1.1.0
7817 + katex: 0.16.28
7818 + micromark-factory-space: 2.0.1
7819 + micromark-util-character: 2.1.1
7820 + micromark-util-symbol: 2.0.1
7821 + micromark-util-types: 2.0.2
7822 +
7823 micromark-factory-destination@2.0.1:
7824 dependencies:
7825 micromark-util-character: 2.1.1
@@ -8564,7 +7915,7 @@ snapshots:
7915 micromark@4.0.2:
7916 dependencies:
7917 '@types/debug': 4.1.12
8567 - debug: 4.4.3(supports-color@8.1.1)
7918 + debug: 4.4.3
7919 decode-named-character-reference: 1.3.0
7920 devlop: 1.1.0
7921 micromark-core-commonmark: 2.0.3
@@ -8717,8 +8068,6 @@ snapshots:
8068
8069 object-deep-merge@2.0.0: {}
8070
8720 - object-inspect@1.13.4: {}
8721 -
8071 obug@2.1.1: {}
8072
8073 ofetch@1.5.1:
@@ -8729,10 +8078,6 @@ snapshots:
8078
8079 ohash@2.0.11: {}
8080
8732 - once@1.4.0:
8733 - dependencies:
8734 - wrappy: 1.0.2
8735 -
8081 onetime@5.1.2:
8082 dependencies:
8083 mimic-fn: 2.1.0
@@ -8771,8 +8116,6 @@ snapshots:
8116 type-check: 0.4.0
8117 word-wrap: 1.2.5
8118
8774 - ospath@1.2.2: {}
8775 -
8119 p-limit@3.1.0:
8120 dependencies:
8121 yocto-queue: 0.1.0
@@ -8781,10 +8124,6 @@ snapshots:
8124 dependencies:
8125 p-limit: 3.1.0
8126
8784 - p-map@4.0.0:
8785 - dependencies:
8786 - aggregate-error: 3.1.0
8787 -
8127 package-json-from-dist@1.0.1: {}
8128
8129 package-manager-detector@1.6.0: {}
@@ -8841,14 +8180,10 @@ snapshots:
8180 dependencies:
8181 through: 2.3.8
8182
8844 - pend@1.2.0: {}
8845 -
8183 perfect-debounce@1.0.0: {}
8184
8185 perfect-debounce@2.1.0: {}
8186
8850 - performance-now@2.1.0: {}
8851 -
8187 picocolors@1.1.1: {}
8188
8189 picomatch@2.3.1: {}
@@ -8857,8 +8192,6 @@ snapshots:
8192
8193 pidtree@0.6.0: {}
8194
8860 - pify@2.3.0: {}
8861 -
8195 pinia-plugin-persistedstate@4.7.1(@nuxt/kit@3.21.1)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))):
8196 dependencies:
8197 defu: 6.1.4
@@ -8921,35 +8254,20 @@ snapshots:
8254
8255 prettier@3.8.1: {}
8256
8924 - pretty-bytes@5.6.0: {}
8925 -
8926 - process@0.11.10: {}
8927 -
8257 property-information@7.1.0: {}
8258
8259 proto-list@1.2.4: {}
8260
8932 - proxy-from-env@1.0.0: {}
8933 -
8261 proxy-from-env@1.1.0: {}
8262
8263 ps-tree@1.2.0:
8264 dependencies:
8265 event-stream: 3.3.4
8266
8940 - pump@3.0.3:
8941 - dependencies:
8942 - end-of-stream: 1.4.5
8943 - once: 1.4.0
8944 -
8267 punycode.js@2.3.1: {}
8268
8269 punycode@2.3.1: {}
8270
8949 - qs@6.14.2:
8950 - dependencies:
8951 - side-channel: 1.1.0
8952 -
8271 quansync@0.2.11: {}
8272
8273 quansync@1.0.0: {}
@@ -9004,10 +8322,6 @@ snapshots:
8322 dependencies:
8323 jsesc: 3.1.0
8324
9007 - request-progress@3.0.0:
9008 - dependencies:
9009 - throttleit: 1.0.1
9010 -
8325 require-directory@2.1.1: {}
8326
8327 require-from-string@2.0.2: {}
@@ -9033,11 +8347,6 @@ snapshots:
8347 path-parse: 1.0.7
8348 supports-preserve-symlinks-flag: 1.0.0
8349
9036 - restore-cursor@3.1.0:
9037 - dependencies:
9038 - onetime: 5.1.2
9039 - signal-exit: 3.0.7
9040 -
8350 restore-cursor@5.1.0:
8351 dependencies:
8352 onetime: 7.0.0
@@ -9091,10 +8400,6 @@ snapshots:
8400 dependencies:
8401 tslib: 2.8.1
8402
9094 - safe-buffer@5.2.1: {}
9095 -
9096 - safer-buffer@2.1.2: {}
9097 -
8403 sass@1.97.3:
8404 dependencies:
8405 chokidar: 4.0.3
@@ -9147,34 +8452,6 @@ snapshots:
8452 '@shikijs/vscode-textmate': 10.0.2
8453 '@types/hast': 3.0.4
8454
9150 - side-channel-list@1.0.0:
9151 - dependencies:
9152 - es-errors: 1.3.0
9153 - object-inspect: 1.13.4
9154 -
9155 - side-channel-map@1.0.1:
9156 - dependencies:
9157 - call-bound: 1.0.4
9158 - es-errors: 1.3.0
9159 - get-intrinsic: 1.3.0
9160 - object-inspect: 1.13.4
9161 -
9162 - side-channel-weakmap@1.0.2:
9163 - dependencies:
9164 - call-bound: 1.0.4
9165 - es-errors: 1.3.0
9166 - get-intrinsic: 1.3.0
9167 - object-inspect: 1.13.4
9168 - side-channel-map: 1.0.1
9169 -
9170 - side-channel@1.1.0:
9171 - dependencies:
9172 - es-errors: 1.3.0
9173 - object-inspect: 1.13.4
9174 - side-channel-list: 1.0.0
9175 - side-channel-map: 1.0.1
9176 - side-channel-weakmap: 1.0.2
9177 -
8455 siginfo@2.0.0: {}
8456
8457 signal-exit@3.0.7: {}
@@ -9189,18 +8466,6 @@ snapshots:
8466
8467 sisteransi@1.0.5: {}
8468
9192 - slice-ansi@3.0.0:
9193 - dependencies:
9194 - ansi-styles: 4.3.0
9195 - astral-regex: 2.0.0
9196 - is-fullwidth-code-point: 3.0.0
9197 -
9198 - slice-ansi@4.0.0:
9199 - dependencies:
9200 - ansi-styles: 4.3.0
9201 - astral-regex: 2.0.0
9202 - is-fullwidth-code-point: 3.0.0
9203 -
8469 sortablejs@1.14.0: {}
8470
8471 source-map-js@1.2.1: {}
@@ -9226,18 +8491,6 @@ snapshots:
8491
8492 sprintf-js@1.0.3: {}
8493
9229 - sshpk@1.18.0:
9230 - dependencies:
9231 - asn1: 0.2.6
9232 - assert-plus: 1.0.0
9233 - bcrypt-pbkdf: 1.0.2
9234 - dashdash: 1.14.1
9235 - ecc-jsbn: 0.1.2
9236 - getpass: 0.1.7
9237 - jsbn: 0.1.1
9238 - safer-buffer: 2.1.2
9239 - tweetnacl: 0.14.5
9240 -
8494 stackback@0.0.2: {}
8495
8496 start-server-and-test@2.1.3:
@@ -9245,7 +8498,7 @@ snapshots:
8498 arg: 5.0.2
8499 bluebird: 3.7.2
8500 check-more-types: 2.24.0
9248 - debug: 4.4.3(supports-color@8.1.1)
8501 + debug: 4.4.3
8502 execa: 5.1.1
8503 lazy-ass: 1.6.0
8504 ps-tree: 1.2.0
@@ -9271,6 +8524,11 @@ snapshots:
8524 emoji-regex: 9.2.2
8525 strip-ansi: 7.1.2
8526
8527 + string-width@8.1.1:
8528 + dependencies:
8529 + get-east-asian-width: 1.4.0
8530 + strip-ansi: 7.1.2
8531 +
8532 stringify-entities@4.0.4:
8533 dependencies:
8534 character-entities-html4: 2.1.0
@@ -9301,14 +8559,6 @@ snapshots:
8559 dependencies:
8560 copy-anything: 4.0.5
8561
9304 - supports-color@7.2.0:
9305 - dependencies:
9306 - has-flag: 4.0.0
9307 -
9308 - supports-color@8.1.1:
9309 - dependencies:
9310 - has-flag: 4.0.0
9311 -
8562 supports-preserve-symlinks-flag@1.0.0: {}
8563
8564 svgo@3.3.2:
@@ -9327,8 +8577,6 @@ snapshots:
8577 dependencies:
8578 '@pkgr/core': 0.2.9
8579
9330 - systeminformation@5.31.0: {}
9331 -
8580 tagged-tag@1.0.0: {}
8581
8582 tailwindcss@4.1.18: {}
@@ -9356,8 +8604,6 @@ snapshots:
8604 '@codemirror/state': 6.5.4
8605 '@codemirror/view': 6.39.14
8606
9359 - throttleit@1.0.1: {}
9360 -
8607 through@2.3.8: {}
8608
8609 tinybench@2.9.0: {}
@@ -9371,14 +8617,8 @@ snapshots:
8617
8618 tinyrainbow@3.0.3: {}
8619
9374 - tldts-core@6.1.86: {}
9375 -
8620 tldts-core@7.0.23: {}
8621
9378 - tldts@6.1.86:
9379 - dependencies:
9380 - tldts-core: 6.1.86
9381 -
8622 tldts@7.0.23:
8623 dependencies:
8624 tldts-core: 7.0.23
@@ -9400,10 +8640,6 @@ snapshots:
8640
8641 totalist@3.0.1: {}
8642
9403 - tough-cookie@5.1.2:
9404 - dependencies:
9405 - tldts: 6.1.86
9406 -
8643 tough-cookie@6.0.0:
8644 dependencies:
8645 tldts: 7.0.23
@@ -9412,8 +8648,6 @@ snapshots:
8648 dependencies:
8649 punycode: 2.3.1
8650
9415 - tree-kill@1.2.2: {}
9416 -
8651 treemate@0.3.11: {}
8652
8653 trim-lines@3.0.1: {}
@@ -9433,20 +8667,10 @@ snapshots:
8667
8668 tslib@2.8.1: {}
8669
9436 - tunnel-agent@0.6.0:
9437 - dependencies:
9438 - safe-buffer: 5.2.1
9439 -
9440 - tweetnacl@0.14.5: {}
9441 -
8670 type-check@0.4.0:
8671 dependencies:
8672 prelude-ls: 1.2.1
8673
9446 - type-fest@0.21.3: {}
9447 -
9448 - type-fest@0.8.1: {}
9449 -
8674 type-fest@5.4.4:
8675 dependencies:
8676 tagged-tag: 1.0.0
@@ -9490,6 +8714,11 @@ snapshots:
8714 dependencies:
8715 '@types/unist': 3.0.3
8716
8717 + unist-util-remove-position@5.0.0:
8718 + dependencies:
8719 + '@types/unist': 3.0.3
8720 + unist-util-visit: 5.1.0
8721 +
8722 unist-util-stringify-position@4.0.0:
8723 dependencies:
8724 '@types/unist': 3.0.3
@@ -9526,8 +8755,6 @@ snapshots:
8755 picomatch: 4.0.3
8756 webpack-virtual-modules: 0.6.2
8757
9529 - untildify@4.0.0: {}
9530 -
8758 untyped@2.0.0:
8759 dependencies:
8760 citty: 0.1.6
@@ -9549,8 +8776,6 @@ snapshots:
8776
8777 util-deprecate@1.0.2: {}
8778
9552 - uuid@8.3.2: {}
9553 -
8779 validator@13.15.26: {}
8780
8781 vdirs@0.1.8(vue@3.5.28(typescript@5.9.3)):
@@ -9558,12 +8783,6 @@ snapshots:
8783 evtd: 0.2.4
8784 vue: 3.5.28(typescript@5.9.3)
8785
9561 - verror@1.10.0:
9562 - dependencies:
9563 - assert-plus: 1.0.0
9564 - core-util-is: 1.0.2
9565 - extsprintf: 1.3.0
9566 -
8786 vfile-message@4.0.3:
8787 dependencies:
8788 '@types/unist': 3.0.3
@@ -9598,7 +8817,7 @@ snapshots:
8817 vite-plugin-inspect@11.3.3(@nuxt/kit@3.21.1)(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(lightningcss@1.30.2)(sass@1.97.3)(yaml@2.8.2)):
8818 dependencies:
8819 ansis: 4.2.0
9601 - debug: 4.4.3(supports-color@8.1.1)
8820 + debug: 4.4.3
8821 error-stack-parser-es: 1.0.5
8822 ohash: 2.0.11
8823 open: 10.2.0
@@ -9727,7 +8946,7 @@ snapshots:
8946
8947 vue-eslint-parser@10.4.0(eslint@10.0.0(jiti@2.6.1)):
8948 dependencies:
9730 - debug: 4.4.3(supports-color@8.1.1)
8949 + debug: 4.4.3
8950 eslint: 10.0.0(jiti@2.6.1)
8951 eslint-scope: 9.1.0
8952 eslint-visitor-keys: 5.0.0
@@ -9867,12 +9086,6 @@ snapshots:
9086
9087 word-wrap@1.2.5: {}
9088
9870 - wrap-ansi@6.2.0:
9871 - dependencies:
9872 - ansi-styles: 4.3.0
9873 - string-width: 4.2.3
9874 - strip-ansi: 6.0.1
9875 -
9089 wrap-ansi@7.0.0:
9090 dependencies:
9091 ansi-styles: 4.3.0
@@ -9885,8 +9098,6 @@ snapshots:
9098 string-width: 5.1.2
9099 strip-ansi: 7.1.2
9100
9888 - wrappy@1.0.2: {}
9889 -
9101 wsl-utils@0.1.0:
9102 dependencies:
9103 is-wsl: 3.1.1
@@ -9940,11 +9151,6 @@ snapshots:
9151 y18n: 5.0.8
9152 yargs-parser: 21.1.1
9153
9943 - yauzl@2.10.0:
9944 - dependencies:
9945 - buffer-crc32: 0.2.13
9946 - fd-slicer: 1.1.0
9947 -
9154 yocto-queue@0.1.0: {}
9155
9156 zrender@6.0.0:
frontend/tsconfig.node.json
+1 -1
@@ -7,7 +7,7 @@
7 "module": "ESNext",
8
9 "moduleResolution": "bundler",
10 - "types": ["cypress", "node"],
10 + "types": ["node"],
11 "allowImportingTsExtensions": true,
12
13 "strict": true,