├── .gitignore
├── README.es.md
├── README.md
├── README.ru.md
├── README.zh.md
├── index.ts
├── package.json
├── pnpm-lock.yaml
├── tsconfig.json
├── types.d.ts
└── vite.config.js
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 | .history
26 |
--------------------------------------------------------------------------------
/README.es.md:
--------------------------------------------------------------------------------
1 | # Plugin de Inyección HTML para Vite
2 |
3 | [](https://www.npmjs.com/package/vite-plugin-html-injection)
4 | [](https://www.npmjs.com/package/vite-plugin-html-injection)
5 |
6 | [🇬🇧 English](README.md) | [🇪🇸 Español](README.es.md) | [🇷🇺 Русский](README.ru.md) | [🇨🇳 中文](README.zh.md)
7 |
8 | Plugin de Vite para inyectar fragmentos de código HTML, JS y CSS en `index.html`.
9 |
10 | ## Propósito
11 |
12 | A menudo, al desarrollar aplicaciones front-end, es necesario integrar diversas bibliotecas en el archivo `index.html`. Por ejemplo, puede que quieras incluir código para Google Analytics, service workers de PWA, metadatos de Open Graph y Twitter Card, pantallas de bienvenida, widgets de soporte al cliente y mucho más.
13 |
14 | Como resultado, `index.html` se vuelve sobrecargado y difícil de gestionar.
15 |
16 | Este plugin te permite almacenar fragmentos de código en archivos separados, manteniendo `index.html` limpio y ordenado, e inyectándolos en tiempo de compilación. No es necesario utilizar etiquetas de marcador de posición especiales en el `index.html`.
17 |
18 | El plugin también soporta `Vite dev server HMR`, lo que significa que puedes editar los fragmentos de código y ver los resultados inmediatamente en el navegador.
19 |
20 | Además, el plugin permite configuraciones diferentes en los modos de desarrollo y producción. Al especificar la propiedad `buildModes`, puedes habilitar o deshabilitar fragmentos específicos dependiendo del entorno, simplificando el desarrollo y reduciendo el código innecesario en las compilaciones de producción.
21 |
22 | ## Descripción
23 |
24 | Existen tres `tipos` de fragmentos de código: `raw`, `js` y `css`. Los fragmentos `raw` se inyectan tal cual, mientras que los fragmentos `js` y `css` se envuelven en etiquetas `
119 |
128 | ```
129 |
130 |
131 |
132 | Eso es todo. Después de ejecutar el comando `npm serve` o `npm build`, los fragmentos de código serán inyectados.
133 |
134 |
135 |
136 | ## Configuración para Diferentes Modos
137 |
138 | El plugin soporta configuraciones diferentes para los entornos de desarrollo y producción. Al configurar la propiedad `buildModes` para cada inyección, puedes controlar si un fragmento se incluye en el servidor de desarrollo, en la compilación de producción o en ambos. Esta flexibilidad te permite deshabilitar fragmentos de código innecesarios durante el desarrollo, mejorando el rendimiento y simplificando el proceso de desarrollo.
139 |
140 | ```ts:path/to/types.d.ts
141 | export interface IHtmlInjectionConfig {
142 | injections: IHtmlInjectionConfigInjection[];
143 | order?: "pre" | "post";
144 | }
145 |
146 | export interface IHtmlInjectionConfigInjection {
147 | name?: string;
148 | path: string;
149 | type?: "raw" | "js" | "css"; // valor por defecto es 'raw'
150 | injectTo: "head" | "body" | "head-prepend" | "body-prepend";
151 | buildModes?: "dev" | "prod" | "both"; // valor por defecto es 'both'
152 | }
153 | ```
154 |
155 |
156 |
157 | ## Firma
158 |
159 | El plugin está altamente tipado. Aquí está la firma de su configuración:
160 |
161 | ```ts:path/to/types.d.ts
162 | export interface IHtmlInjectionConfig {
163 | injections: IHtmlInjectionConfigInjection[];
164 | order?: "pre" | "post";
165 | }
166 |
167 | export interface IHtmlInjectionConfigInjection {
168 | name?: string;
169 | path: string;
170 | type?: "raw" | "js" | "css"; // valor por defecto es 'raw'
171 | injectTo: "head" | "body" | "head-prepend" | "body-prepend";
172 | buildModes?: "dev" | "prod" | "both"; // valor por defecto es 'both'
173 | }
174 | ```
175 |
176 |
177 |
178 | ## Si Te Gusta, Estrella el Proyecto
179 |
180 | ¡Gracias!
181 |
182 |
183 |
184 | ## Contribuciones
185 |
186 | Eres bienvenido a hacer sugerencias a través de [GitHub Issues](https://github.com/your-repo/issues) o extender la funcionalidad al [hacer un fork, modificar y crear un PR](https://github.com/your-repo/pulls) a este plugin para Vite.
187 |
188 |
189 |
190 | ## Licencia
191 |
192 | Licencia MIT © 2023-2024
193 |
194 |
195 |
196 | ## Traducciones Disponibles
197 |
198 | - [README.md](./README.md)
199 | - [README.ru.md](./README.ru.md)
200 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Html Injection Vite Plugin
2 |
3 | [](https://www.npmjs.com/package/vite-plugin-html-injection)
4 | [](https://www.npmjs.com/package/vite-plugin-html-injection)
5 |
6 | [🇬🇧 English](README.md) | [🇪🇸 Español](README.es.md) | [🇷🇺 Русский](README.ru.md) | [🇨🇳 中文](README.zh.md)
7 |
8 | Vite plugin for injecting HTML, JS, and CSS code snippets into `index.html`.
9 |
10 | ## Purpose
11 |
12 | Often, when developing front-end applications, it is necessary to integrate various libraries into the `index.html` file - for example, you might want to include code for Google Analytics, PWA service workers, Open Graph and Twitter Card meta data, Splash screens, Customer support widgets, and much more.
13 |
14 | As a result, `index.html` becomes bloated and hard to manage.
15 |
16 | This plugin allows you to store code snippets in separate files, keeping `index.html` clean and pristine, and inject them at build time. There is no need for special placeholder tags in the `index.html` as well.
17 |
18 | The plugin also supports `Vite dev server HMR`, which means you can edit code snippets and see the results immediately in the browser.
19 |
20 | Additionally, the plugin allows for different configurations in development and production modes. By specifying the `buildModes` property, you can enable or disable specific code snippets depending on the environment, simplifying development and reducing unnecessary code in Dev mode.
21 |
22 | ## Description
23 |
24 | There are three `types` of code snippets - `raw`, `js`, and `css`. `raw` snippets are injected as-is, while `js` and `css` snippets are wrapped in `
127 | ```
128 |
129 |
130 |
131 | That's it. After running `npm serve` or `npm build` command the code snippets will be injected.
132 |
133 |
134 |
135 | ## Signature
136 |
137 | The plugin is strongly typed. Here is the signature of its configuration:
138 |
139 | ```ts
140 | export interface IHtmlInjectionConfig {
141 | injections: IHtmlInjectionConfigInjection[];
142 | order?: "pre" | "post";
143 | }
144 |
145 | export interface IHtmlInjectionConfigInjection {
146 | name?: string;
147 | path: string;
148 | type?: "raw" | "js" | "css"; // default is 'raw'
149 | injectTo: "head" | "body" | "head-prepend" | "body-prepend";
150 | buildModes?: "dev" | "prod" | "both"; // default is 'both'
151 | }
152 | ```
153 |
154 |
155 |
156 | ## If you like it, star it
157 |
158 | Thank you!
159 |
160 |
161 |
162 | ## Contributing
163 |
164 |
165 | You are welcome to make suggestions through [GitHub Issues](https://github.com/vite-plugin-html-injection/issues) or extend functionality by [forking, modifying, and making a PR](https://github.com/vite-plugin-html-injection/pulls) to this Vite plugin.
166 |
167 |
168 |
169 | ## License
170 |
171 | MIT License © 2023-2025
172 |
--------------------------------------------------------------------------------
/README.ru.md:
--------------------------------------------------------------------------------
1 | # Html Injection Vite Plugin
2 |
3 | [](https://www.npmjs.com/package/vite-plugin-html-injection)
4 | [](https://www.npmjs.com/package/vite-plugin-html-injection)
5 |
6 | [🇬🇧 English](README.md) | [🇪🇸 Español](README.es.md) | [🇷🇺 Русский](README.ru.md) | [🇨🇳 中文](README.zh.md)
7 |
8 | Плагин Vite для внедрения HTML, JS и CSS фрагментов кода в `index.html`.
9 |
10 | ## Назначение
11 |
12 | При разработке фронтенд-приложений часто возникает необходимость интеграции различных библиотек в файл `index.html` - например, добавление кода для Google Analytics, сервис-воркеров PWA, мета-тегов Open Graph и Twitter Card, заставок, виджетов поддержки клиентов и многого другого.
13 |
14 | В результате `index.html` становится перегруженным и сложным в управлении.
15 |
16 | Этот плагин позволяет хранить фрагменты кода в отдельных файлах, сохраняя `index.html` чистым и аккуратным, и внедрять их во время сборки. Никаких специальных placeholder-тегов в `index.html` не требуется.
17 |
18 | Плагин также поддерживает HMR (Hot Module Replacement) сервера разработки Vite, что означает возможность редактирования фрагментов кода с немедленным отображением изменений в браузере.
19 |
20 | Более того, плагин поддерживает различные конфигурации для режимов разработки и продакшена. Указав свойство `buildModes`, вы можете включать или отключать определенные фрагменты кода в зависимости от окружения, упрощая разработку и отключая ненужный код в `dev` режиме.
21 |
22 | ## Описание
23 |
24 | Существует три `типа` фрагментов кода - `raw`, `js` и `css`. `raw`-фрагменты внедряются как есть, а `js` и `css` фрагменты оборачиваются в теги `
126 | ```
127 |
128 |
129 |
130 | Всё. После выполнения команд `npm serve` или `npm build` фрагменты кода будут внедрены.
131 |
132 |
133 |
134 | ## Сигнатура
135 |
136 | Плагин строго типизирован. Вот сигнатура его конфигурации:
137 |
138 | ```ts
139 | export interface IHtmlInjectionConfig {
140 | injections: IHtmlInjectionConfigInjection[];
141 | order?: "pre" | "post";
142 | }
143 |
144 | export interface IHtmlInjectionConfigInjection {
145 | name?: string;
146 | path: string;
147 | type?: "raw" | "js" | "css"; // по умолчанию 'raw'
148 | injectTo: "head" | "body" | "head-prepend" | "body-prepend";
149 | buildModes?: "dev" | "prod" | "both"; // по умолчанию 'both'
150 | }
151 | ```
152 |
153 |
154 |
155 | ## Если вам понравилось - поставьте звезду
156 |
157 | Спасибо!
158 |
159 |
160 |
161 | ## Содействие
162 |
163 | Вы можете предлагать улучшения через [GitHub Issues](https://github.com/vite-plugin-html-injection/issues) или расширять функциональность, [fork, edit, create Pull Request](https://github.com/vite-plugin-html-injection/pulls) для этого Vite-плагина.
164 |
165 |
166 |
167 | ## Лицензия
168 |
169 | Лицензия MIT © 2023-2025
170 |
--------------------------------------------------------------------------------
/README.zh.md:
--------------------------------------------------------------------------------
1 | # Html 注入 Vite 插件
2 |
3 | [](https://www.npmjs.com/package/vite-plugin-html-injection)
4 | [](https://www.npmjs.com/package/vite-plugin-html-injection)
5 |
6 | [🇬🇧 English](README.md) | [🇪🇸 Español](README.es.md) | [🇷🇺 Русский](README.ru.md) | [🇨🇳 中文](README.zh.md)
7 |
8 | 用于在 `index.html` 中注入 HTML、JS 和 CSS 代码片段的 Vite 插件。
9 |
10 | ## 目的
11 |
12 | 在开发前端应用程序时,通常需要将各种库集成到 `index.html` 文件中 - 例如,您可能需要包含 Google Analytics 的代码、PWA 服务工作者、Open Graph 和 Twitter Card 元数据、启动画面、客户支持小部件等。
13 |
14 | 因此,`index.html` 变得臃肿且难以管理。
15 |
16 | 该插件允许您将代码片段存储在单独的文件中,保持 `index.html` 干净整洁,并在构建时注入它们。无需在 `index.html` 中添加特殊的占位符标签。
17 |
18 | 该插件还支持 Vite 开发服务器的热模块替换(HMR),这意味着您可以编辑代码片段并立即在浏览器中看到结果。
19 |
20 | 此外,该插件支持开发和生产模式的不同配置。通过指定 `buildModes` 属性,您可以根据环境启用或禁用特定的代码片段,简化开发并在 `dev` 模式下禁用不必要的代码。
21 |
22 | ## 描述
23 |
24 | 代码片段有三种 `类型` - `raw`、`js` 和 `css`。`raw` 片段按原样注入,而 `js` 和 `css` 片段分别被包装在 `
126 | ```
127 |
128 |
129 |
130 | 就是这样。执行 `npm serve` 或 `npm build` 命令后,代码片段将被注入。
131 |
132 |
133 |
134 | ## 签名
135 |
136 | 该插件是强类型的。以下是其配置的签名:
137 |
138 | ```ts
139 | export interface IHtmlInjectionConfig {
140 | injections: IHtmlInjectionConfigInjection[];
141 | order?: "pre" | "post";
142 | }
143 |
144 | export interface IHtmlInjectionConfigInjection {
145 | name?: string;
146 | path: string;
147 | type?: "raw" | "js" | "css"; // 默认为 'raw'
148 | injectTo: "head" | "body" | "head-prepend" | "body-prepend";
149 | buildModes?: "dev" | "prod" | "both"; // 默认为 'both'
150 | }
151 | ```
152 |
153 |
154 |
155 | ## 如果您喜欢,请给个星星
156 |
157 | 谢谢!
158 |
159 |
160 |
161 | ## 贡献
162 |
163 | 您可以通过 [GitHub Issues](https://github.com/vite-plugin-html-injection/issues) 提出改进建议,或通过 [fork、编辑、创建 Pull Request](https://github.com/vite-plugin-html-injection/pulls) 来扩展此 Vite 插件的功能。
164 |
165 |
166 |
167 | ## 许可证
168 |
169 | MIT 许可证 © 2023-2025
--------------------------------------------------------------------------------
/index.ts:
--------------------------------------------------------------------------------
1 | import path from "path";
2 | import fs from "fs";
3 | import type { Plugin, ResolvedConfig } from "vite";
4 | import type { IHtmlInjectionConfig, IHtmlInjectionConfigInjection } from "./types";
5 |
6 | export function htmlInjectionPlugin(
7 | htmlInjectionConfig: IHtmlInjectionConfig,
8 | ): Plugin {
9 | let config: undefined | ResolvedConfig;
10 |
11 | return {
12 | name: "html-injection",
13 |
14 | configResolved(resolvedConfig) {
15 | config = resolvedConfig;
16 | },
17 |
18 | transformIndexHtml: {
19 | order: htmlInjectionConfig.order,
20 | handler: (html: string) => transformHtml({ html, config, htmlInjectionConfig }),
21 | },
22 | };
23 | }
24 |
25 | type TransformProps = {
26 | html: string;
27 | htmlInjectionConfig: IHtmlInjectionConfig;
28 | config?: ResolvedConfig;
29 | };
30 |
31 | function transformHtml({ html, htmlInjectionConfig, config }: TransformProps) {
32 | let out = html;
33 |
34 | for (let i = 0; i < htmlInjectionConfig.injections.length; i++) {
35 | const injection: IHtmlInjectionConfigInjection =
36 | htmlInjectionConfig.injections[i];
37 |
38 | const root = (config as ResolvedConfig).root;
39 | const filePath = path.resolve(root, injection.path);
40 | let data = fs.readFileSync(filePath, "utf8");
41 |
42 | if (
43 | injection.buildModes &&
44 | ((injection.buildModes === "dev" && !config?.env.DEV) ||
45 | (injection.buildModes === "prod" && !config?.env.PROD))
46 | ) {
47 | continue;
48 | }
49 |
50 | if (injection.type === "js") {
51 | data = `\n`;
52 | } else if (injection.type === "css") {
53 | data = `\n`;
54 | }
55 |
56 | switch (injection.injectTo) {
57 | case "head":
58 | out = out.replace("", `${data}\n`);
59 | break;
60 | case "head-prepend":
61 | out = out.replace(/
/i, `$&\n${data}`);
62 | break;
63 | case "body":
64 | out = out.replace("", `${data}\n/i, `$&\n${data}`);
68 | break;
69 |
70 | default:
71 | break;
72 | }
73 | }
74 |
75 | return out;
76 | }
77 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "vite-plugin-html-injection",
3 | "version": "1.5.1",
4 | "description": "Vite plugin for injecting html, js, css code snippets into index.html",
5 | "author": "Ruslan Makarov ",
6 | "license": "MIT",
7 | "repository": {
8 | "type": "git",
9 | "url": "git+https://github.com/altrusl/vite-plugin-html-injection.git"
10 | },
11 | "bugs": {
12 | "url": "https://github.com/altrusl/vite-plugin-html-injection/issues"
13 | },
14 | "homepage": "https://github.com/altrusl/vite-plugin-html-injection",
15 | "type": "module",
16 | "main": "./dist/index.cjs",
17 | "module": "./dist/index.js",
18 | "types": "./dist/index.d.ts",
19 | "exports": {
20 | ".": {
21 | "import": "./dist/index.js",
22 | "require": "./dist/index.cjs",
23 | "types": "./dist/index.d.ts"
24 | }
25 | },
26 | "keywords": [
27 | "vite",
28 | "vite-plugin",
29 | "html",
30 | "index.html",
31 | "inject",
32 | "injection"
33 | ],
34 | "files": [
35 | "dist"
36 | ],
37 | "scripts": {
38 | "build": "vite build && copy types.d.ts dist\\index.d.ts",
39 | "publish": "pnpm publish --access public"
40 | },
41 | "devDependencies": {
42 | "@sxzz/eslint-config": "^4.6.0",
43 | "@types/node": "^22.10.7",
44 | "eslint": "^9.18.0",
45 | "typescript": "^5.7.3",
46 | "vite": "^6.0.7"
47 | },
48 | "peerDependencies": {
49 | "vite": ">= 4.0.0"
50 | }
51 | }
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | devDependencies:
11 | '@sxzz/eslint-config':
12 | specifier: ^4.6.0
13 | version: 4.6.0(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.22.0(@typescript-eslint/parser@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
14 | '@types/node':
15 | specifier: ^22.10.7
16 | version: 22.12.0
17 | eslint:
18 | specifier: ^9.18.0
19 | version: 9.19.0(jiti@2.4.2)
20 | typescript:
21 | specifier: ^5.7.3
22 | version: 5.7.3
23 | vite:
24 | specifier: ^6.0.7
25 | version: 6.0.11(@types/node@22.12.0)(jiti@2.4.2)(tsx@4.19.2)(yaml@2.7.0)
26 |
27 | packages:
28 |
29 | '@antfu/utils@0.7.10':
30 | resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
31 |
32 | '@antfu/utils@8.1.0':
33 | resolution: {integrity: sha512-XPR7Jfwp0FFl/dFYPX8ZjpmU4/1mIXTjnZ1ba48BLMyKOV62/tiRjdsFcPs2hsYcSud4tzk7w3a3LjX8Fu3huA==}
34 |
35 | '@babel/code-frame@7.26.2':
36 | resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
37 | engines: {node: '>=6.9.0'}
38 |
39 | '@babel/helper-validator-identifier@7.25.9':
40 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
41 | engines: {node: '>=6.9.0'}
42 |
43 | '@es-joy/jsdoccomment@0.49.0':
44 | resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==}
45 | engines: {node: '>=16'}
46 |
47 | '@es-joy/jsdoccomment@0.50.0':
48 | resolution: {integrity: sha512-+zZymuVLH6zVwXPtCAtC+bDymxmEwEqDftdAK+f407IF1bnX49anIxvBhCA1AqUIfD6egj1jM1vUnSuijjNyYg==}
49 | engines: {node: '>=18'}
50 |
51 | '@esbuild/aix-ppc64@0.21.5':
52 | resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
53 | engines: {node: '>=12'}
54 | cpu: [ppc64]
55 | os: [aix]
56 |
57 | '@esbuild/aix-ppc64@0.23.1':
58 | resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
59 | engines: {node: '>=18'}
60 | cpu: [ppc64]
61 | os: [aix]
62 |
63 | '@esbuild/aix-ppc64@0.24.2':
64 | resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
65 | engines: {node: '>=18'}
66 | cpu: [ppc64]
67 | os: [aix]
68 |
69 | '@esbuild/android-arm64@0.21.5':
70 | resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
71 | engines: {node: '>=12'}
72 | cpu: [arm64]
73 | os: [android]
74 |
75 | '@esbuild/android-arm64@0.23.1':
76 | resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
77 | engines: {node: '>=18'}
78 | cpu: [arm64]
79 | os: [android]
80 |
81 | '@esbuild/android-arm64@0.24.2':
82 | resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
83 | engines: {node: '>=18'}
84 | cpu: [arm64]
85 | os: [android]
86 |
87 | '@esbuild/android-arm@0.21.5':
88 | resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
89 | engines: {node: '>=12'}
90 | cpu: [arm]
91 | os: [android]
92 |
93 | '@esbuild/android-arm@0.23.1':
94 | resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
95 | engines: {node: '>=18'}
96 | cpu: [arm]
97 | os: [android]
98 |
99 | '@esbuild/android-arm@0.24.2':
100 | resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
101 | engines: {node: '>=18'}
102 | cpu: [arm]
103 | os: [android]
104 |
105 | '@esbuild/android-x64@0.21.5':
106 | resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
107 | engines: {node: '>=12'}
108 | cpu: [x64]
109 | os: [android]
110 |
111 | '@esbuild/android-x64@0.23.1':
112 | resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
113 | engines: {node: '>=18'}
114 | cpu: [x64]
115 | os: [android]
116 |
117 | '@esbuild/android-x64@0.24.2':
118 | resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
119 | engines: {node: '>=18'}
120 | cpu: [x64]
121 | os: [android]
122 |
123 | '@esbuild/darwin-arm64@0.21.5':
124 | resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
125 | engines: {node: '>=12'}
126 | cpu: [arm64]
127 | os: [darwin]
128 |
129 | '@esbuild/darwin-arm64@0.23.1':
130 | resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
131 | engines: {node: '>=18'}
132 | cpu: [arm64]
133 | os: [darwin]
134 |
135 | '@esbuild/darwin-arm64@0.24.2':
136 | resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
137 | engines: {node: '>=18'}
138 | cpu: [arm64]
139 | os: [darwin]
140 |
141 | '@esbuild/darwin-x64@0.21.5':
142 | resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
143 | engines: {node: '>=12'}
144 | cpu: [x64]
145 | os: [darwin]
146 |
147 | '@esbuild/darwin-x64@0.23.1':
148 | resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
149 | engines: {node: '>=18'}
150 | cpu: [x64]
151 | os: [darwin]
152 |
153 | '@esbuild/darwin-x64@0.24.2':
154 | resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
155 | engines: {node: '>=18'}
156 | cpu: [x64]
157 | os: [darwin]
158 |
159 | '@esbuild/freebsd-arm64@0.21.5':
160 | resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
161 | engines: {node: '>=12'}
162 | cpu: [arm64]
163 | os: [freebsd]
164 |
165 | '@esbuild/freebsd-arm64@0.23.1':
166 | resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
167 | engines: {node: '>=18'}
168 | cpu: [arm64]
169 | os: [freebsd]
170 |
171 | '@esbuild/freebsd-arm64@0.24.2':
172 | resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
173 | engines: {node: '>=18'}
174 | cpu: [arm64]
175 | os: [freebsd]
176 |
177 | '@esbuild/freebsd-x64@0.21.5':
178 | resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
179 | engines: {node: '>=12'}
180 | cpu: [x64]
181 | os: [freebsd]
182 |
183 | '@esbuild/freebsd-x64@0.23.1':
184 | resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
185 | engines: {node: '>=18'}
186 | cpu: [x64]
187 | os: [freebsd]
188 |
189 | '@esbuild/freebsd-x64@0.24.2':
190 | resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
191 | engines: {node: '>=18'}
192 | cpu: [x64]
193 | os: [freebsd]
194 |
195 | '@esbuild/linux-arm64@0.21.5':
196 | resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
197 | engines: {node: '>=12'}
198 | cpu: [arm64]
199 | os: [linux]
200 |
201 | '@esbuild/linux-arm64@0.23.1':
202 | resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
203 | engines: {node: '>=18'}
204 | cpu: [arm64]
205 | os: [linux]
206 |
207 | '@esbuild/linux-arm64@0.24.2':
208 | resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
209 | engines: {node: '>=18'}
210 | cpu: [arm64]
211 | os: [linux]
212 |
213 | '@esbuild/linux-arm@0.21.5':
214 | resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
215 | engines: {node: '>=12'}
216 | cpu: [arm]
217 | os: [linux]
218 |
219 | '@esbuild/linux-arm@0.23.1':
220 | resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
221 | engines: {node: '>=18'}
222 | cpu: [arm]
223 | os: [linux]
224 |
225 | '@esbuild/linux-arm@0.24.2':
226 | resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
227 | engines: {node: '>=18'}
228 | cpu: [arm]
229 | os: [linux]
230 |
231 | '@esbuild/linux-ia32@0.21.5':
232 | resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
233 | engines: {node: '>=12'}
234 | cpu: [ia32]
235 | os: [linux]
236 |
237 | '@esbuild/linux-ia32@0.23.1':
238 | resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
239 | engines: {node: '>=18'}
240 | cpu: [ia32]
241 | os: [linux]
242 |
243 | '@esbuild/linux-ia32@0.24.2':
244 | resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
245 | engines: {node: '>=18'}
246 | cpu: [ia32]
247 | os: [linux]
248 |
249 | '@esbuild/linux-loong64@0.21.5':
250 | resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
251 | engines: {node: '>=12'}
252 | cpu: [loong64]
253 | os: [linux]
254 |
255 | '@esbuild/linux-loong64@0.23.1':
256 | resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
257 | engines: {node: '>=18'}
258 | cpu: [loong64]
259 | os: [linux]
260 |
261 | '@esbuild/linux-loong64@0.24.2':
262 | resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
263 | engines: {node: '>=18'}
264 | cpu: [loong64]
265 | os: [linux]
266 |
267 | '@esbuild/linux-mips64el@0.21.5':
268 | resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
269 | engines: {node: '>=12'}
270 | cpu: [mips64el]
271 | os: [linux]
272 |
273 | '@esbuild/linux-mips64el@0.23.1':
274 | resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
275 | engines: {node: '>=18'}
276 | cpu: [mips64el]
277 | os: [linux]
278 |
279 | '@esbuild/linux-mips64el@0.24.2':
280 | resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
281 | engines: {node: '>=18'}
282 | cpu: [mips64el]
283 | os: [linux]
284 |
285 | '@esbuild/linux-ppc64@0.21.5':
286 | resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
287 | engines: {node: '>=12'}
288 | cpu: [ppc64]
289 | os: [linux]
290 |
291 | '@esbuild/linux-ppc64@0.23.1':
292 | resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
293 | engines: {node: '>=18'}
294 | cpu: [ppc64]
295 | os: [linux]
296 |
297 | '@esbuild/linux-ppc64@0.24.2':
298 | resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
299 | engines: {node: '>=18'}
300 | cpu: [ppc64]
301 | os: [linux]
302 |
303 | '@esbuild/linux-riscv64@0.21.5':
304 | resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
305 | engines: {node: '>=12'}
306 | cpu: [riscv64]
307 | os: [linux]
308 |
309 | '@esbuild/linux-riscv64@0.23.1':
310 | resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
311 | engines: {node: '>=18'}
312 | cpu: [riscv64]
313 | os: [linux]
314 |
315 | '@esbuild/linux-riscv64@0.24.2':
316 | resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
317 | engines: {node: '>=18'}
318 | cpu: [riscv64]
319 | os: [linux]
320 |
321 | '@esbuild/linux-s390x@0.21.5':
322 | resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
323 | engines: {node: '>=12'}
324 | cpu: [s390x]
325 | os: [linux]
326 |
327 | '@esbuild/linux-s390x@0.23.1':
328 | resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
329 | engines: {node: '>=18'}
330 | cpu: [s390x]
331 | os: [linux]
332 |
333 | '@esbuild/linux-s390x@0.24.2':
334 | resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
335 | engines: {node: '>=18'}
336 | cpu: [s390x]
337 | os: [linux]
338 |
339 | '@esbuild/linux-x64@0.21.5':
340 | resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
341 | engines: {node: '>=12'}
342 | cpu: [x64]
343 | os: [linux]
344 |
345 | '@esbuild/linux-x64@0.23.1':
346 | resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
347 | engines: {node: '>=18'}
348 | cpu: [x64]
349 | os: [linux]
350 |
351 | '@esbuild/linux-x64@0.24.2':
352 | resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
353 | engines: {node: '>=18'}
354 | cpu: [x64]
355 | os: [linux]
356 |
357 | '@esbuild/netbsd-arm64@0.24.2':
358 | resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
359 | engines: {node: '>=18'}
360 | cpu: [arm64]
361 | os: [netbsd]
362 |
363 | '@esbuild/netbsd-x64@0.21.5':
364 | resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
365 | engines: {node: '>=12'}
366 | cpu: [x64]
367 | os: [netbsd]
368 |
369 | '@esbuild/netbsd-x64@0.23.1':
370 | resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
371 | engines: {node: '>=18'}
372 | cpu: [x64]
373 | os: [netbsd]
374 |
375 | '@esbuild/netbsd-x64@0.24.2':
376 | resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
377 | engines: {node: '>=18'}
378 | cpu: [x64]
379 | os: [netbsd]
380 |
381 | '@esbuild/openbsd-arm64@0.23.1':
382 | resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
383 | engines: {node: '>=18'}
384 | cpu: [arm64]
385 | os: [openbsd]
386 |
387 | '@esbuild/openbsd-arm64@0.24.2':
388 | resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
389 | engines: {node: '>=18'}
390 | cpu: [arm64]
391 | os: [openbsd]
392 |
393 | '@esbuild/openbsd-x64@0.21.5':
394 | resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
395 | engines: {node: '>=12'}
396 | cpu: [x64]
397 | os: [openbsd]
398 |
399 | '@esbuild/openbsd-x64@0.23.1':
400 | resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
401 | engines: {node: '>=18'}
402 | cpu: [x64]
403 | os: [openbsd]
404 |
405 | '@esbuild/openbsd-x64@0.24.2':
406 | resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
407 | engines: {node: '>=18'}
408 | cpu: [x64]
409 | os: [openbsd]
410 |
411 | '@esbuild/sunos-x64@0.21.5':
412 | resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
413 | engines: {node: '>=12'}
414 | cpu: [x64]
415 | os: [sunos]
416 |
417 | '@esbuild/sunos-x64@0.23.1':
418 | resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
419 | engines: {node: '>=18'}
420 | cpu: [x64]
421 | os: [sunos]
422 |
423 | '@esbuild/sunos-x64@0.24.2':
424 | resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
425 | engines: {node: '>=18'}
426 | cpu: [x64]
427 | os: [sunos]
428 |
429 | '@esbuild/win32-arm64@0.21.5':
430 | resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
431 | engines: {node: '>=12'}
432 | cpu: [arm64]
433 | os: [win32]
434 |
435 | '@esbuild/win32-arm64@0.23.1':
436 | resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
437 | engines: {node: '>=18'}
438 | cpu: [arm64]
439 | os: [win32]
440 |
441 | '@esbuild/win32-arm64@0.24.2':
442 | resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
443 | engines: {node: '>=18'}
444 | cpu: [arm64]
445 | os: [win32]
446 |
447 | '@esbuild/win32-ia32@0.21.5':
448 | resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
449 | engines: {node: '>=12'}
450 | cpu: [ia32]
451 | os: [win32]
452 |
453 | '@esbuild/win32-ia32@0.23.1':
454 | resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
455 | engines: {node: '>=18'}
456 | cpu: [ia32]
457 | os: [win32]
458 |
459 | '@esbuild/win32-ia32@0.24.2':
460 | resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
461 | engines: {node: '>=18'}
462 | cpu: [ia32]
463 | os: [win32]
464 |
465 | '@esbuild/win32-x64@0.21.5':
466 | resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
467 | engines: {node: '>=12'}
468 | cpu: [x64]
469 | os: [win32]
470 |
471 | '@esbuild/win32-x64@0.23.1':
472 | resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
473 | engines: {node: '>=18'}
474 | cpu: [x64]
475 | os: [win32]
476 |
477 | '@esbuild/win32-x64@0.24.2':
478 | resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
479 | engines: {node: '>=18'}
480 | cpu: [x64]
481 | os: [win32]
482 |
483 | '@eslint-community/eslint-plugin-eslint-comments@4.4.1':
484 | resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==}
485 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
486 | peerDependencies:
487 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
488 |
489 | '@eslint-community/eslint-utils@4.4.1':
490 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
491 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
492 | peerDependencies:
493 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
494 |
495 | '@eslint-community/regexpp@4.12.1':
496 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
497 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
498 |
499 | '@eslint/compat@1.2.5':
500 | resolution: {integrity: sha512-5iuG/StT+7OfvhoBHPlmxkPA9om6aDUFgmD4+mWKAGsYt4vCe8rypneG03AuseyRHBmcCLXQtIH5S26tIoggLg==}
501 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
502 | peerDependencies:
503 | eslint: ^9.10.0
504 | peerDependenciesMeta:
505 | eslint:
506 | optional: true
507 |
508 | '@eslint/config-array@0.19.1':
509 | resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
510 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
511 |
512 | '@eslint/core@0.10.0':
513 | resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
514 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
515 |
516 | '@eslint/eslintrc@3.2.0':
517 | resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
518 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
519 |
520 | '@eslint/js@9.19.0':
521 | resolution: {integrity: sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==}
522 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
523 |
524 | '@eslint/markdown@6.2.2':
525 | resolution: {integrity: sha512-U0/KgzI9BVUuHDQ9M2fuVgB0QZ1fSyzwm8jKmHr1dlsLHGHYzoeIA9yqLMdTbV3ivZfp6rTdt6zqre3TfNExUQ==}
526 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
527 |
528 | '@eslint/object-schema@2.1.5':
529 | resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
530 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
531 |
532 | '@eslint/plugin-kit@0.2.5':
533 | resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
534 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
535 |
536 | '@humanfs/core@0.19.1':
537 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
538 | engines: {node: '>=18.18.0'}
539 |
540 | '@humanfs/node@0.16.6':
541 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
542 | engines: {node: '>=18.18.0'}
543 |
544 | '@humanwhocodes/module-importer@1.0.1':
545 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
546 | engines: {node: '>=12.22'}
547 |
548 | '@humanwhocodes/retry@0.3.1':
549 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
550 | engines: {node: '>=18.18'}
551 |
552 | '@humanwhocodes/retry@0.4.1':
553 | resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
554 | engines: {node: '>=18.18'}
555 |
556 | '@jridgewell/sourcemap-codec@1.5.0':
557 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
558 |
559 | '@nodelib/fs.scandir@2.1.5':
560 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
561 | engines: {node: '>= 8'}
562 |
563 | '@nodelib/fs.stat@2.0.5':
564 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
565 | engines: {node: '>= 8'}
566 |
567 | '@nodelib/fs.walk@1.2.8':
568 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
569 | engines: {node: '>= 8'}
570 |
571 | '@pkgr/core@0.1.1':
572 | resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
573 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
574 |
575 | '@rollup/rollup-android-arm-eabi@4.32.1':
576 | resolution: {integrity: sha512-/pqA4DmqyCm8u5YIDzIdlLcEmuvxb0v8fZdFhVMszSpDTgbQKdw3/mB3eMUHIbubtJ6F9j+LtmyCnHTEqIHyzA==}
577 | cpu: [arm]
578 | os: [android]
579 |
580 | '@rollup/rollup-android-arm64@4.32.1':
581 | resolution: {integrity: sha512-If3PDskT77q7zgqVqYuj7WG3WC08G1kwXGVFi9Jr8nY6eHucREHkfpX79c0ACAjLj3QIWKPJR7w4i+f5EdLH5Q==}
582 | cpu: [arm64]
583 | os: [android]
584 |
585 | '@rollup/rollup-darwin-arm64@4.32.1':
586 | resolution: {integrity: sha512-zCpKHioQ9KgZToFp5Wvz6zaWbMzYQ2LJHQ+QixDKq52KKrF65ueu6Af4hLlLWHjX1Wf/0G5kSJM9PySW9IrvHA==}
587 | cpu: [arm64]
588 | os: [darwin]
589 |
590 | '@rollup/rollup-darwin-x64@4.32.1':
591 | resolution: {integrity: sha512-sFvF+t2+TyUo/ZQqUcifrJIgznx58oFZbdHS9TvHq3xhPVL9nOp+yZ6LKrO9GWTP+6DbFtoyLDbjTpR62Mbr3Q==}
592 | cpu: [x64]
593 | os: [darwin]
594 |
595 | '@rollup/rollup-freebsd-arm64@4.32.1':
596 | resolution: {integrity: sha512-NbOa+7InvMWRcY9RG+B6kKIMD/FsnQPH0MWUvDlQB1iXnF/UcKSudCXZtv4lW+C276g3w5AxPbfry5rSYvyeYA==}
597 | cpu: [arm64]
598 | os: [freebsd]
599 |
600 | '@rollup/rollup-freebsd-x64@4.32.1':
601 | resolution: {integrity: sha512-JRBRmwvHPXR881j2xjry8HZ86wIPK2CcDw0EXchE1UgU0ubWp9nvlT7cZYKc6bkypBt745b4bglf3+xJ7hXWWw==}
602 | cpu: [x64]
603 | os: [freebsd]
604 |
605 | '@rollup/rollup-linux-arm-gnueabihf@4.32.1':
606 | resolution: {integrity: sha512-PKvszb+9o/vVdUzCCjL0sKHukEQV39tD3fepXxYrHE3sTKrRdCydI7uldRLbjLmDA3TFDmh418XH19NOsDRH8g==}
607 | cpu: [arm]
608 | os: [linux]
609 |
610 | '@rollup/rollup-linux-arm-musleabihf@4.32.1':
611 | resolution: {integrity: sha512-9WHEMV6Y89eL606ReYowXuGF1Yb2vwfKWKdD1A5h+OYnPZSJvxbEjxTRKPgi7tkP2DSnW0YLab1ooy+i/FQp/Q==}
612 | cpu: [arm]
613 | os: [linux]
614 |
615 | '@rollup/rollup-linux-arm64-gnu@4.32.1':
616 | resolution: {integrity: sha512-tZWc9iEt5fGJ1CL2LRPw8OttkCBDs+D8D3oEM8mH8S1ICZCtFJhD7DZ3XMGM8kpqHvhGUTvNUYVDnmkj4BDXnw==}
617 | cpu: [arm64]
618 | os: [linux]
619 |
620 | '@rollup/rollup-linux-arm64-musl@4.32.1':
621 | resolution: {integrity: sha512-FTYc2YoTWUsBz5GTTgGkRYYJ5NGJIi/rCY4oK/I8aKowx1ToXeoVVbIE4LGAjsauvlhjfl0MYacxClLld1VrOw==}
622 | cpu: [arm64]
623 | os: [linux]
624 |
625 | '@rollup/rollup-linux-loongarch64-gnu@4.32.1':
626 | resolution: {integrity: sha512-F51qLdOtpS6P1zJVRzYM0v6MrBNypyPEN1GfMiz0gPu9jN8ScGaEFIZQwteSsGKg799oR5EaP7+B2jHgL+d+Kw==}
627 | cpu: [loong64]
628 | os: [linux]
629 |
630 | '@rollup/rollup-linux-powerpc64le-gnu@4.32.1':
631 | resolution: {integrity: sha512-wO0WkfSppfX4YFm5KhdCCpnpGbtgQNj/tgvYzrVYFKDpven8w2N6Gg5nB6w+wAMO3AIfSTWeTjfVe+uZ23zAlg==}
632 | cpu: [ppc64]
633 | os: [linux]
634 |
635 | '@rollup/rollup-linux-riscv64-gnu@4.32.1':
636 | resolution: {integrity: sha512-iWswS9cIXfJO1MFYtI/4jjlrGb/V58oMu4dYJIKnR5UIwbkzR0PJ09O0PDZT0oJ3LYWXBSWahNf/Mjo6i1E5/g==}
637 | cpu: [riscv64]
638 | os: [linux]
639 |
640 | '@rollup/rollup-linux-s390x-gnu@4.32.1':
641 | resolution: {integrity: sha512-RKt8NI9tebzmEthMnfVgG3i/XeECkMPS+ibVZjZ6mNekpbbUmkNWuIN2yHsb/mBPyZke4nlI4YqIdFPgKuoyQQ==}
642 | cpu: [s390x]
643 | os: [linux]
644 |
645 | '@rollup/rollup-linux-x64-gnu@4.32.1':
646 | resolution: {integrity: sha512-WQFLZ9c42ECqEjwg/GHHsouij3pzLXkFdz0UxHa/0OM12LzvX7DzedlY0SIEly2v18YZLRhCRoHZDxbBSWoGYg==}
647 | cpu: [x64]
648 | os: [linux]
649 |
650 | '@rollup/rollup-linux-x64-musl@4.32.1':
651 | resolution: {integrity: sha512-BLoiyHDOWoS3uccNSADMza6V6vCNiphi94tQlVIL5de+r6r/CCQuNnerf+1g2mnk2b6edp5dk0nhdZ7aEjOBsA==}
652 | cpu: [x64]
653 | os: [linux]
654 |
655 | '@rollup/rollup-win32-arm64-msvc@4.32.1':
656 | resolution: {integrity: sha512-w2l3UnlgYTNNU+Z6wOR8YdaioqfEnwPjIsJ66KxKAf0p+AuL2FHeTX6qvM+p/Ue3XPBVNyVSfCrfZiQh7vZHLQ==}
657 | cpu: [arm64]
658 | os: [win32]
659 |
660 | '@rollup/rollup-win32-ia32-msvc@4.32.1':
661 | resolution: {integrity: sha512-Am9H+TGLomPGkBnaPWie4F3x+yQ2rr4Bk2jpwy+iV+Gel9jLAu/KqT8k3X4jxFPW6Zf8OMnehyutsd+eHoq1WQ==}
662 | cpu: [ia32]
663 | os: [win32]
664 |
665 | '@rollup/rollup-win32-x64-msvc@4.32.1':
666 | resolution: {integrity: sha512-ar80GhdZb4DgmW3myIS9nRFYcpJRSME8iqWgzH2i44u+IdrzmiXVxeFnExQ5v4JYUSpg94bWjevMG8JHf1Da5Q==}
667 | cpu: [x64]
668 | os: [win32]
669 |
670 | '@sxzz/eslint-config@4.6.0':
671 | resolution: {integrity: sha512-w6Ythr84oVFk5YpBM6nc/f+YSgwz0UUf+DjSC93jqtFzQ9w17VTuTPyawJ+nNgC6AdIpe43qFoq/zVN0Ol7Jdw==}
672 | engines: {node: ^18.18.0 || >=20.0.0}
673 | peerDependencies:
674 | eslint: ^9.5.0
675 |
676 | '@types/debug@4.1.12':
677 | resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
678 |
679 | '@types/doctrine@0.0.9':
680 | resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
681 |
682 | '@types/eslint@9.6.1':
683 | resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
684 |
685 | '@types/estree@1.0.6':
686 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
687 |
688 | '@types/json-schema@7.0.15':
689 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
690 |
691 | '@types/mdast@4.0.4':
692 | resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
693 |
694 | '@types/ms@2.1.0':
695 | resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
696 |
697 | '@types/node@22.12.0':
698 | resolution: {integrity: sha512-Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==}
699 |
700 | '@types/normalize-package-data@2.4.4':
701 | resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
702 |
703 | '@types/unist@3.0.3':
704 | resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
705 |
706 | '@typescript-eslint/eslint-plugin@8.22.0':
707 | resolution: {integrity: sha512-4Uta6REnz/xEJMvwf72wdUnC3rr4jAQf5jnTkeRQ9b6soxLxhDEbS/pfMPoJLDfFPNVRdryqWUIV/2GZzDJFZw==}
708 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
709 | peerDependencies:
710 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
711 | eslint: ^8.57.0 || ^9.0.0
712 | typescript: '>=4.8.4 <5.8.0'
713 |
714 | '@typescript-eslint/parser@8.22.0':
715 | resolution: {integrity: sha512-MqtmbdNEdoNxTPzpWiWnqNac54h8JDAmkWtJExBVVnSrSmi9z+sZUt0LfKqk9rjqmKOIeRhO4fHHJ1nQIjduIQ==}
716 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
717 | peerDependencies:
718 | eslint: ^8.57.0 || ^9.0.0
719 | typescript: '>=4.8.4 <5.8.0'
720 |
721 | '@typescript-eslint/scope-manager@8.22.0':
722 | resolution: {integrity: sha512-/lwVV0UYgkj7wPSw0o8URy6YI64QmcOdwHuGuxWIYznO6d45ER0wXUbksr9pYdViAofpUCNJx/tAzNukgvaaiQ==}
723 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
724 |
725 | '@typescript-eslint/type-utils@8.22.0':
726 | resolution: {integrity: sha512-NzE3aB62fDEaGjaAYZE4LH7I1MUwHooQ98Byq0G0y3kkibPJQIXVUspzlFOmOfHhiDLwKzMlWxaNv+/qcZurJA==}
727 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
728 | peerDependencies:
729 | eslint: ^8.57.0 || ^9.0.0
730 | typescript: '>=4.8.4 <5.8.0'
731 |
732 | '@typescript-eslint/types@8.22.0':
733 | resolution: {integrity: sha512-0S4M4baNzp612zwpD4YOieP3VowOARgK2EkN/GBn95hpyF8E2fbMT55sRHWBq+Huaqk3b3XK+rxxlM8sPgGM6A==}
734 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
735 |
736 | '@typescript-eslint/typescript-estree@8.22.0':
737 | resolution: {integrity: sha512-SJX99NAS2ugGOzpyhMza/tX+zDwjvwAtQFLsBo3GQxiGcvaKlqGBkmZ+Y1IdiSi9h4Q0Lr5ey+Cp9CGWNY/F/w==}
738 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
739 | peerDependencies:
740 | typescript: '>=4.8.4 <5.8.0'
741 |
742 | '@typescript-eslint/utils@8.22.0':
743 | resolution: {integrity: sha512-T8oc1MbF8L+Bk2msAvCUzjxVB2Z2f+vXYfcucE2wOmYs7ZUwco5Ep0fYZw8quNwOiw9K8GYVL+Kgc2pETNTLOg==}
744 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
745 | peerDependencies:
746 | eslint: ^8.57.0 || ^9.0.0
747 | typescript: '>=4.8.4 <5.8.0'
748 |
749 | '@typescript-eslint/visitor-keys@8.22.0':
750 | resolution: {integrity: sha512-AWpYAXnUgvLNabGTy3uBylkgZoosva/miNd1I8Bz3SjotmQPbVqhO4Cczo8AsZ44XVErEBPr/CRSgaj8sG7g0w==}
751 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
752 |
753 | '@unocss/config@65.4.3':
754 | resolution: {integrity: sha512-Z3tnQ10UjM09Y1yVqfCYfZEh2pXFQlUQ1g188mMWxjXWEIXeei3f9dIApRBgC+xcPE6prqdu3fDC5emU+sqyxw==}
755 | engines: {node: '>=14'}
756 |
757 | '@unocss/core@65.4.3':
758 | resolution: {integrity: sha512-luFgdcchSlNrYSaDvU2176T2PPQZdxqfREVbxEXNXlFEgyEFrx5hOSUXoJtJSZjRhAcE6zkWyLDf/JkQJ5Eeyw==}
759 |
760 | '@unocss/eslint-plugin@65.4.3':
761 | resolution: {integrity: sha512-uK6WpZPy/zJxunw4lh51KjIO370SRAIFlvg/Knh4Kl5214xiJDezKp7F7NATVBx+JqSf7iHYn2qUdB8Z8I7sXg==}
762 | engines: {node: '>=14'}
763 |
764 | '@unocss/rule-utils@65.4.3':
765 | resolution: {integrity: sha512-bzRRdb9mb82IvgOt3KiRyUh/njRfJC3hoV84lMyUPryT8YTEP/hl6kt2KQ2l1K3WDz7ZPQXVi2eqUbqc+AUpwg==}
766 | engines: {node: '>=14'}
767 |
768 | acorn-jsx@5.3.2:
769 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
770 | peerDependencies:
771 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
772 |
773 | acorn@8.14.0:
774 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
775 | engines: {node: '>=0.4.0'}
776 | hasBin: true
777 |
778 | ajv@6.12.6:
779 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
780 |
781 | ansi-styles@4.3.0:
782 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
783 | engines: {node: '>=8'}
784 |
785 | are-docs-informative@0.0.2:
786 | resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
787 | engines: {node: '>=14'}
788 |
789 | argparse@2.0.1:
790 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
791 |
792 | balanced-match@1.0.2:
793 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
794 |
795 | boolbase@1.0.0:
796 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
797 |
798 | brace-expansion@1.1.11:
799 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
800 |
801 | brace-expansion@2.0.1:
802 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
803 |
804 | braces@3.0.3:
805 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
806 | engines: {node: '>=8'}
807 |
808 | browserslist@4.24.4:
809 | resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
810 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
811 | hasBin: true
812 |
813 | builtin-modules@3.3.0:
814 | resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
815 | engines: {node: '>=6'}
816 |
817 | bundle-require@5.1.0:
818 | resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
819 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
820 | peerDependencies:
821 | esbuild: '>=0.18'
822 |
823 | callsites@3.1.0:
824 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
825 | engines: {node: '>=6'}
826 |
827 | caniuse-lite@1.0.30001696:
828 | resolution: {integrity: sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ==}
829 |
830 | ccount@2.0.1:
831 | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
832 |
833 | chalk@4.1.2:
834 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
835 | engines: {node: '>=10'}
836 |
837 | character-entities@2.0.2:
838 | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
839 |
840 | ci-info@4.1.0:
841 | resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==}
842 | engines: {node: '>=8'}
843 |
844 | clean-regexp@1.0.0:
845 | resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
846 | engines: {node: '>=4'}
847 |
848 | color-convert@2.0.1:
849 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
850 | engines: {node: '>=7.0.0'}
851 |
852 | color-name@1.1.4:
853 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
854 |
855 | comment-parser@1.4.1:
856 | resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
857 | engines: {node: '>= 12.0.0'}
858 |
859 | concat-map@0.0.1:
860 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
861 |
862 | confbox@0.1.8:
863 | resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
864 |
865 | core-js-compat@3.40.0:
866 | resolution: {integrity: sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==}
867 |
868 | cross-spawn@7.0.6:
869 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
870 | engines: {node: '>= 8'}
871 |
872 | cssesc@3.0.0:
873 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
874 | engines: {node: '>=4'}
875 | hasBin: true
876 |
877 | debug@3.2.7:
878 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
879 | peerDependencies:
880 | supports-color: '*'
881 | peerDependenciesMeta:
882 | supports-color:
883 | optional: true
884 |
885 | debug@4.4.0:
886 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
887 | engines: {node: '>=6.0'}
888 | peerDependencies:
889 | supports-color: '*'
890 | peerDependenciesMeta:
891 | supports-color:
892 | optional: true
893 |
894 | decode-named-character-reference@1.0.2:
895 | resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
896 |
897 | deep-is@0.1.4:
898 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
899 |
900 | defu@6.1.4:
901 | resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
902 |
903 | dequal@2.0.3:
904 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
905 | engines: {node: '>=6'}
906 |
907 | devlop@1.1.0:
908 | resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
909 |
910 | doctrine@3.0.0:
911 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
912 | engines: {node: '>=6.0.0'}
913 |
914 | electron-to-chromium@1.5.88:
915 | resolution: {integrity: sha512-K3C2qf1o+bGzbilTDCTBhTQcMS9KW60yTAaTeeXsfvQuTDDwlokLam/AdqlqcSy9u4UainDgsHV23ksXAOgamw==}
916 |
917 | enhanced-resolve@5.18.0:
918 | resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
919 | engines: {node: '>=10.13.0'}
920 |
921 | error-ex@1.3.2:
922 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
923 |
924 | es-module-lexer@1.6.0:
925 | resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
926 |
927 | esbuild@0.21.5:
928 | resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
929 | engines: {node: '>=12'}
930 | hasBin: true
931 |
932 | esbuild@0.23.1:
933 | resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
934 | engines: {node: '>=18'}
935 | hasBin: true
936 |
937 | esbuild@0.24.2:
938 | resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
939 | engines: {node: '>=18'}
940 | hasBin: true
941 |
942 | escalade@3.2.0:
943 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
944 | engines: {node: '>=6'}
945 |
946 | escape-string-regexp@1.0.5:
947 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
948 | engines: {node: '>=0.8.0'}
949 |
950 | escape-string-regexp@4.0.0:
951 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
952 | engines: {node: '>=10'}
953 |
954 | escape-string-regexp@5.0.0:
955 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
956 | engines: {node: '>=12'}
957 |
958 | eslint-compat-utils@0.5.1:
959 | resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
960 | engines: {node: '>=12'}
961 | peerDependencies:
962 | eslint: '>=6.0.0'
963 |
964 | eslint-compat-utils@0.6.4:
965 | resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==}
966 | engines: {node: '>=12'}
967 | peerDependencies:
968 | eslint: '>=6.0.0'
969 |
970 | eslint-config-flat-gitignore@1.0.1:
971 | resolution: {integrity: sha512-wjBmJ8TAb67G2or/gBp/H62uCIkDCjpCmlGPSG41/7QagUjMgh+iegVB3gY8eNYhTAmecjKtclT4wGAjHz5yWA==}
972 | peerDependencies:
973 | eslint: ^9.5.0
974 |
975 | eslint-config-prettier@9.1.0:
976 | resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
977 | hasBin: true
978 | peerDependencies:
979 | eslint: '>=7.0.0'
980 |
981 | eslint-import-resolver-node@0.3.9:
982 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
983 |
984 | eslint-json-compat-utils@0.2.1:
985 | resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==}
986 | engines: {node: '>=12'}
987 | peerDependencies:
988 | '@eslint/json': '*'
989 | eslint: '*'
990 | jsonc-eslint-parser: ^2.4.0
991 | peerDependenciesMeta:
992 | '@eslint/json':
993 | optional: true
994 |
995 | eslint-plugin-antfu@2.7.0:
996 | resolution: {integrity: sha512-gZM3jq3ouqaoHmUNszb1Zo2Ux7RckSvkGksjLWz9ipBYGSv1EwwBETN6AdiUXn+RpVHXTbEMPAPlXJazcA6+iA==}
997 | peerDependencies:
998 | eslint: '*'
999 |
1000 | eslint-plugin-command@2.1.0:
1001 | resolution: {integrity: sha512-S3gvDSCRHLdRG7NYaevLvGA0g/txOju7NEB2di7SE80NtbCwsvpi/fft045YuTZpOzqCRUfuye39raldmpXXYQ==}
1002 | peerDependencies:
1003 | eslint: '*'
1004 |
1005 | eslint-plugin-es-x@7.8.0:
1006 | resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
1007 | engines: {node: ^14.18.0 || >=16.0.0}
1008 | peerDependencies:
1009 | eslint: '>=8'
1010 |
1011 | eslint-plugin-import-x@4.6.1:
1012 | resolution: {integrity: sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==}
1013 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1014 | peerDependencies:
1015 | eslint: ^8.57.0 || ^9.0.0
1016 |
1017 | eslint-plugin-jsdoc@50.6.3:
1018 | resolution: {integrity: sha512-NxbJyt1M5zffPcYZ8Nb53/8nnbIScmiLAMdoe0/FAszwb7lcSiX3iYBTsuF7RV84dZZJC8r3NghomrUXsmWvxQ==}
1019 | engines: {node: '>=18'}
1020 | peerDependencies:
1021 | eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
1022 |
1023 | eslint-plugin-jsonc@2.19.1:
1024 | resolution: {integrity: sha512-MmlAOaZK1+Lg7YoCZPGRjb88ZjT+ct/KTsvcsbZdBm+w8WMzGx+XEmexk0m40P1WV9G2rFV7X3klyRGRpFXEjA==}
1025 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1026 | peerDependencies:
1027 | eslint: '>=6.0.0'
1028 |
1029 | eslint-plugin-n@17.15.1:
1030 | resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==}
1031 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1032 | peerDependencies:
1033 | eslint: '>=8.23.0'
1034 |
1035 | eslint-plugin-perfectionist@4.7.0:
1036 | resolution: {integrity: sha512-e2ODzm2SsAztFWY3ZRJd1K702vyl8Sapacjc3JluOW294CfA3+jfjin+UxjcrK48EvlNIMOp+JJB9N54YR2LRw==}
1037 | engines: {node: ^18.0.0 || >=20.0.0}
1038 | peerDependencies:
1039 | eslint: '>=8.0.0'
1040 |
1041 | eslint-plugin-prettier@5.2.3:
1042 | resolution: {integrity: sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==}
1043 | engines: {node: ^14.18.0 || >=16.0.0}
1044 | peerDependencies:
1045 | '@types/eslint': '>=8.0.0'
1046 | eslint: '>=8.0.0'
1047 | eslint-config-prettier: '*'
1048 | prettier: '>=3.0.0'
1049 | peerDependenciesMeta:
1050 | '@types/eslint':
1051 | optional: true
1052 | eslint-config-prettier:
1053 | optional: true
1054 |
1055 | eslint-plugin-regexp@2.7.0:
1056 | resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==}
1057 | engines: {node: ^18 || >=20}
1058 | peerDependencies:
1059 | eslint: '>=8.44.0'
1060 |
1061 | eslint-plugin-sxzz@0.1.0:
1062 | resolution: {integrity: sha512-ws2yD0yWnFAyujNNsYkw8KlU/yRKcnQHueGJJ7N20i5RCj+zcUZCPck634PejkiexWlNcsrr4G8bhXVzthk4FQ==}
1063 | engines: {node: '>=18.12.0'}
1064 | peerDependencies:
1065 | eslint: '*'
1066 |
1067 | eslint-plugin-unicorn@56.0.1:
1068 | resolution: {integrity: sha512-FwVV0Uwf8XPfVnKSGpMg7NtlZh0G0gBarCaFcMUOoqPxXryxdYxTRRv4kH6B9TFCVIrjRXG+emcxIk2ayZilog==}
1069 | engines: {node: '>=18.18'}
1070 | peerDependencies:
1071 | eslint: '>=8.56.0'
1072 |
1073 | eslint-plugin-unused-imports@4.1.4:
1074 | resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
1075 | peerDependencies:
1076 | '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
1077 | eslint: ^9.0.0 || ^8.0.0
1078 | peerDependenciesMeta:
1079 | '@typescript-eslint/eslint-plugin':
1080 | optional: true
1081 |
1082 | eslint-plugin-vue@9.32.0:
1083 | resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==}
1084 | engines: {node: ^14.17.0 || >=16.0.0}
1085 | peerDependencies:
1086 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
1087 |
1088 | eslint-plugin-yml@1.16.0:
1089 | resolution: {integrity: sha512-t4MNCetPjTn18/fUDlQ/wKkcYjnuLYKChBrZ0qUaNqRigVqChHWzTP8SrfFi5s4keX3vdlkWRSu8zHJMdKwxWQ==}
1090 | engines: {node: ^14.17.0 || >=16.0.0}
1091 | peerDependencies:
1092 | eslint: '>=6.0.0'
1093 |
1094 | eslint-scope@7.2.2:
1095 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
1096 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1097 |
1098 | eslint-scope@8.2.0:
1099 | resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
1100 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1101 |
1102 | eslint-visitor-keys@3.4.3:
1103 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1104 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1105 |
1106 | eslint-visitor-keys@4.2.0:
1107 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
1108 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1109 |
1110 | eslint@9.19.0:
1111 | resolution: {integrity: sha512-ug92j0LepKlbbEv6hD911THhoRHmbdXt2gX+VDABAW/Ir7D3nqKdv5Pf5vtlyY6HQMTEP2skXY43ueqTCWssEA==}
1112 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1113 | hasBin: true
1114 | peerDependencies:
1115 | jiti: '*'
1116 | peerDependenciesMeta:
1117 | jiti:
1118 | optional: true
1119 |
1120 | espree@10.3.0:
1121 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
1122 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1123 |
1124 | espree@9.6.1:
1125 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
1126 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1127 |
1128 | esquery@1.6.0:
1129 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
1130 | engines: {node: '>=0.10'}
1131 |
1132 | esrecurse@4.3.0:
1133 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1134 | engines: {node: '>=4.0'}
1135 |
1136 | estraverse@5.3.0:
1137 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1138 | engines: {node: '>=4.0'}
1139 |
1140 | esutils@2.0.3:
1141 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1142 | engines: {node: '>=0.10.0'}
1143 |
1144 | fast-deep-equal@3.1.3:
1145 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1146 |
1147 | fast-diff@1.3.0:
1148 | resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
1149 |
1150 | fast-glob@3.3.3:
1151 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
1152 | engines: {node: '>=8.6.0'}
1153 |
1154 | fast-json-stable-stringify@2.1.0:
1155 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1156 |
1157 | fast-levenshtein@2.0.6:
1158 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1159 |
1160 | fastq@1.18.0:
1161 | resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
1162 |
1163 | file-entry-cache@8.0.0:
1164 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
1165 | engines: {node: '>=16.0.0'}
1166 |
1167 | fill-range@7.1.1:
1168 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
1169 | engines: {node: '>=8'}
1170 |
1171 | find-up@4.1.0:
1172 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
1173 | engines: {node: '>=8'}
1174 |
1175 | find-up@5.0.0:
1176 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1177 | engines: {node: '>=10'}
1178 |
1179 | flat-cache@4.0.1:
1180 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
1181 | engines: {node: '>=16'}
1182 |
1183 | flatted@3.3.2:
1184 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
1185 |
1186 | fsevents@2.3.3:
1187 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1188 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1189 | os: [darwin]
1190 |
1191 | function-bind@1.1.2:
1192 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1193 |
1194 | get-tsconfig@4.10.0:
1195 | resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
1196 |
1197 | glob-parent@5.1.2:
1198 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1199 | engines: {node: '>= 6'}
1200 |
1201 | glob-parent@6.0.2:
1202 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1203 | engines: {node: '>=10.13.0'}
1204 |
1205 | globals@13.24.0:
1206 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
1207 | engines: {node: '>=8'}
1208 |
1209 | globals@14.0.0:
1210 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
1211 | engines: {node: '>=18'}
1212 |
1213 | globals@15.14.0:
1214 | resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
1215 | engines: {node: '>=18'}
1216 |
1217 | graceful-fs@4.2.11:
1218 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1219 |
1220 | graphemer@1.4.0:
1221 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
1222 |
1223 | has-flag@4.0.0:
1224 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1225 | engines: {node: '>=8'}
1226 |
1227 | hasown@2.0.2:
1228 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1229 | engines: {node: '>= 0.4'}
1230 |
1231 | hosted-git-info@2.8.9:
1232 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
1233 |
1234 | ignore@5.3.2:
1235 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
1236 | engines: {node: '>= 4'}
1237 |
1238 | import-fresh@3.3.0:
1239 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1240 | engines: {node: '>=6'}
1241 |
1242 | importx@0.5.1:
1243 | resolution: {integrity: sha512-YrRaigAec1sC2CdIJjf/hCH1Wp9Ii8Cq5ROw4k5nJ19FVl2FcJUHZ5gGIb1vs8+JNYIyOJpc2fcufS2330bxDw==}
1244 |
1245 | imurmurhash@0.1.4:
1246 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1247 | engines: {node: '>=0.8.19'}
1248 |
1249 | indent-string@4.0.0:
1250 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
1251 | engines: {node: '>=8'}
1252 |
1253 | is-arrayish@0.2.1:
1254 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
1255 |
1256 | is-builtin-module@3.2.1:
1257 | resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
1258 | engines: {node: '>=6'}
1259 |
1260 | is-core-module@2.16.1:
1261 | resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
1262 | engines: {node: '>= 0.4'}
1263 |
1264 | is-extglob@2.1.1:
1265 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1266 | engines: {node: '>=0.10.0'}
1267 |
1268 | is-glob@4.0.3:
1269 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1270 | engines: {node: '>=0.10.0'}
1271 |
1272 | is-number@7.0.0:
1273 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1274 | engines: {node: '>=0.12.0'}
1275 |
1276 | isexe@2.0.0:
1277 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1278 |
1279 | jiti@2.4.2:
1280 | resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
1281 | hasBin: true
1282 |
1283 | js-tokens@4.0.0:
1284 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1285 |
1286 | js-yaml@4.1.0:
1287 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1288 | hasBin: true
1289 |
1290 | jsdoc-type-pratt-parser@4.1.0:
1291 | resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
1292 | engines: {node: '>=12.0.0'}
1293 |
1294 | jsesc@0.5.0:
1295 | resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
1296 | hasBin: true
1297 |
1298 | jsesc@3.1.0:
1299 | resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
1300 | engines: {node: '>=6'}
1301 | hasBin: true
1302 |
1303 | json-buffer@3.0.1:
1304 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1305 |
1306 | json-parse-even-better-errors@2.3.1:
1307 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
1308 |
1309 | json-schema-traverse@0.4.1:
1310 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1311 |
1312 | json-stable-stringify-without-jsonify@1.0.1:
1313 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1314 |
1315 | jsonc-eslint-parser@2.4.0:
1316 | resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
1317 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1318 |
1319 | keyv@4.5.4:
1320 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1321 |
1322 | levn@0.4.1:
1323 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1324 | engines: {node: '>= 0.8.0'}
1325 |
1326 | lines-and-columns@1.2.4:
1327 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1328 |
1329 | load-tsconfig@0.2.5:
1330 | resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
1331 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1332 |
1333 | local-pkg@1.0.0:
1334 | resolution: {integrity: sha512-bbgPw/wmroJsil/GgL4qjDzs5YLTBMQ99weRsok1XCDccQeehbHA/I1oRvk2NPtr7KGZgT/Y5tPRnAtMqeG2Kg==}
1335 | engines: {node: '>=14'}
1336 |
1337 | locate-path@5.0.0:
1338 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
1339 | engines: {node: '>=8'}
1340 |
1341 | locate-path@6.0.0:
1342 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1343 | engines: {node: '>=10'}
1344 |
1345 | lodash.merge@4.6.2:
1346 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1347 |
1348 | lodash@4.17.21:
1349 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
1350 |
1351 | longest-streak@3.1.0:
1352 | resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
1353 |
1354 | magic-string@0.30.17:
1355 | resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
1356 |
1357 | markdown-table@3.0.4:
1358 | resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
1359 |
1360 | mdast-util-find-and-replace@3.0.2:
1361 | resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
1362 |
1363 | mdast-util-from-markdown@2.0.2:
1364 | resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
1365 |
1366 | mdast-util-gfm-autolink-literal@2.0.1:
1367 | resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
1368 |
1369 | mdast-util-gfm-footnote@2.0.0:
1370 | resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
1371 |
1372 | mdast-util-gfm-strikethrough@2.0.0:
1373 | resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
1374 |
1375 | mdast-util-gfm-table@2.0.0:
1376 | resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
1377 |
1378 | mdast-util-gfm-task-list-item@2.0.0:
1379 | resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
1380 |
1381 | mdast-util-gfm@3.0.0:
1382 | resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
1383 |
1384 | mdast-util-phrasing@4.1.0:
1385 | resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
1386 |
1387 | mdast-util-to-markdown@2.1.2:
1388 | resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
1389 |
1390 | mdast-util-to-string@4.0.0:
1391 | resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
1392 |
1393 | merge2@1.4.1:
1394 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1395 | engines: {node: '>= 8'}
1396 |
1397 | micromark-core-commonmark@2.0.2:
1398 | resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==}
1399 |
1400 | micromark-extension-gfm-autolink-literal@2.1.0:
1401 | resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
1402 |
1403 | micromark-extension-gfm-footnote@2.1.0:
1404 | resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
1405 |
1406 | micromark-extension-gfm-strikethrough@2.1.0:
1407 | resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
1408 |
1409 | micromark-extension-gfm-table@2.1.1:
1410 | resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
1411 |
1412 | micromark-extension-gfm-tagfilter@2.0.0:
1413 | resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
1414 |
1415 | micromark-extension-gfm-task-list-item@2.1.0:
1416 | resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
1417 |
1418 | micromark-extension-gfm@3.0.0:
1419 | resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
1420 |
1421 | micromark-factory-destination@2.0.1:
1422 | resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
1423 |
1424 | micromark-factory-label@2.0.1:
1425 | resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
1426 |
1427 | micromark-factory-space@2.0.1:
1428 | resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
1429 |
1430 | micromark-factory-title@2.0.1:
1431 | resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
1432 |
1433 | micromark-factory-whitespace@2.0.1:
1434 | resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
1435 |
1436 | micromark-util-character@2.1.1:
1437 | resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
1438 |
1439 | micromark-util-chunked@2.0.1:
1440 | resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
1441 |
1442 | micromark-util-classify-character@2.0.1:
1443 | resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
1444 |
1445 | micromark-util-combine-extensions@2.0.1:
1446 | resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
1447 |
1448 | micromark-util-decode-numeric-character-reference@2.0.2:
1449 | resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
1450 |
1451 | micromark-util-decode-string@2.0.1:
1452 | resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
1453 |
1454 | micromark-util-encode@2.0.1:
1455 | resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
1456 |
1457 | micromark-util-html-tag-name@2.0.1:
1458 | resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
1459 |
1460 | micromark-util-normalize-identifier@2.0.1:
1461 | resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
1462 |
1463 | micromark-util-resolve-all@2.0.1:
1464 | resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
1465 |
1466 | micromark-util-sanitize-uri@2.0.1:
1467 | resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
1468 |
1469 | micromark-util-subtokenize@2.0.4:
1470 | resolution: {integrity: sha512-N6hXjrin2GTJDe3MVjf5FuXpm12PGm80BrUAeub9XFXca8JZbP+oIwY4LJSVwFUCL1IPm/WwSVUN7goFHmSGGQ==}
1471 |
1472 | micromark-util-symbol@2.0.1:
1473 | resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
1474 |
1475 | micromark-util-types@2.0.1:
1476 | resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==}
1477 |
1478 | micromark@4.0.1:
1479 | resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==}
1480 |
1481 | micromatch@4.0.8:
1482 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1483 | engines: {node: '>=8.6'}
1484 |
1485 | min-indent@1.0.1:
1486 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
1487 | engines: {node: '>=4'}
1488 |
1489 | minimatch@3.1.2:
1490 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1491 |
1492 | minimatch@9.0.3:
1493 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
1494 | engines: {node: '>=16 || 14 >=14.17'}
1495 |
1496 | minimatch@9.0.5:
1497 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1498 | engines: {node: '>=16 || 14 >=14.17'}
1499 |
1500 | mlly@1.7.4:
1501 | resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
1502 |
1503 | ms@2.1.3:
1504 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1505 |
1506 | nanoid@3.3.8:
1507 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
1508 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1509 | hasBin: true
1510 |
1511 | natural-compare@1.4.0:
1512 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1513 |
1514 | natural-orderby@5.0.0:
1515 | resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==}
1516 | engines: {node: '>=18'}
1517 |
1518 | node-releases@2.0.19:
1519 | resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
1520 |
1521 | normalize-package-data@2.5.0:
1522 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
1523 |
1524 | nth-check@2.1.1:
1525 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
1526 |
1527 | optionator@0.9.4:
1528 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1529 | engines: {node: '>= 0.8.0'}
1530 |
1531 | p-limit@2.3.0:
1532 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
1533 | engines: {node: '>=6'}
1534 |
1535 | p-limit@3.1.0:
1536 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1537 | engines: {node: '>=10'}
1538 |
1539 | p-locate@4.1.0:
1540 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
1541 | engines: {node: '>=8'}
1542 |
1543 | p-locate@5.0.0:
1544 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1545 | engines: {node: '>=10'}
1546 |
1547 | p-try@2.2.0:
1548 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
1549 | engines: {node: '>=6'}
1550 |
1551 | parent-module@1.0.1:
1552 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1553 | engines: {node: '>=6'}
1554 |
1555 | parse-imports@2.2.1:
1556 | resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==}
1557 | engines: {node: '>= 18'}
1558 |
1559 | parse-json@5.2.0:
1560 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
1561 | engines: {node: '>=8'}
1562 |
1563 | path-exists@4.0.0:
1564 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1565 | engines: {node: '>=8'}
1566 |
1567 | path-key@3.1.1:
1568 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1569 | engines: {node: '>=8'}
1570 |
1571 | path-parse@1.0.7:
1572 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1573 |
1574 | pathe@1.1.2:
1575 | resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
1576 |
1577 | pathe@2.0.2:
1578 | resolution: {integrity: sha512-15Ztpk+nov8DR524R4BF7uEuzESgzUEAV4Ah7CUMNGXdE5ELuvxElxGXndBl32vMSsWa1jpNf22Z+Er3sKwq+w==}
1579 |
1580 | picocolors@1.1.1:
1581 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1582 |
1583 | picomatch@2.3.1:
1584 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1585 | engines: {node: '>=8.6'}
1586 |
1587 | pkg-types@1.3.1:
1588 | resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
1589 |
1590 | pluralize@8.0.0:
1591 | resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
1592 | engines: {node: '>=4'}
1593 |
1594 | postcss-selector-parser@6.1.2:
1595 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
1596 | engines: {node: '>=4'}
1597 |
1598 | postcss@8.5.1:
1599 | resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
1600 | engines: {node: ^10 || ^12 || >=14}
1601 |
1602 | prelude-ls@1.2.1:
1603 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1604 | engines: {node: '>= 0.8.0'}
1605 |
1606 | prettier-linter-helpers@1.0.0:
1607 | resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
1608 | engines: {node: '>=6.0.0'}
1609 |
1610 | prettier@3.4.2:
1611 | resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
1612 | engines: {node: '>=14'}
1613 | hasBin: true
1614 |
1615 | punycode@2.3.1:
1616 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1617 | engines: {node: '>=6'}
1618 |
1619 | queue-microtask@1.2.3:
1620 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1621 |
1622 | read-pkg-up@7.0.1:
1623 | resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
1624 | engines: {node: '>=8'}
1625 |
1626 | read-pkg@5.2.0:
1627 | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
1628 | engines: {node: '>=8'}
1629 |
1630 | refa@0.12.1:
1631 | resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
1632 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
1633 |
1634 | regexp-ast-analysis@0.7.1:
1635 | resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
1636 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
1637 |
1638 | regexp-tree@0.1.27:
1639 | resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
1640 | hasBin: true
1641 |
1642 | regjsparser@0.10.0:
1643 | resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==}
1644 | hasBin: true
1645 |
1646 | resolve-from@4.0.0:
1647 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1648 | engines: {node: '>=4'}
1649 |
1650 | resolve-pkg-maps@1.0.0:
1651 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1652 |
1653 | resolve@1.22.10:
1654 | resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
1655 | engines: {node: '>= 0.4'}
1656 | hasBin: true
1657 |
1658 | reusify@1.0.4:
1659 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1660 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1661 |
1662 | rollup@4.32.1:
1663 | resolution: {integrity: sha512-z+aeEsOeEa3mEbS1Tjl6sAZ8NE3+AalQz1RJGj81M+fizusbdDMoEJwdJNHfaB40Scr4qNu+welOfes7maKonA==}
1664 | engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1665 | hasBin: true
1666 |
1667 | run-parallel@1.2.0:
1668 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1669 |
1670 | scslre@0.3.0:
1671 | resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
1672 | engines: {node: ^14.0.0 || >=16.0.0}
1673 |
1674 | semver@5.7.2:
1675 | resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
1676 | hasBin: true
1677 |
1678 | semver@7.7.0:
1679 | resolution: {integrity: sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==}
1680 | engines: {node: '>=10'}
1681 | hasBin: true
1682 |
1683 | shebang-command@2.0.0:
1684 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1685 | engines: {node: '>=8'}
1686 |
1687 | shebang-regex@3.0.0:
1688 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1689 | engines: {node: '>=8'}
1690 |
1691 | slashes@3.0.12:
1692 | resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==}
1693 |
1694 | source-map-js@1.2.1:
1695 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1696 | engines: {node: '>=0.10.0'}
1697 |
1698 | spdx-correct@3.2.0:
1699 | resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
1700 |
1701 | spdx-exceptions@2.5.0:
1702 | resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
1703 |
1704 | spdx-expression-parse@3.0.1:
1705 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
1706 |
1707 | spdx-expression-parse@4.0.0:
1708 | resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
1709 |
1710 | spdx-license-ids@3.0.21:
1711 | resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==}
1712 |
1713 | stable-hash@0.0.4:
1714 | resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
1715 |
1716 | strip-indent@3.0.0:
1717 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
1718 | engines: {node: '>=8'}
1719 |
1720 | strip-json-comments@3.1.1:
1721 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1722 | engines: {node: '>=8'}
1723 |
1724 | supports-color@7.2.0:
1725 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1726 | engines: {node: '>=8'}
1727 |
1728 | supports-preserve-symlinks-flag@1.0.0:
1729 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1730 | engines: {node: '>= 0.4'}
1731 |
1732 | synckit@0.6.2:
1733 | resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
1734 | engines: {node: '>=12.20'}
1735 |
1736 | synckit@0.9.2:
1737 | resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
1738 | engines: {node: ^14.18.0 || >=16.0.0}
1739 |
1740 | tapable@2.2.1:
1741 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
1742 | engines: {node: '>=6'}
1743 |
1744 | to-regex-range@5.0.1:
1745 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1746 | engines: {node: '>=8.0'}
1747 |
1748 | ts-api-utils@2.0.0:
1749 | resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==}
1750 | engines: {node: '>=18.12'}
1751 | peerDependencies:
1752 | typescript: '>=4.8.4'
1753 |
1754 | tslib@2.8.1:
1755 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1756 |
1757 | tsx@4.19.2:
1758 | resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==}
1759 | engines: {node: '>=18.0.0'}
1760 | hasBin: true
1761 |
1762 | type-check@0.4.0:
1763 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1764 | engines: {node: '>= 0.8.0'}
1765 |
1766 | type-fest@0.20.2:
1767 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
1768 | engines: {node: '>=10'}
1769 |
1770 | type-fest@0.6.0:
1771 | resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
1772 | engines: {node: '>=8'}
1773 |
1774 | type-fest@0.8.1:
1775 | resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
1776 | engines: {node: '>=8'}
1777 |
1778 | typescript-eslint@8.22.0:
1779 | resolution: {integrity: sha512-Y2rj210FW1Wb6TWXzQc5+P+EWI9/zdS57hLEc0gnyuvdzWo8+Y8brKlbj0muejonhMI/xAZCnZZwjbIfv1CkOw==}
1780 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1781 | peerDependencies:
1782 | eslint: ^8.57.0 || ^9.0.0
1783 | typescript: '>=4.8.4 <5.8.0'
1784 |
1785 | typescript@5.7.3:
1786 | resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
1787 | engines: {node: '>=14.17'}
1788 | hasBin: true
1789 |
1790 | ufo@1.5.4:
1791 | resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
1792 |
1793 | unconfig@0.6.1:
1794 | resolution: {integrity: sha512-cVU+/sPloZqOyJEAfNwnQSFCzFrZm85vcVkryH7lnlB/PiTycUkAjt5Ds79cfIshGOZ+M5v3PBDnKgpmlE5DtA==}
1795 |
1796 | undici-types@6.20.0:
1797 | resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
1798 |
1799 | unist-util-is@6.0.0:
1800 | resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
1801 |
1802 | unist-util-stringify-position@4.0.0:
1803 | resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
1804 |
1805 | unist-util-visit-parents@6.0.1:
1806 | resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
1807 |
1808 | unist-util-visit@5.0.0:
1809 | resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
1810 |
1811 | update-browserslist-db@1.1.2:
1812 | resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==}
1813 | hasBin: true
1814 | peerDependencies:
1815 | browserslist: '>= 4.21.0'
1816 |
1817 | uri-js@4.4.1:
1818 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1819 |
1820 | util-deprecate@1.0.2:
1821 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1822 |
1823 | validate-npm-package-license@3.0.4:
1824 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
1825 |
1826 | vite@6.0.11:
1827 | resolution: {integrity: sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==}
1828 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
1829 | hasBin: true
1830 | peerDependencies:
1831 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
1832 | jiti: '>=1.21.0'
1833 | less: '*'
1834 | lightningcss: ^1.21.0
1835 | sass: '*'
1836 | sass-embedded: '*'
1837 | stylus: '*'
1838 | sugarss: '*'
1839 | terser: ^5.16.0
1840 | tsx: ^4.8.1
1841 | yaml: ^2.4.2
1842 | peerDependenciesMeta:
1843 | '@types/node':
1844 | optional: true
1845 | jiti:
1846 | optional: true
1847 | less:
1848 | optional: true
1849 | lightningcss:
1850 | optional: true
1851 | sass:
1852 | optional: true
1853 | sass-embedded:
1854 | optional: true
1855 | stylus:
1856 | optional: true
1857 | sugarss:
1858 | optional: true
1859 | terser:
1860 | optional: true
1861 | tsx:
1862 | optional: true
1863 | yaml:
1864 | optional: true
1865 |
1866 | vue-eslint-parser@9.4.3:
1867 | resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
1868 | engines: {node: ^14.17.0 || >=16.0.0}
1869 | peerDependencies:
1870 | eslint: '>=6.0.0'
1871 |
1872 | which@2.0.2:
1873 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1874 | engines: {node: '>= 8'}
1875 | hasBin: true
1876 |
1877 | word-wrap@1.2.5:
1878 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1879 | engines: {node: '>=0.10.0'}
1880 |
1881 | xml-name-validator@4.0.0:
1882 | resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
1883 | engines: {node: '>=12'}
1884 |
1885 | yaml-eslint-parser@1.2.3:
1886 | resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==}
1887 | engines: {node: ^14.17.0 || >=16.0.0}
1888 |
1889 | yaml@2.7.0:
1890 | resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
1891 | engines: {node: '>= 14'}
1892 | hasBin: true
1893 |
1894 | yocto-queue@0.1.0:
1895 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1896 | engines: {node: '>=10'}
1897 |
1898 | zwitch@2.0.4:
1899 | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
1900 |
1901 | snapshots:
1902 |
1903 | '@antfu/utils@0.7.10': {}
1904 |
1905 | '@antfu/utils@8.1.0': {}
1906 |
1907 | '@babel/code-frame@7.26.2':
1908 | dependencies:
1909 | '@babel/helper-validator-identifier': 7.25.9
1910 | js-tokens: 4.0.0
1911 | picocolors: 1.1.1
1912 |
1913 | '@babel/helper-validator-identifier@7.25.9': {}
1914 |
1915 | '@es-joy/jsdoccomment@0.49.0':
1916 | dependencies:
1917 | comment-parser: 1.4.1
1918 | esquery: 1.6.0
1919 | jsdoc-type-pratt-parser: 4.1.0
1920 |
1921 | '@es-joy/jsdoccomment@0.50.0':
1922 | dependencies:
1923 | '@types/eslint': 9.6.1
1924 | '@types/estree': 1.0.6
1925 | '@typescript-eslint/types': 8.22.0
1926 | comment-parser: 1.4.1
1927 | esquery: 1.6.0
1928 | jsdoc-type-pratt-parser: 4.1.0
1929 |
1930 | '@esbuild/aix-ppc64@0.21.5':
1931 | optional: true
1932 |
1933 | '@esbuild/aix-ppc64@0.23.1':
1934 | optional: true
1935 |
1936 | '@esbuild/aix-ppc64@0.24.2':
1937 | optional: true
1938 |
1939 | '@esbuild/android-arm64@0.21.5':
1940 | optional: true
1941 |
1942 | '@esbuild/android-arm64@0.23.1':
1943 | optional: true
1944 |
1945 | '@esbuild/android-arm64@0.24.2':
1946 | optional: true
1947 |
1948 | '@esbuild/android-arm@0.21.5':
1949 | optional: true
1950 |
1951 | '@esbuild/android-arm@0.23.1':
1952 | optional: true
1953 |
1954 | '@esbuild/android-arm@0.24.2':
1955 | optional: true
1956 |
1957 | '@esbuild/android-x64@0.21.5':
1958 | optional: true
1959 |
1960 | '@esbuild/android-x64@0.23.1':
1961 | optional: true
1962 |
1963 | '@esbuild/android-x64@0.24.2':
1964 | optional: true
1965 |
1966 | '@esbuild/darwin-arm64@0.21.5':
1967 | optional: true
1968 |
1969 | '@esbuild/darwin-arm64@0.23.1':
1970 | optional: true
1971 |
1972 | '@esbuild/darwin-arm64@0.24.2':
1973 | optional: true
1974 |
1975 | '@esbuild/darwin-x64@0.21.5':
1976 | optional: true
1977 |
1978 | '@esbuild/darwin-x64@0.23.1':
1979 | optional: true
1980 |
1981 | '@esbuild/darwin-x64@0.24.2':
1982 | optional: true
1983 |
1984 | '@esbuild/freebsd-arm64@0.21.5':
1985 | optional: true
1986 |
1987 | '@esbuild/freebsd-arm64@0.23.1':
1988 | optional: true
1989 |
1990 | '@esbuild/freebsd-arm64@0.24.2':
1991 | optional: true
1992 |
1993 | '@esbuild/freebsd-x64@0.21.5':
1994 | optional: true
1995 |
1996 | '@esbuild/freebsd-x64@0.23.1':
1997 | optional: true
1998 |
1999 | '@esbuild/freebsd-x64@0.24.2':
2000 | optional: true
2001 |
2002 | '@esbuild/linux-arm64@0.21.5':
2003 | optional: true
2004 |
2005 | '@esbuild/linux-arm64@0.23.1':
2006 | optional: true
2007 |
2008 | '@esbuild/linux-arm64@0.24.2':
2009 | optional: true
2010 |
2011 | '@esbuild/linux-arm@0.21.5':
2012 | optional: true
2013 |
2014 | '@esbuild/linux-arm@0.23.1':
2015 | optional: true
2016 |
2017 | '@esbuild/linux-arm@0.24.2':
2018 | optional: true
2019 |
2020 | '@esbuild/linux-ia32@0.21.5':
2021 | optional: true
2022 |
2023 | '@esbuild/linux-ia32@0.23.1':
2024 | optional: true
2025 |
2026 | '@esbuild/linux-ia32@0.24.2':
2027 | optional: true
2028 |
2029 | '@esbuild/linux-loong64@0.21.5':
2030 | optional: true
2031 |
2032 | '@esbuild/linux-loong64@0.23.1':
2033 | optional: true
2034 |
2035 | '@esbuild/linux-loong64@0.24.2':
2036 | optional: true
2037 |
2038 | '@esbuild/linux-mips64el@0.21.5':
2039 | optional: true
2040 |
2041 | '@esbuild/linux-mips64el@0.23.1':
2042 | optional: true
2043 |
2044 | '@esbuild/linux-mips64el@0.24.2':
2045 | optional: true
2046 |
2047 | '@esbuild/linux-ppc64@0.21.5':
2048 | optional: true
2049 |
2050 | '@esbuild/linux-ppc64@0.23.1':
2051 | optional: true
2052 |
2053 | '@esbuild/linux-ppc64@0.24.2':
2054 | optional: true
2055 |
2056 | '@esbuild/linux-riscv64@0.21.5':
2057 | optional: true
2058 |
2059 | '@esbuild/linux-riscv64@0.23.1':
2060 | optional: true
2061 |
2062 | '@esbuild/linux-riscv64@0.24.2':
2063 | optional: true
2064 |
2065 | '@esbuild/linux-s390x@0.21.5':
2066 | optional: true
2067 |
2068 | '@esbuild/linux-s390x@0.23.1':
2069 | optional: true
2070 |
2071 | '@esbuild/linux-s390x@0.24.2':
2072 | optional: true
2073 |
2074 | '@esbuild/linux-x64@0.21.5':
2075 | optional: true
2076 |
2077 | '@esbuild/linux-x64@0.23.1':
2078 | optional: true
2079 |
2080 | '@esbuild/linux-x64@0.24.2':
2081 | optional: true
2082 |
2083 | '@esbuild/netbsd-arm64@0.24.2':
2084 | optional: true
2085 |
2086 | '@esbuild/netbsd-x64@0.21.5':
2087 | optional: true
2088 |
2089 | '@esbuild/netbsd-x64@0.23.1':
2090 | optional: true
2091 |
2092 | '@esbuild/netbsd-x64@0.24.2':
2093 | optional: true
2094 |
2095 | '@esbuild/openbsd-arm64@0.23.1':
2096 | optional: true
2097 |
2098 | '@esbuild/openbsd-arm64@0.24.2':
2099 | optional: true
2100 |
2101 | '@esbuild/openbsd-x64@0.21.5':
2102 | optional: true
2103 |
2104 | '@esbuild/openbsd-x64@0.23.1':
2105 | optional: true
2106 |
2107 | '@esbuild/openbsd-x64@0.24.2':
2108 | optional: true
2109 |
2110 | '@esbuild/sunos-x64@0.21.5':
2111 | optional: true
2112 |
2113 | '@esbuild/sunos-x64@0.23.1':
2114 | optional: true
2115 |
2116 | '@esbuild/sunos-x64@0.24.2':
2117 | optional: true
2118 |
2119 | '@esbuild/win32-arm64@0.21.5':
2120 | optional: true
2121 |
2122 | '@esbuild/win32-arm64@0.23.1':
2123 | optional: true
2124 |
2125 | '@esbuild/win32-arm64@0.24.2':
2126 | optional: true
2127 |
2128 | '@esbuild/win32-ia32@0.21.5':
2129 | optional: true
2130 |
2131 | '@esbuild/win32-ia32@0.23.1':
2132 | optional: true
2133 |
2134 | '@esbuild/win32-ia32@0.24.2':
2135 | optional: true
2136 |
2137 | '@esbuild/win32-x64@0.21.5':
2138 | optional: true
2139 |
2140 | '@esbuild/win32-x64@0.23.1':
2141 | optional: true
2142 |
2143 | '@esbuild/win32-x64@0.24.2':
2144 | optional: true
2145 |
2146 | '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.19.0(jiti@2.4.2))':
2147 | dependencies:
2148 | escape-string-regexp: 4.0.0
2149 | eslint: 9.19.0(jiti@2.4.2)
2150 | ignore: 5.3.2
2151 |
2152 | '@eslint-community/eslint-utils@4.4.1(eslint@9.19.0(jiti@2.4.2))':
2153 | dependencies:
2154 | eslint: 9.19.0(jiti@2.4.2)
2155 | eslint-visitor-keys: 3.4.3
2156 |
2157 | '@eslint-community/regexpp@4.12.1': {}
2158 |
2159 | '@eslint/compat@1.2.5(eslint@9.19.0(jiti@2.4.2))':
2160 | optionalDependencies:
2161 | eslint: 9.19.0(jiti@2.4.2)
2162 |
2163 | '@eslint/config-array@0.19.1':
2164 | dependencies:
2165 | '@eslint/object-schema': 2.1.5
2166 | debug: 4.4.0
2167 | minimatch: 3.1.2
2168 | transitivePeerDependencies:
2169 | - supports-color
2170 |
2171 | '@eslint/core@0.10.0':
2172 | dependencies:
2173 | '@types/json-schema': 7.0.15
2174 |
2175 | '@eslint/eslintrc@3.2.0':
2176 | dependencies:
2177 | ajv: 6.12.6
2178 | debug: 4.4.0
2179 | espree: 10.3.0
2180 | globals: 14.0.0
2181 | ignore: 5.3.2
2182 | import-fresh: 3.3.0
2183 | js-yaml: 4.1.0
2184 | minimatch: 3.1.2
2185 | strip-json-comments: 3.1.1
2186 | transitivePeerDependencies:
2187 | - supports-color
2188 |
2189 | '@eslint/js@9.19.0': {}
2190 |
2191 | '@eslint/markdown@6.2.2':
2192 | dependencies:
2193 | '@eslint/core': 0.10.0
2194 | '@eslint/plugin-kit': 0.2.5
2195 | mdast-util-from-markdown: 2.0.2
2196 | mdast-util-gfm: 3.0.0
2197 | micromark-extension-gfm: 3.0.0
2198 | transitivePeerDependencies:
2199 | - supports-color
2200 |
2201 | '@eslint/object-schema@2.1.5': {}
2202 |
2203 | '@eslint/plugin-kit@0.2.5':
2204 | dependencies:
2205 | '@eslint/core': 0.10.0
2206 | levn: 0.4.1
2207 |
2208 | '@humanfs/core@0.19.1': {}
2209 |
2210 | '@humanfs/node@0.16.6':
2211 | dependencies:
2212 | '@humanfs/core': 0.19.1
2213 | '@humanwhocodes/retry': 0.3.1
2214 |
2215 | '@humanwhocodes/module-importer@1.0.1': {}
2216 |
2217 | '@humanwhocodes/retry@0.3.1': {}
2218 |
2219 | '@humanwhocodes/retry@0.4.1': {}
2220 |
2221 | '@jridgewell/sourcemap-codec@1.5.0': {}
2222 |
2223 | '@nodelib/fs.scandir@2.1.5':
2224 | dependencies:
2225 | '@nodelib/fs.stat': 2.0.5
2226 | run-parallel: 1.2.0
2227 |
2228 | '@nodelib/fs.stat@2.0.5': {}
2229 |
2230 | '@nodelib/fs.walk@1.2.8':
2231 | dependencies:
2232 | '@nodelib/fs.scandir': 2.1.5
2233 | fastq: 1.18.0
2234 |
2235 | '@pkgr/core@0.1.1': {}
2236 |
2237 | '@rollup/rollup-android-arm-eabi@4.32.1':
2238 | optional: true
2239 |
2240 | '@rollup/rollup-android-arm64@4.32.1':
2241 | optional: true
2242 |
2243 | '@rollup/rollup-darwin-arm64@4.32.1':
2244 | optional: true
2245 |
2246 | '@rollup/rollup-darwin-x64@4.32.1':
2247 | optional: true
2248 |
2249 | '@rollup/rollup-freebsd-arm64@4.32.1':
2250 | optional: true
2251 |
2252 | '@rollup/rollup-freebsd-x64@4.32.1':
2253 | optional: true
2254 |
2255 | '@rollup/rollup-linux-arm-gnueabihf@4.32.1':
2256 | optional: true
2257 |
2258 | '@rollup/rollup-linux-arm-musleabihf@4.32.1':
2259 | optional: true
2260 |
2261 | '@rollup/rollup-linux-arm64-gnu@4.32.1':
2262 | optional: true
2263 |
2264 | '@rollup/rollup-linux-arm64-musl@4.32.1':
2265 | optional: true
2266 |
2267 | '@rollup/rollup-linux-loongarch64-gnu@4.32.1':
2268 | optional: true
2269 |
2270 | '@rollup/rollup-linux-powerpc64le-gnu@4.32.1':
2271 | optional: true
2272 |
2273 | '@rollup/rollup-linux-riscv64-gnu@4.32.1':
2274 | optional: true
2275 |
2276 | '@rollup/rollup-linux-s390x-gnu@4.32.1':
2277 | optional: true
2278 |
2279 | '@rollup/rollup-linux-x64-gnu@4.32.1':
2280 | optional: true
2281 |
2282 | '@rollup/rollup-linux-x64-musl@4.32.1':
2283 | optional: true
2284 |
2285 | '@rollup/rollup-win32-arm64-msvc@4.32.1':
2286 | optional: true
2287 |
2288 | '@rollup/rollup-win32-ia32-msvc@4.32.1':
2289 | optional: true
2290 |
2291 | '@rollup/rollup-win32-x64-msvc@4.32.1':
2292 | optional: true
2293 |
2294 | '@sxzz/eslint-config@4.6.0(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.22.0(@typescript-eslint/parser@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)':
2295 | dependencies:
2296 | '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.19.0(jiti@2.4.2))
2297 | '@eslint/js': 9.19.0
2298 | '@eslint/markdown': 6.2.2
2299 | '@unocss/eslint-plugin': 65.4.3(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2300 | eslint: 9.19.0(jiti@2.4.2)
2301 | eslint-config-flat-gitignore: 1.0.1(eslint@9.19.0(jiti@2.4.2))
2302 | eslint-config-prettier: 9.1.0(eslint@9.19.0(jiti@2.4.2))
2303 | eslint-plugin-antfu: 2.7.0(eslint@9.19.0(jiti@2.4.2))
2304 | eslint-plugin-command: 2.1.0(eslint@9.19.0(jiti@2.4.2))
2305 | eslint-plugin-import-x: 4.6.1(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2306 | eslint-plugin-jsdoc: 50.6.3(eslint@9.19.0(jiti@2.4.2))
2307 | eslint-plugin-jsonc: 2.19.1(eslint@9.19.0(jiti@2.4.2))
2308 | eslint-plugin-n: 17.15.1(eslint@9.19.0(jiti@2.4.2))
2309 | eslint-plugin-perfectionist: 4.7.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2310 | eslint-plugin-prettier: 5.2.3(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.19.0(jiti@2.4.2)))(eslint@9.19.0(jiti@2.4.2))(prettier@3.4.2)
2311 | eslint-plugin-regexp: 2.7.0(eslint@9.19.0(jiti@2.4.2))
2312 | eslint-plugin-sxzz: 0.1.0(eslint@9.19.0(jiti@2.4.2))
2313 | eslint-plugin-unicorn: 56.0.1(eslint@9.19.0(jiti@2.4.2))
2314 | eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.22.0(@typescript-eslint/parser@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))
2315 | eslint-plugin-vue: 9.32.0(eslint@9.19.0(jiti@2.4.2))
2316 | eslint-plugin-yml: 1.16.0(eslint@9.19.0(jiti@2.4.2))
2317 | globals: 15.14.0
2318 | jsonc-eslint-parser: 2.4.0
2319 | local-pkg: 1.0.0
2320 | prettier: 3.4.2
2321 | typescript-eslint: 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2322 | vue-eslint-parser: 9.4.3(eslint@9.19.0(jiti@2.4.2))
2323 | yaml-eslint-parser: 1.2.3
2324 | transitivePeerDependencies:
2325 | - '@eslint/json'
2326 | - '@types/eslint'
2327 | - '@typescript-eslint/eslint-plugin'
2328 | - supports-color
2329 | - typescript
2330 |
2331 | '@types/debug@4.1.12':
2332 | dependencies:
2333 | '@types/ms': 2.1.0
2334 |
2335 | '@types/doctrine@0.0.9': {}
2336 |
2337 | '@types/eslint@9.6.1':
2338 | dependencies:
2339 | '@types/estree': 1.0.6
2340 | '@types/json-schema': 7.0.15
2341 |
2342 | '@types/estree@1.0.6': {}
2343 |
2344 | '@types/json-schema@7.0.15': {}
2345 |
2346 | '@types/mdast@4.0.4':
2347 | dependencies:
2348 | '@types/unist': 3.0.3
2349 |
2350 | '@types/ms@2.1.0': {}
2351 |
2352 | '@types/node@22.12.0':
2353 | dependencies:
2354 | undici-types: 6.20.0
2355 |
2356 | '@types/normalize-package-data@2.4.4': {}
2357 |
2358 | '@types/unist@3.0.3': {}
2359 |
2360 | '@typescript-eslint/eslint-plugin@8.22.0(@typescript-eslint/parser@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)':
2361 | dependencies:
2362 | '@eslint-community/regexpp': 4.12.1
2363 | '@typescript-eslint/parser': 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2364 | '@typescript-eslint/scope-manager': 8.22.0
2365 | '@typescript-eslint/type-utils': 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2366 | '@typescript-eslint/utils': 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2367 | '@typescript-eslint/visitor-keys': 8.22.0
2368 | eslint: 9.19.0(jiti@2.4.2)
2369 | graphemer: 1.4.0
2370 | ignore: 5.3.2
2371 | natural-compare: 1.4.0
2372 | ts-api-utils: 2.0.0(typescript@5.7.3)
2373 | typescript: 5.7.3
2374 | transitivePeerDependencies:
2375 | - supports-color
2376 |
2377 | '@typescript-eslint/parser@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)':
2378 | dependencies:
2379 | '@typescript-eslint/scope-manager': 8.22.0
2380 | '@typescript-eslint/types': 8.22.0
2381 | '@typescript-eslint/typescript-estree': 8.22.0(typescript@5.7.3)
2382 | '@typescript-eslint/visitor-keys': 8.22.0
2383 | debug: 4.4.0
2384 | eslint: 9.19.0(jiti@2.4.2)
2385 | typescript: 5.7.3
2386 | transitivePeerDependencies:
2387 | - supports-color
2388 |
2389 | '@typescript-eslint/scope-manager@8.22.0':
2390 | dependencies:
2391 | '@typescript-eslint/types': 8.22.0
2392 | '@typescript-eslint/visitor-keys': 8.22.0
2393 |
2394 | '@typescript-eslint/type-utils@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)':
2395 | dependencies:
2396 | '@typescript-eslint/typescript-estree': 8.22.0(typescript@5.7.3)
2397 | '@typescript-eslint/utils': 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2398 | debug: 4.4.0
2399 | eslint: 9.19.0(jiti@2.4.2)
2400 | ts-api-utils: 2.0.0(typescript@5.7.3)
2401 | typescript: 5.7.3
2402 | transitivePeerDependencies:
2403 | - supports-color
2404 |
2405 | '@typescript-eslint/types@8.22.0': {}
2406 |
2407 | '@typescript-eslint/typescript-estree@8.22.0(typescript@5.7.3)':
2408 | dependencies:
2409 | '@typescript-eslint/types': 8.22.0
2410 | '@typescript-eslint/visitor-keys': 8.22.0
2411 | debug: 4.4.0
2412 | fast-glob: 3.3.3
2413 | is-glob: 4.0.3
2414 | minimatch: 9.0.5
2415 | semver: 7.7.0
2416 | ts-api-utils: 2.0.0(typescript@5.7.3)
2417 | typescript: 5.7.3
2418 | transitivePeerDependencies:
2419 | - supports-color
2420 |
2421 | '@typescript-eslint/utils@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)':
2422 | dependencies:
2423 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@2.4.2))
2424 | '@typescript-eslint/scope-manager': 8.22.0
2425 | '@typescript-eslint/types': 8.22.0
2426 | '@typescript-eslint/typescript-estree': 8.22.0(typescript@5.7.3)
2427 | eslint: 9.19.0(jiti@2.4.2)
2428 | typescript: 5.7.3
2429 | transitivePeerDependencies:
2430 | - supports-color
2431 |
2432 | '@typescript-eslint/visitor-keys@8.22.0':
2433 | dependencies:
2434 | '@typescript-eslint/types': 8.22.0
2435 | eslint-visitor-keys: 4.2.0
2436 |
2437 | '@unocss/config@65.4.3':
2438 | dependencies:
2439 | '@unocss/core': 65.4.3
2440 | unconfig: 0.6.1
2441 | transitivePeerDependencies:
2442 | - supports-color
2443 |
2444 | '@unocss/core@65.4.3': {}
2445 |
2446 | '@unocss/eslint-plugin@65.4.3(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)':
2447 | dependencies:
2448 | '@typescript-eslint/utils': 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2449 | '@unocss/config': 65.4.3
2450 | '@unocss/core': 65.4.3
2451 | '@unocss/rule-utils': 65.4.3
2452 | magic-string: 0.30.17
2453 | synckit: 0.9.2
2454 | transitivePeerDependencies:
2455 | - eslint
2456 | - supports-color
2457 | - typescript
2458 |
2459 | '@unocss/rule-utils@65.4.3':
2460 | dependencies:
2461 | '@unocss/core': 65.4.3
2462 | magic-string: 0.30.17
2463 |
2464 | acorn-jsx@5.3.2(acorn@8.14.0):
2465 | dependencies:
2466 | acorn: 8.14.0
2467 |
2468 | acorn@8.14.0: {}
2469 |
2470 | ajv@6.12.6:
2471 | dependencies:
2472 | fast-deep-equal: 3.1.3
2473 | fast-json-stable-stringify: 2.1.0
2474 | json-schema-traverse: 0.4.1
2475 | uri-js: 4.4.1
2476 |
2477 | ansi-styles@4.3.0:
2478 | dependencies:
2479 | color-convert: 2.0.1
2480 |
2481 | are-docs-informative@0.0.2: {}
2482 |
2483 | argparse@2.0.1: {}
2484 |
2485 | balanced-match@1.0.2: {}
2486 |
2487 | boolbase@1.0.0: {}
2488 |
2489 | brace-expansion@1.1.11:
2490 | dependencies:
2491 | balanced-match: 1.0.2
2492 | concat-map: 0.0.1
2493 |
2494 | brace-expansion@2.0.1:
2495 | dependencies:
2496 | balanced-match: 1.0.2
2497 |
2498 | braces@3.0.3:
2499 | dependencies:
2500 | fill-range: 7.1.1
2501 |
2502 | browserslist@4.24.4:
2503 | dependencies:
2504 | caniuse-lite: 1.0.30001696
2505 | electron-to-chromium: 1.5.88
2506 | node-releases: 2.0.19
2507 | update-browserslist-db: 1.1.2(browserslist@4.24.4)
2508 |
2509 | builtin-modules@3.3.0: {}
2510 |
2511 | bundle-require@5.1.0(esbuild@0.21.5):
2512 | dependencies:
2513 | esbuild: 0.21.5
2514 | load-tsconfig: 0.2.5
2515 |
2516 | callsites@3.1.0: {}
2517 |
2518 | caniuse-lite@1.0.30001696: {}
2519 |
2520 | ccount@2.0.1: {}
2521 |
2522 | chalk@4.1.2:
2523 | dependencies:
2524 | ansi-styles: 4.3.0
2525 | supports-color: 7.2.0
2526 |
2527 | character-entities@2.0.2: {}
2528 |
2529 | ci-info@4.1.0: {}
2530 |
2531 | clean-regexp@1.0.0:
2532 | dependencies:
2533 | escape-string-regexp: 1.0.5
2534 |
2535 | color-convert@2.0.1:
2536 | dependencies:
2537 | color-name: 1.1.4
2538 |
2539 | color-name@1.1.4: {}
2540 |
2541 | comment-parser@1.4.1: {}
2542 |
2543 | concat-map@0.0.1: {}
2544 |
2545 | confbox@0.1.8: {}
2546 |
2547 | core-js-compat@3.40.0:
2548 | dependencies:
2549 | browserslist: 4.24.4
2550 |
2551 | cross-spawn@7.0.6:
2552 | dependencies:
2553 | path-key: 3.1.1
2554 | shebang-command: 2.0.0
2555 | which: 2.0.2
2556 |
2557 | cssesc@3.0.0: {}
2558 |
2559 | debug@3.2.7:
2560 | dependencies:
2561 | ms: 2.1.3
2562 |
2563 | debug@4.4.0:
2564 | dependencies:
2565 | ms: 2.1.3
2566 |
2567 | decode-named-character-reference@1.0.2:
2568 | dependencies:
2569 | character-entities: 2.0.2
2570 |
2571 | deep-is@0.1.4: {}
2572 |
2573 | defu@6.1.4: {}
2574 |
2575 | dequal@2.0.3: {}
2576 |
2577 | devlop@1.1.0:
2578 | dependencies:
2579 | dequal: 2.0.3
2580 |
2581 | doctrine@3.0.0:
2582 | dependencies:
2583 | esutils: 2.0.3
2584 |
2585 | electron-to-chromium@1.5.88: {}
2586 |
2587 | enhanced-resolve@5.18.0:
2588 | dependencies:
2589 | graceful-fs: 4.2.11
2590 | tapable: 2.2.1
2591 |
2592 | error-ex@1.3.2:
2593 | dependencies:
2594 | is-arrayish: 0.2.1
2595 |
2596 | es-module-lexer@1.6.0: {}
2597 |
2598 | esbuild@0.21.5:
2599 | optionalDependencies:
2600 | '@esbuild/aix-ppc64': 0.21.5
2601 | '@esbuild/android-arm': 0.21.5
2602 | '@esbuild/android-arm64': 0.21.5
2603 | '@esbuild/android-x64': 0.21.5
2604 | '@esbuild/darwin-arm64': 0.21.5
2605 | '@esbuild/darwin-x64': 0.21.5
2606 | '@esbuild/freebsd-arm64': 0.21.5
2607 | '@esbuild/freebsd-x64': 0.21.5
2608 | '@esbuild/linux-arm': 0.21.5
2609 | '@esbuild/linux-arm64': 0.21.5
2610 | '@esbuild/linux-ia32': 0.21.5
2611 | '@esbuild/linux-loong64': 0.21.5
2612 | '@esbuild/linux-mips64el': 0.21.5
2613 | '@esbuild/linux-ppc64': 0.21.5
2614 | '@esbuild/linux-riscv64': 0.21.5
2615 | '@esbuild/linux-s390x': 0.21.5
2616 | '@esbuild/linux-x64': 0.21.5
2617 | '@esbuild/netbsd-x64': 0.21.5
2618 | '@esbuild/openbsd-x64': 0.21.5
2619 | '@esbuild/sunos-x64': 0.21.5
2620 | '@esbuild/win32-arm64': 0.21.5
2621 | '@esbuild/win32-ia32': 0.21.5
2622 | '@esbuild/win32-x64': 0.21.5
2623 |
2624 | esbuild@0.23.1:
2625 | optionalDependencies:
2626 | '@esbuild/aix-ppc64': 0.23.1
2627 | '@esbuild/android-arm': 0.23.1
2628 | '@esbuild/android-arm64': 0.23.1
2629 | '@esbuild/android-x64': 0.23.1
2630 | '@esbuild/darwin-arm64': 0.23.1
2631 | '@esbuild/darwin-x64': 0.23.1
2632 | '@esbuild/freebsd-arm64': 0.23.1
2633 | '@esbuild/freebsd-x64': 0.23.1
2634 | '@esbuild/linux-arm': 0.23.1
2635 | '@esbuild/linux-arm64': 0.23.1
2636 | '@esbuild/linux-ia32': 0.23.1
2637 | '@esbuild/linux-loong64': 0.23.1
2638 | '@esbuild/linux-mips64el': 0.23.1
2639 | '@esbuild/linux-ppc64': 0.23.1
2640 | '@esbuild/linux-riscv64': 0.23.1
2641 | '@esbuild/linux-s390x': 0.23.1
2642 | '@esbuild/linux-x64': 0.23.1
2643 | '@esbuild/netbsd-x64': 0.23.1
2644 | '@esbuild/openbsd-arm64': 0.23.1
2645 | '@esbuild/openbsd-x64': 0.23.1
2646 | '@esbuild/sunos-x64': 0.23.1
2647 | '@esbuild/win32-arm64': 0.23.1
2648 | '@esbuild/win32-ia32': 0.23.1
2649 | '@esbuild/win32-x64': 0.23.1
2650 |
2651 | esbuild@0.24.2:
2652 | optionalDependencies:
2653 | '@esbuild/aix-ppc64': 0.24.2
2654 | '@esbuild/android-arm': 0.24.2
2655 | '@esbuild/android-arm64': 0.24.2
2656 | '@esbuild/android-x64': 0.24.2
2657 | '@esbuild/darwin-arm64': 0.24.2
2658 | '@esbuild/darwin-x64': 0.24.2
2659 | '@esbuild/freebsd-arm64': 0.24.2
2660 | '@esbuild/freebsd-x64': 0.24.2
2661 | '@esbuild/linux-arm': 0.24.2
2662 | '@esbuild/linux-arm64': 0.24.2
2663 | '@esbuild/linux-ia32': 0.24.2
2664 | '@esbuild/linux-loong64': 0.24.2
2665 | '@esbuild/linux-mips64el': 0.24.2
2666 | '@esbuild/linux-ppc64': 0.24.2
2667 | '@esbuild/linux-riscv64': 0.24.2
2668 | '@esbuild/linux-s390x': 0.24.2
2669 | '@esbuild/linux-x64': 0.24.2
2670 | '@esbuild/netbsd-arm64': 0.24.2
2671 | '@esbuild/netbsd-x64': 0.24.2
2672 | '@esbuild/openbsd-arm64': 0.24.2
2673 | '@esbuild/openbsd-x64': 0.24.2
2674 | '@esbuild/sunos-x64': 0.24.2
2675 | '@esbuild/win32-arm64': 0.24.2
2676 | '@esbuild/win32-ia32': 0.24.2
2677 | '@esbuild/win32-x64': 0.24.2
2678 |
2679 | escalade@3.2.0: {}
2680 |
2681 | escape-string-regexp@1.0.5: {}
2682 |
2683 | escape-string-regexp@4.0.0: {}
2684 |
2685 | escape-string-regexp@5.0.0: {}
2686 |
2687 | eslint-compat-utils@0.5.1(eslint@9.19.0(jiti@2.4.2)):
2688 | dependencies:
2689 | eslint: 9.19.0(jiti@2.4.2)
2690 | semver: 7.7.0
2691 |
2692 | eslint-compat-utils@0.6.4(eslint@9.19.0(jiti@2.4.2)):
2693 | dependencies:
2694 | eslint: 9.19.0(jiti@2.4.2)
2695 | semver: 7.7.0
2696 |
2697 | eslint-config-flat-gitignore@1.0.1(eslint@9.19.0(jiti@2.4.2)):
2698 | dependencies:
2699 | '@eslint/compat': 1.2.5(eslint@9.19.0(jiti@2.4.2))
2700 | eslint: 9.19.0(jiti@2.4.2)
2701 |
2702 | eslint-config-prettier@9.1.0(eslint@9.19.0(jiti@2.4.2)):
2703 | dependencies:
2704 | eslint: 9.19.0(jiti@2.4.2)
2705 |
2706 | eslint-import-resolver-node@0.3.9:
2707 | dependencies:
2708 | debug: 3.2.7
2709 | is-core-module: 2.16.1
2710 | resolve: 1.22.10
2711 | transitivePeerDependencies:
2712 | - supports-color
2713 |
2714 | eslint-json-compat-utils@0.2.1(eslint@9.19.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
2715 | dependencies:
2716 | eslint: 9.19.0(jiti@2.4.2)
2717 | esquery: 1.6.0
2718 | jsonc-eslint-parser: 2.4.0
2719 |
2720 | eslint-plugin-antfu@2.7.0(eslint@9.19.0(jiti@2.4.2)):
2721 | dependencies:
2722 | '@antfu/utils': 0.7.10
2723 | eslint: 9.19.0(jiti@2.4.2)
2724 |
2725 | eslint-plugin-command@2.1.0(eslint@9.19.0(jiti@2.4.2)):
2726 | dependencies:
2727 | '@es-joy/jsdoccomment': 0.50.0
2728 | eslint: 9.19.0(jiti@2.4.2)
2729 |
2730 | eslint-plugin-es-x@7.8.0(eslint@9.19.0(jiti@2.4.2)):
2731 | dependencies:
2732 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@2.4.2))
2733 | '@eslint-community/regexpp': 4.12.1
2734 | eslint: 9.19.0(jiti@2.4.2)
2735 | eslint-compat-utils: 0.5.1(eslint@9.19.0(jiti@2.4.2))
2736 |
2737 | eslint-plugin-import-x@4.6.1(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3):
2738 | dependencies:
2739 | '@types/doctrine': 0.0.9
2740 | '@typescript-eslint/scope-manager': 8.22.0
2741 | '@typescript-eslint/utils': 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2742 | debug: 4.4.0
2743 | doctrine: 3.0.0
2744 | enhanced-resolve: 5.18.0
2745 | eslint: 9.19.0(jiti@2.4.2)
2746 | eslint-import-resolver-node: 0.3.9
2747 | get-tsconfig: 4.10.0
2748 | is-glob: 4.0.3
2749 | minimatch: 9.0.3
2750 | semver: 7.7.0
2751 | stable-hash: 0.0.4
2752 | tslib: 2.8.1
2753 | transitivePeerDependencies:
2754 | - supports-color
2755 | - typescript
2756 |
2757 | eslint-plugin-jsdoc@50.6.3(eslint@9.19.0(jiti@2.4.2)):
2758 | dependencies:
2759 | '@es-joy/jsdoccomment': 0.49.0
2760 | are-docs-informative: 0.0.2
2761 | comment-parser: 1.4.1
2762 | debug: 4.4.0
2763 | escape-string-regexp: 4.0.0
2764 | eslint: 9.19.0(jiti@2.4.2)
2765 | espree: 10.3.0
2766 | esquery: 1.6.0
2767 | parse-imports: 2.2.1
2768 | semver: 7.7.0
2769 | spdx-expression-parse: 4.0.0
2770 | synckit: 0.9.2
2771 | transitivePeerDependencies:
2772 | - supports-color
2773 |
2774 | eslint-plugin-jsonc@2.19.1(eslint@9.19.0(jiti@2.4.2)):
2775 | dependencies:
2776 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@2.4.2))
2777 | eslint: 9.19.0(jiti@2.4.2)
2778 | eslint-compat-utils: 0.6.4(eslint@9.19.0(jiti@2.4.2))
2779 | eslint-json-compat-utils: 0.2.1(eslint@9.19.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
2780 | espree: 9.6.1
2781 | graphemer: 1.4.0
2782 | jsonc-eslint-parser: 2.4.0
2783 | natural-compare: 1.4.0
2784 | synckit: 0.6.2
2785 | transitivePeerDependencies:
2786 | - '@eslint/json'
2787 |
2788 | eslint-plugin-n@17.15.1(eslint@9.19.0(jiti@2.4.2)):
2789 | dependencies:
2790 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@2.4.2))
2791 | enhanced-resolve: 5.18.0
2792 | eslint: 9.19.0(jiti@2.4.2)
2793 | eslint-plugin-es-x: 7.8.0(eslint@9.19.0(jiti@2.4.2))
2794 | get-tsconfig: 4.10.0
2795 | globals: 15.14.0
2796 | ignore: 5.3.2
2797 | minimatch: 9.0.5
2798 | semver: 7.7.0
2799 |
2800 | eslint-plugin-perfectionist@4.7.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3):
2801 | dependencies:
2802 | '@typescript-eslint/types': 8.22.0
2803 | '@typescript-eslint/utils': 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2804 | eslint: 9.19.0(jiti@2.4.2)
2805 | natural-orderby: 5.0.0
2806 | transitivePeerDependencies:
2807 | - supports-color
2808 | - typescript
2809 |
2810 | eslint-plugin-prettier@5.2.3(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.19.0(jiti@2.4.2)))(eslint@9.19.0(jiti@2.4.2))(prettier@3.4.2):
2811 | dependencies:
2812 | eslint: 9.19.0(jiti@2.4.2)
2813 | prettier: 3.4.2
2814 | prettier-linter-helpers: 1.0.0
2815 | synckit: 0.9.2
2816 | optionalDependencies:
2817 | '@types/eslint': 9.6.1
2818 | eslint-config-prettier: 9.1.0(eslint@9.19.0(jiti@2.4.2))
2819 |
2820 | eslint-plugin-regexp@2.7.0(eslint@9.19.0(jiti@2.4.2)):
2821 | dependencies:
2822 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@2.4.2))
2823 | '@eslint-community/regexpp': 4.12.1
2824 | comment-parser: 1.4.1
2825 | eslint: 9.19.0(jiti@2.4.2)
2826 | jsdoc-type-pratt-parser: 4.1.0
2827 | refa: 0.12.1
2828 | regexp-ast-analysis: 0.7.1
2829 | scslre: 0.3.0
2830 |
2831 | eslint-plugin-sxzz@0.1.0(eslint@9.19.0(jiti@2.4.2)):
2832 | dependencies:
2833 | eslint: 9.19.0(jiti@2.4.2)
2834 |
2835 | eslint-plugin-unicorn@56.0.1(eslint@9.19.0(jiti@2.4.2)):
2836 | dependencies:
2837 | '@babel/helper-validator-identifier': 7.25.9
2838 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@2.4.2))
2839 | ci-info: 4.1.0
2840 | clean-regexp: 1.0.0
2841 | core-js-compat: 3.40.0
2842 | eslint: 9.19.0(jiti@2.4.2)
2843 | esquery: 1.6.0
2844 | globals: 15.14.0
2845 | indent-string: 4.0.0
2846 | is-builtin-module: 3.2.1
2847 | jsesc: 3.1.0
2848 | pluralize: 8.0.0
2849 | read-pkg-up: 7.0.1
2850 | regexp-tree: 0.1.27
2851 | regjsparser: 0.10.0
2852 | semver: 7.7.0
2853 | strip-indent: 3.0.0
2854 |
2855 | eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.22.0(@typescript-eslint/parser@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2)):
2856 | dependencies:
2857 | eslint: 9.19.0(jiti@2.4.2)
2858 | optionalDependencies:
2859 | '@typescript-eslint/eslint-plugin': 8.22.0(@typescript-eslint/parser@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
2860 |
2861 | eslint-plugin-vue@9.32.0(eslint@9.19.0(jiti@2.4.2)):
2862 | dependencies:
2863 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@2.4.2))
2864 | eslint: 9.19.0(jiti@2.4.2)
2865 | globals: 13.24.0
2866 | natural-compare: 1.4.0
2867 | nth-check: 2.1.1
2868 | postcss-selector-parser: 6.1.2
2869 | semver: 7.7.0
2870 | vue-eslint-parser: 9.4.3(eslint@9.19.0(jiti@2.4.2))
2871 | xml-name-validator: 4.0.0
2872 | transitivePeerDependencies:
2873 | - supports-color
2874 |
2875 | eslint-plugin-yml@1.16.0(eslint@9.19.0(jiti@2.4.2)):
2876 | dependencies:
2877 | debug: 4.4.0
2878 | eslint: 9.19.0(jiti@2.4.2)
2879 | eslint-compat-utils: 0.6.4(eslint@9.19.0(jiti@2.4.2))
2880 | lodash: 4.17.21
2881 | natural-compare: 1.4.0
2882 | yaml-eslint-parser: 1.2.3
2883 | transitivePeerDependencies:
2884 | - supports-color
2885 |
2886 | eslint-scope@7.2.2:
2887 | dependencies:
2888 | esrecurse: 4.3.0
2889 | estraverse: 5.3.0
2890 |
2891 | eslint-scope@8.2.0:
2892 | dependencies:
2893 | esrecurse: 4.3.0
2894 | estraverse: 5.3.0
2895 |
2896 | eslint-visitor-keys@3.4.3: {}
2897 |
2898 | eslint-visitor-keys@4.2.0: {}
2899 |
2900 | eslint@9.19.0(jiti@2.4.2):
2901 | dependencies:
2902 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@2.4.2))
2903 | '@eslint-community/regexpp': 4.12.1
2904 | '@eslint/config-array': 0.19.1
2905 | '@eslint/core': 0.10.0
2906 | '@eslint/eslintrc': 3.2.0
2907 | '@eslint/js': 9.19.0
2908 | '@eslint/plugin-kit': 0.2.5
2909 | '@humanfs/node': 0.16.6
2910 | '@humanwhocodes/module-importer': 1.0.1
2911 | '@humanwhocodes/retry': 0.4.1
2912 | '@types/estree': 1.0.6
2913 | '@types/json-schema': 7.0.15
2914 | ajv: 6.12.6
2915 | chalk: 4.1.2
2916 | cross-spawn: 7.0.6
2917 | debug: 4.4.0
2918 | escape-string-regexp: 4.0.0
2919 | eslint-scope: 8.2.0
2920 | eslint-visitor-keys: 4.2.0
2921 | espree: 10.3.0
2922 | esquery: 1.6.0
2923 | esutils: 2.0.3
2924 | fast-deep-equal: 3.1.3
2925 | file-entry-cache: 8.0.0
2926 | find-up: 5.0.0
2927 | glob-parent: 6.0.2
2928 | ignore: 5.3.2
2929 | imurmurhash: 0.1.4
2930 | is-glob: 4.0.3
2931 | json-stable-stringify-without-jsonify: 1.0.1
2932 | lodash.merge: 4.6.2
2933 | minimatch: 3.1.2
2934 | natural-compare: 1.4.0
2935 | optionator: 0.9.4
2936 | optionalDependencies:
2937 | jiti: 2.4.2
2938 | transitivePeerDependencies:
2939 | - supports-color
2940 |
2941 | espree@10.3.0:
2942 | dependencies:
2943 | acorn: 8.14.0
2944 | acorn-jsx: 5.3.2(acorn@8.14.0)
2945 | eslint-visitor-keys: 4.2.0
2946 |
2947 | espree@9.6.1:
2948 | dependencies:
2949 | acorn: 8.14.0
2950 | acorn-jsx: 5.3.2(acorn@8.14.0)
2951 | eslint-visitor-keys: 3.4.3
2952 |
2953 | esquery@1.6.0:
2954 | dependencies:
2955 | estraverse: 5.3.0
2956 |
2957 | esrecurse@4.3.0:
2958 | dependencies:
2959 | estraverse: 5.3.0
2960 |
2961 | estraverse@5.3.0: {}
2962 |
2963 | esutils@2.0.3: {}
2964 |
2965 | fast-deep-equal@3.1.3: {}
2966 |
2967 | fast-diff@1.3.0: {}
2968 |
2969 | fast-glob@3.3.3:
2970 | dependencies:
2971 | '@nodelib/fs.stat': 2.0.5
2972 | '@nodelib/fs.walk': 1.2.8
2973 | glob-parent: 5.1.2
2974 | merge2: 1.4.1
2975 | micromatch: 4.0.8
2976 |
2977 | fast-json-stable-stringify@2.1.0: {}
2978 |
2979 | fast-levenshtein@2.0.6: {}
2980 |
2981 | fastq@1.18.0:
2982 | dependencies:
2983 | reusify: 1.0.4
2984 |
2985 | file-entry-cache@8.0.0:
2986 | dependencies:
2987 | flat-cache: 4.0.1
2988 |
2989 | fill-range@7.1.1:
2990 | dependencies:
2991 | to-regex-range: 5.0.1
2992 |
2993 | find-up@4.1.0:
2994 | dependencies:
2995 | locate-path: 5.0.0
2996 | path-exists: 4.0.0
2997 |
2998 | find-up@5.0.0:
2999 | dependencies:
3000 | locate-path: 6.0.0
3001 | path-exists: 4.0.0
3002 |
3003 | flat-cache@4.0.1:
3004 | dependencies:
3005 | flatted: 3.3.2
3006 | keyv: 4.5.4
3007 |
3008 | flatted@3.3.2: {}
3009 |
3010 | fsevents@2.3.3:
3011 | optional: true
3012 |
3013 | function-bind@1.1.2: {}
3014 |
3015 | get-tsconfig@4.10.0:
3016 | dependencies:
3017 | resolve-pkg-maps: 1.0.0
3018 |
3019 | glob-parent@5.1.2:
3020 | dependencies:
3021 | is-glob: 4.0.3
3022 |
3023 | glob-parent@6.0.2:
3024 | dependencies:
3025 | is-glob: 4.0.3
3026 |
3027 | globals@13.24.0:
3028 | dependencies:
3029 | type-fest: 0.20.2
3030 |
3031 | globals@14.0.0: {}
3032 |
3033 | globals@15.14.0: {}
3034 |
3035 | graceful-fs@4.2.11: {}
3036 |
3037 | graphemer@1.4.0: {}
3038 |
3039 | has-flag@4.0.0: {}
3040 |
3041 | hasown@2.0.2:
3042 | dependencies:
3043 | function-bind: 1.1.2
3044 |
3045 | hosted-git-info@2.8.9: {}
3046 |
3047 | ignore@5.3.2: {}
3048 |
3049 | import-fresh@3.3.0:
3050 | dependencies:
3051 | parent-module: 1.0.1
3052 | resolve-from: 4.0.0
3053 |
3054 | importx@0.5.1:
3055 | dependencies:
3056 | bundle-require: 5.1.0(esbuild@0.21.5)
3057 | debug: 4.4.0
3058 | esbuild: 0.21.5
3059 | jiti: 2.4.2
3060 | pathe: 1.1.2
3061 | tsx: 4.19.2
3062 | transitivePeerDependencies:
3063 | - supports-color
3064 |
3065 | imurmurhash@0.1.4: {}
3066 |
3067 | indent-string@4.0.0: {}
3068 |
3069 | is-arrayish@0.2.1: {}
3070 |
3071 | is-builtin-module@3.2.1:
3072 | dependencies:
3073 | builtin-modules: 3.3.0
3074 |
3075 | is-core-module@2.16.1:
3076 | dependencies:
3077 | hasown: 2.0.2
3078 |
3079 | is-extglob@2.1.1: {}
3080 |
3081 | is-glob@4.0.3:
3082 | dependencies:
3083 | is-extglob: 2.1.1
3084 |
3085 | is-number@7.0.0: {}
3086 |
3087 | isexe@2.0.0: {}
3088 |
3089 | jiti@2.4.2: {}
3090 |
3091 | js-tokens@4.0.0: {}
3092 |
3093 | js-yaml@4.1.0:
3094 | dependencies:
3095 | argparse: 2.0.1
3096 |
3097 | jsdoc-type-pratt-parser@4.1.0: {}
3098 |
3099 | jsesc@0.5.0: {}
3100 |
3101 | jsesc@3.1.0: {}
3102 |
3103 | json-buffer@3.0.1: {}
3104 |
3105 | json-parse-even-better-errors@2.3.1: {}
3106 |
3107 | json-schema-traverse@0.4.1: {}
3108 |
3109 | json-stable-stringify-without-jsonify@1.0.1: {}
3110 |
3111 | jsonc-eslint-parser@2.4.0:
3112 | dependencies:
3113 | acorn: 8.14.0
3114 | eslint-visitor-keys: 3.4.3
3115 | espree: 9.6.1
3116 | semver: 7.7.0
3117 |
3118 | keyv@4.5.4:
3119 | dependencies:
3120 | json-buffer: 3.0.1
3121 |
3122 | levn@0.4.1:
3123 | dependencies:
3124 | prelude-ls: 1.2.1
3125 | type-check: 0.4.0
3126 |
3127 | lines-and-columns@1.2.4: {}
3128 |
3129 | load-tsconfig@0.2.5: {}
3130 |
3131 | local-pkg@1.0.0:
3132 | dependencies:
3133 | mlly: 1.7.4
3134 | pkg-types: 1.3.1
3135 |
3136 | locate-path@5.0.0:
3137 | dependencies:
3138 | p-locate: 4.1.0
3139 |
3140 | locate-path@6.0.0:
3141 | dependencies:
3142 | p-locate: 5.0.0
3143 |
3144 | lodash.merge@4.6.2: {}
3145 |
3146 | lodash@4.17.21: {}
3147 |
3148 | longest-streak@3.1.0: {}
3149 |
3150 | magic-string@0.30.17:
3151 | dependencies:
3152 | '@jridgewell/sourcemap-codec': 1.5.0
3153 |
3154 | markdown-table@3.0.4: {}
3155 |
3156 | mdast-util-find-and-replace@3.0.2:
3157 | dependencies:
3158 | '@types/mdast': 4.0.4
3159 | escape-string-regexp: 5.0.0
3160 | unist-util-is: 6.0.0
3161 | unist-util-visit-parents: 6.0.1
3162 |
3163 | mdast-util-from-markdown@2.0.2:
3164 | dependencies:
3165 | '@types/mdast': 4.0.4
3166 | '@types/unist': 3.0.3
3167 | decode-named-character-reference: 1.0.2
3168 | devlop: 1.1.0
3169 | mdast-util-to-string: 4.0.0
3170 | micromark: 4.0.1
3171 | micromark-util-decode-numeric-character-reference: 2.0.2
3172 | micromark-util-decode-string: 2.0.1
3173 | micromark-util-normalize-identifier: 2.0.1
3174 | micromark-util-symbol: 2.0.1
3175 | micromark-util-types: 2.0.1
3176 | unist-util-stringify-position: 4.0.0
3177 | transitivePeerDependencies:
3178 | - supports-color
3179 |
3180 | mdast-util-gfm-autolink-literal@2.0.1:
3181 | dependencies:
3182 | '@types/mdast': 4.0.4
3183 | ccount: 2.0.1
3184 | devlop: 1.1.0
3185 | mdast-util-find-and-replace: 3.0.2
3186 | micromark-util-character: 2.1.1
3187 |
3188 | mdast-util-gfm-footnote@2.0.0:
3189 | dependencies:
3190 | '@types/mdast': 4.0.4
3191 | devlop: 1.1.0
3192 | mdast-util-from-markdown: 2.0.2
3193 | mdast-util-to-markdown: 2.1.2
3194 | micromark-util-normalize-identifier: 2.0.1
3195 | transitivePeerDependencies:
3196 | - supports-color
3197 |
3198 | mdast-util-gfm-strikethrough@2.0.0:
3199 | dependencies:
3200 | '@types/mdast': 4.0.4
3201 | mdast-util-from-markdown: 2.0.2
3202 | mdast-util-to-markdown: 2.1.2
3203 | transitivePeerDependencies:
3204 | - supports-color
3205 |
3206 | mdast-util-gfm-table@2.0.0:
3207 | dependencies:
3208 | '@types/mdast': 4.0.4
3209 | devlop: 1.1.0
3210 | markdown-table: 3.0.4
3211 | mdast-util-from-markdown: 2.0.2
3212 | mdast-util-to-markdown: 2.1.2
3213 | transitivePeerDependencies:
3214 | - supports-color
3215 |
3216 | mdast-util-gfm-task-list-item@2.0.0:
3217 | dependencies:
3218 | '@types/mdast': 4.0.4
3219 | devlop: 1.1.0
3220 | mdast-util-from-markdown: 2.0.2
3221 | mdast-util-to-markdown: 2.1.2
3222 | transitivePeerDependencies:
3223 | - supports-color
3224 |
3225 | mdast-util-gfm@3.0.0:
3226 | dependencies:
3227 | mdast-util-from-markdown: 2.0.2
3228 | mdast-util-gfm-autolink-literal: 2.0.1
3229 | mdast-util-gfm-footnote: 2.0.0
3230 | mdast-util-gfm-strikethrough: 2.0.0
3231 | mdast-util-gfm-table: 2.0.0
3232 | mdast-util-gfm-task-list-item: 2.0.0
3233 | mdast-util-to-markdown: 2.1.2
3234 | transitivePeerDependencies:
3235 | - supports-color
3236 |
3237 | mdast-util-phrasing@4.1.0:
3238 | dependencies:
3239 | '@types/mdast': 4.0.4
3240 | unist-util-is: 6.0.0
3241 |
3242 | mdast-util-to-markdown@2.1.2:
3243 | dependencies:
3244 | '@types/mdast': 4.0.4
3245 | '@types/unist': 3.0.3
3246 | longest-streak: 3.1.0
3247 | mdast-util-phrasing: 4.1.0
3248 | mdast-util-to-string: 4.0.0
3249 | micromark-util-classify-character: 2.0.1
3250 | micromark-util-decode-string: 2.0.1
3251 | unist-util-visit: 5.0.0
3252 | zwitch: 2.0.4
3253 |
3254 | mdast-util-to-string@4.0.0:
3255 | dependencies:
3256 | '@types/mdast': 4.0.4
3257 |
3258 | merge2@1.4.1: {}
3259 |
3260 | micromark-core-commonmark@2.0.2:
3261 | dependencies:
3262 | decode-named-character-reference: 1.0.2
3263 | devlop: 1.1.0
3264 | micromark-factory-destination: 2.0.1
3265 | micromark-factory-label: 2.0.1
3266 | micromark-factory-space: 2.0.1
3267 | micromark-factory-title: 2.0.1
3268 | micromark-factory-whitespace: 2.0.1
3269 | micromark-util-character: 2.1.1
3270 | micromark-util-chunked: 2.0.1
3271 | micromark-util-classify-character: 2.0.1
3272 | micromark-util-html-tag-name: 2.0.1
3273 | micromark-util-normalize-identifier: 2.0.1
3274 | micromark-util-resolve-all: 2.0.1
3275 | micromark-util-subtokenize: 2.0.4
3276 | micromark-util-symbol: 2.0.1
3277 | micromark-util-types: 2.0.1
3278 |
3279 | micromark-extension-gfm-autolink-literal@2.1.0:
3280 | dependencies:
3281 | micromark-util-character: 2.1.1
3282 | micromark-util-sanitize-uri: 2.0.1
3283 | micromark-util-symbol: 2.0.1
3284 | micromark-util-types: 2.0.1
3285 |
3286 | micromark-extension-gfm-footnote@2.1.0:
3287 | dependencies:
3288 | devlop: 1.1.0
3289 | micromark-core-commonmark: 2.0.2
3290 | micromark-factory-space: 2.0.1
3291 | micromark-util-character: 2.1.1
3292 | micromark-util-normalize-identifier: 2.0.1
3293 | micromark-util-sanitize-uri: 2.0.1
3294 | micromark-util-symbol: 2.0.1
3295 | micromark-util-types: 2.0.1
3296 |
3297 | micromark-extension-gfm-strikethrough@2.1.0:
3298 | dependencies:
3299 | devlop: 1.1.0
3300 | micromark-util-chunked: 2.0.1
3301 | micromark-util-classify-character: 2.0.1
3302 | micromark-util-resolve-all: 2.0.1
3303 | micromark-util-symbol: 2.0.1
3304 | micromark-util-types: 2.0.1
3305 |
3306 | micromark-extension-gfm-table@2.1.1:
3307 | dependencies:
3308 | devlop: 1.1.0
3309 | micromark-factory-space: 2.0.1
3310 | micromark-util-character: 2.1.1
3311 | micromark-util-symbol: 2.0.1
3312 | micromark-util-types: 2.0.1
3313 |
3314 | micromark-extension-gfm-tagfilter@2.0.0:
3315 | dependencies:
3316 | micromark-util-types: 2.0.1
3317 |
3318 | micromark-extension-gfm-task-list-item@2.1.0:
3319 | dependencies:
3320 | devlop: 1.1.0
3321 | micromark-factory-space: 2.0.1
3322 | micromark-util-character: 2.1.1
3323 | micromark-util-symbol: 2.0.1
3324 | micromark-util-types: 2.0.1
3325 |
3326 | micromark-extension-gfm@3.0.0:
3327 | dependencies:
3328 | micromark-extension-gfm-autolink-literal: 2.1.0
3329 | micromark-extension-gfm-footnote: 2.1.0
3330 | micromark-extension-gfm-strikethrough: 2.1.0
3331 | micromark-extension-gfm-table: 2.1.1
3332 | micromark-extension-gfm-tagfilter: 2.0.0
3333 | micromark-extension-gfm-task-list-item: 2.1.0
3334 | micromark-util-combine-extensions: 2.0.1
3335 | micromark-util-types: 2.0.1
3336 |
3337 | micromark-factory-destination@2.0.1:
3338 | dependencies:
3339 | micromark-util-character: 2.1.1
3340 | micromark-util-symbol: 2.0.1
3341 | micromark-util-types: 2.0.1
3342 |
3343 | micromark-factory-label@2.0.1:
3344 | dependencies:
3345 | devlop: 1.1.0
3346 | micromark-util-character: 2.1.1
3347 | micromark-util-symbol: 2.0.1
3348 | micromark-util-types: 2.0.1
3349 |
3350 | micromark-factory-space@2.0.1:
3351 | dependencies:
3352 | micromark-util-character: 2.1.1
3353 | micromark-util-types: 2.0.1
3354 |
3355 | micromark-factory-title@2.0.1:
3356 | dependencies:
3357 | micromark-factory-space: 2.0.1
3358 | micromark-util-character: 2.1.1
3359 | micromark-util-symbol: 2.0.1
3360 | micromark-util-types: 2.0.1
3361 |
3362 | micromark-factory-whitespace@2.0.1:
3363 | dependencies:
3364 | micromark-factory-space: 2.0.1
3365 | micromark-util-character: 2.1.1
3366 | micromark-util-symbol: 2.0.1
3367 | micromark-util-types: 2.0.1
3368 |
3369 | micromark-util-character@2.1.1:
3370 | dependencies:
3371 | micromark-util-symbol: 2.0.1
3372 | micromark-util-types: 2.0.1
3373 |
3374 | micromark-util-chunked@2.0.1:
3375 | dependencies:
3376 | micromark-util-symbol: 2.0.1
3377 |
3378 | micromark-util-classify-character@2.0.1:
3379 | dependencies:
3380 | micromark-util-character: 2.1.1
3381 | micromark-util-symbol: 2.0.1
3382 | micromark-util-types: 2.0.1
3383 |
3384 | micromark-util-combine-extensions@2.0.1:
3385 | dependencies:
3386 | micromark-util-chunked: 2.0.1
3387 | micromark-util-types: 2.0.1
3388 |
3389 | micromark-util-decode-numeric-character-reference@2.0.2:
3390 | dependencies:
3391 | micromark-util-symbol: 2.0.1
3392 |
3393 | micromark-util-decode-string@2.0.1:
3394 | dependencies:
3395 | decode-named-character-reference: 1.0.2
3396 | micromark-util-character: 2.1.1
3397 | micromark-util-decode-numeric-character-reference: 2.0.2
3398 | micromark-util-symbol: 2.0.1
3399 |
3400 | micromark-util-encode@2.0.1: {}
3401 |
3402 | micromark-util-html-tag-name@2.0.1: {}
3403 |
3404 | micromark-util-normalize-identifier@2.0.1:
3405 | dependencies:
3406 | micromark-util-symbol: 2.0.1
3407 |
3408 | micromark-util-resolve-all@2.0.1:
3409 | dependencies:
3410 | micromark-util-types: 2.0.1
3411 |
3412 | micromark-util-sanitize-uri@2.0.1:
3413 | dependencies:
3414 | micromark-util-character: 2.1.1
3415 | micromark-util-encode: 2.0.1
3416 | micromark-util-symbol: 2.0.1
3417 |
3418 | micromark-util-subtokenize@2.0.4:
3419 | dependencies:
3420 | devlop: 1.1.0
3421 | micromark-util-chunked: 2.0.1
3422 | micromark-util-symbol: 2.0.1
3423 | micromark-util-types: 2.0.1
3424 |
3425 | micromark-util-symbol@2.0.1: {}
3426 |
3427 | micromark-util-types@2.0.1: {}
3428 |
3429 | micromark@4.0.1:
3430 | dependencies:
3431 | '@types/debug': 4.1.12
3432 | debug: 4.4.0
3433 | decode-named-character-reference: 1.0.2
3434 | devlop: 1.1.0
3435 | micromark-core-commonmark: 2.0.2
3436 | micromark-factory-space: 2.0.1
3437 | micromark-util-character: 2.1.1
3438 | micromark-util-chunked: 2.0.1
3439 | micromark-util-combine-extensions: 2.0.1
3440 | micromark-util-decode-numeric-character-reference: 2.0.2
3441 | micromark-util-encode: 2.0.1
3442 | micromark-util-normalize-identifier: 2.0.1
3443 | micromark-util-resolve-all: 2.0.1
3444 | micromark-util-sanitize-uri: 2.0.1
3445 | micromark-util-subtokenize: 2.0.4
3446 | micromark-util-symbol: 2.0.1
3447 | micromark-util-types: 2.0.1
3448 | transitivePeerDependencies:
3449 | - supports-color
3450 |
3451 | micromatch@4.0.8:
3452 | dependencies:
3453 | braces: 3.0.3
3454 | picomatch: 2.3.1
3455 |
3456 | min-indent@1.0.1: {}
3457 |
3458 | minimatch@3.1.2:
3459 | dependencies:
3460 | brace-expansion: 1.1.11
3461 |
3462 | minimatch@9.0.3:
3463 | dependencies:
3464 | brace-expansion: 2.0.1
3465 |
3466 | minimatch@9.0.5:
3467 | dependencies:
3468 | brace-expansion: 2.0.1
3469 |
3470 | mlly@1.7.4:
3471 | dependencies:
3472 | acorn: 8.14.0
3473 | pathe: 2.0.2
3474 | pkg-types: 1.3.1
3475 | ufo: 1.5.4
3476 |
3477 | ms@2.1.3: {}
3478 |
3479 | nanoid@3.3.8: {}
3480 |
3481 | natural-compare@1.4.0: {}
3482 |
3483 | natural-orderby@5.0.0: {}
3484 |
3485 | node-releases@2.0.19: {}
3486 |
3487 | normalize-package-data@2.5.0:
3488 | dependencies:
3489 | hosted-git-info: 2.8.9
3490 | resolve: 1.22.10
3491 | semver: 5.7.2
3492 | validate-npm-package-license: 3.0.4
3493 |
3494 | nth-check@2.1.1:
3495 | dependencies:
3496 | boolbase: 1.0.0
3497 |
3498 | optionator@0.9.4:
3499 | dependencies:
3500 | deep-is: 0.1.4
3501 | fast-levenshtein: 2.0.6
3502 | levn: 0.4.1
3503 | prelude-ls: 1.2.1
3504 | type-check: 0.4.0
3505 | word-wrap: 1.2.5
3506 |
3507 | p-limit@2.3.0:
3508 | dependencies:
3509 | p-try: 2.2.0
3510 |
3511 | p-limit@3.1.0:
3512 | dependencies:
3513 | yocto-queue: 0.1.0
3514 |
3515 | p-locate@4.1.0:
3516 | dependencies:
3517 | p-limit: 2.3.0
3518 |
3519 | p-locate@5.0.0:
3520 | dependencies:
3521 | p-limit: 3.1.0
3522 |
3523 | p-try@2.2.0: {}
3524 |
3525 | parent-module@1.0.1:
3526 | dependencies:
3527 | callsites: 3.1.0
3528 |
3529 | parse-imports@2.2.1:
3530 | dependencies:
3531 | es-module-lexer: 1.6.0
3532 | slashes: 3.0.12
3533 |
3534 | parse-json@5.2.0:
3535 | dependencies:
3536 | '@babel/code-frame': 7.26.2
3537 | error-ex: 1.3.2
3538 | json-parse-even-better-errors: 2.3.1
3539 | lines-and-columns: 1.2.4
3540 |
3541 | path-exists@4.0.0: {}
3542 |
3543 | path-key@3.1.1: {}
3544 |
3545 | path-parse@1.0.7: {}
3546 |
3547 | pathe@1.1.2: {}
3548 |
3549 | pathe@2.0.2: {}
3550 |
3551 | picocolors@1.1.1: {}
3552 |
3553 | picomatch@2.3.1: {}
3554 |
3555 | pkg-types@1.3.1:
3556 | dependencies:
3557 | confbox: 0.1.8
3558 | mlly: 1.7.4
3559 | pathe: 2.0.2
3560 |
3561 | pluralize@8.0.0: {}
3562 |
3563 | postcss-selector-parser@6.1.2:
3564 | dependencies:
3565 | cssesc: 3.0.0
3566 | util-deprecate: 1.0.2
3567 |
3568 | postcss@8.5.1:
3569 | dependencies:
3570 | nanoid: 3.3.8
3571 | picocolors: 1.1.1
3572 | source-map-js: 1.2.1
3573 |
3574 | prelude-ls@1.2.1: {}
3575 |
3576 | prettier-linter-helpers@1.0.0:
3577 | dependencies:
3578 | fast-diff: 1.3.0
3579 |
3580 | prettier@3.4.2: {}
3581 |
3582 | punycode@2.3.1: {}
3583 |
3584 | queue-microtask@1.2.3: {}
3585 |
3586 | read-pkg-up@7.0.1:
3587 | dependencies:
3588 | find-up: 4.1.0
3589 | read-pkg: 5.2.0
3590 | type-fest: 0.8.1
3591 |
3592 | read-pkg@5.2.0:
3593 | dependencies:
3594 | '@types/normalize-package-data': 2.4.4
3595 | normalize-package-data: 2.5.0
3596 | parse-json: 5.2.0
3597 | type-fest: 0.6.0
3598 |
3599 | refa@0.12.1:
3600 | dependencies:
3601 | '@eslint-community/regexpp': 4.12.1
3602 |
3603 | regexp-ast-analysis@0.7.1:
3604 | dependencies:
3605 | '@eslint-community/regexpp': 4.12.1
3606 | refa: 0.12.1
3607 |
3608 | regexp-tree@0.1.27: {}
3609 |
3610 | regjsparser@0.10.0:
3611 | dependencies:
3612 | jsesc: 0.5.0
3613 |
3614 | resolve-from@4.0.0: {}
3615 |
3616 | resolve-pkg-maps@1.0.0: {}
3617 |
3618 | resolve@1.22.10:
3619 | dependencies:
3620 | is-core-module: 2.16.1
3621 | path-parse: 1.0.7
3622 | supports-preserve-symlinks-flag: 1.0.0
3623 |
3624 | reusify@1.0.4: {}
3625 |
3626 | rollup@4.32.1:
3627 | dependencies:
3628 | '@types/estree': 1.0.6
3629 | optionalDependencies:
3630 | '@rollup/rollup-android-arm-eabi': 4.32.1
3631 | '@rollup/rollup-android-arm64': 4.32.1
3632 | '@rollup/rollup-darwin-arm64': 4.32.1
3633 | '@rollup/rollup-darwin-x64': 4.32.1
3634 | '@rollup/rollup-freebsd-arm64': 4.32.1
3635 | '@rollup/rollup-freebsd-x64': 4.32.1
3636 | '@rollup/rollup-linux-arm-gnueabihf': 4.32.1
3637 | '@rollup/rollup-linux-arm-musleabihf': 4.32.1
3638 | '@rollup/rollup-linux-arm64-gnu': 4.32.1
3639 | '@rollup/rollup-linux-arm64-musl': 4.32.1
3640 | '@rollup/rollup-linux-loongarch64-gnu': 4.32.1
3641 | '@rollup/rollup-linux-powerpc64le-gnu': 4.32.1
3642 | '@rollup/rollup-linux-riscv64-gnu': 4.32.1
3643 | '@rollup/rollup-linux-s390x-gnu': 4.32.1
3644 | '@rollup/rollup-linux-x64-gnu': 4.32.1
3645 | '@rollup/rollup-linux-x64-musl': 4.32.1
3646 | '@rollup/rollup-win32-arm64-msvc': 4.32.1
3647 | '@rollup/rollup-win32-ia32-msvc': 4.32.1
3648 | '@rollup/rollup-win32-x64-msvc': 4.32.1
3649 | fsevents: 2.3.3
3650 |
3651 | run-parallel@1.2.0:
3652 | dependencies:
3653 | queue-microtask: 1.2.3
3654 |
3655 | scslre@0.3.0:
3656 | dependencies:
3657 | '@eslint-community/regexpp': 4.12.1
3658 | refa: 0.12.1
3659 | regexp-ast-analysis: 0.7.1
3660 |
3661 | semver@5.7.2: {}
3662 |
3663 | semver@7.7.0: {}
3664 |
3665 | shebang-command@2.0.0:
3666 | dependencies:
3667 | shebang-regex: 3.0.0
3668 |
3669 | shebang-regex@3.0.0: {}
3670 |
3671 | slashes@3.0.12: {}
3672 |
3673 | source-map-js@1.2.1: {}
3674 |
3675 | spdx-correct@3.2.0:
3676 | dependencies:
3677 | spdx-expression-parse: 3.0.1
3678 | spdx-license-ids: 3.0.21
3679 |
3680 | spdx-exceptions@2.5.0: {}
3681 |
3682 | spdx-expression-parse@3.0.1:
3683 | dependencies:
3684 | spdx-exceptions: 2.5.0
3685 | spdx-license-ids: 3.0.21
3686 |
3687 | spdx-expression-parse@4.0.0:
3688 | dependencies:
3689 | spdx-exceptions: 2.5.0
3690 | spdx-license-ids: 3.0.21
3691 |
3692 | spdx-license-ids@3.0.21: {}
3693 |
3694 | stable-hash@0.0.4: {}
3695 |
3696 | strip-indent@3.0.0:
3697 | dependencies:
3698 | min-indent: 1.0.1
3699 |
3700 | strip-json-comments@3.1.1: {}
3701 |
3702 | supports-color@7.2.0:
3703 | dependencies:
3704 | has-flag: 4.0.0
3705 |
3706 | supports-preserve-symlinks-flag@1.0.0: {}
3707 |
3708 | synckit@0.6.2:
3709 | dependencies:
3710 | tslib: 2.8.1
3711 |
3712 | synckit@0.9.2:
3713 | dependencies:
3714 | '@pkgr/core': 0.1.1
3715 | tslib: 2.8.1
3716 |
3717 | tapable@2.2.1: {}
3718 |
3719 | to-regex-range@5.0.1:
3720 | dependencies:
3721 | is-number: 7.0.0
3722 |
3723 | ts-api-utils@2.0.0(typescript@5.7.3):
3724 | dependencies:
3725 | typescript: 5.7.3
3726 |
3727 | tslib@2.8.1: {}
3728 |
3729 | tsx@4.19.2:
3730 | dependencies:
3731 | esbuild: 0.23.1
3732 | get-tsconfig: 4.10.0
3733 | optionalDependencies:
3734 | fsevents: 2.3.3
3735 |
3736 | type-check@0.4.0:
3737 | dependencies:
3738 | prelude-ls: 1.2.1
3739 |
3740 | type-fest@0.20.2: {}
3741 |
3742 | type-fest@0.6.0: {}
3743 |
3744 | type-fest@0.8.1: {}
3745 |
3746 | typescript-eslint@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3):
3747 | dependencies:
3748 | '@typescript-eslint/eslint-plugin': 8.22.0(@typescript-eslint/parser@8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
3749 | '@typescript-eslint/parser': 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
3750 | '@typescript-eslint/utils': 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.3)
3751 | eslint: 9.19.0(jiti@2.4.2)
3752 | typescript: 5.7.3
3753 | transitivePeerDependencies:
3754 | - supports-color
3755 |
3756 | typescript@5.7.3: {}
3757 |
3758 | ufo@1.5.4: {}
3759 |
3760 | unconfig@0.6.1:
3761 | dependencies:
3762 | '@antfu/utils': 8.1.0
3763 | defu: 6.1.4
3764 | importx: 0.5.1
3765 | transitivePeerDependencies:
3766 | - supports-color
3767 |
3768 | undici-types@6.20.0: {}
3769 |
3770 | unist-util-is@6.0.0:
3771 | dependencies:
3772 | '@types/unist': 3.0.3
3773 |
3774 | unist-util-stringify-position@4.0.0:
3775 | dependencies:
3776 | '@types/unist': 3.0.3
3777 |
3778 | unist-util-visit-parents@6.0.1:
3779 | dependencies:
3780 | '@types/unist': 3.0.3
3781 | unist-util-is: 6.0.0
3782 |
3783 | unist-util-visit@5.0.0:
3784 | dependencies:
3785 | '@types/unist': 3.0.3
3786 | unist-util-is: 6.0.0
3787 | unist-util-visit-parents: 6.0.1
3788 |
3789 | update-browserslist-db@1.1.2(browserslist@4.24.4):
3790 | dependencies:
3791 | browserslist: 4.24.4
3792 | escalade: 3.2.0
3793 | picocolors: 1.1.1
3794 |
3795 | uri-js@4.4.1:
3796 | dependencies:
3797 | punycode: 2.3.1
3798 |
3799 | util-deprecate@1.0.2: {}
3800 |
3801 | validate-npm-package-license@3.0.4:
3802 | dependencies:
3803 | spdx-correct: 3.2.0
3804 | spdx-expression-parse: 3.0.1
3805 |
3806 | vite@6.0.11(@types/node@22.12.0)(jiti@2.4.2)(tsx@4.19.2)(yaml@2.7.0):
3807 | dependencies:
3808 | esbuild: 0.24.2
3809 | postcss: 8.5.1
3810 | rollup: 4.32.1
3811 | optionalDependencies:
3812 | '@types/node': 22.12.0
3813 | fsevents: 2.3.3
3814 | jiti: 2.4.2
3815 | tsx: 4.19.2
3816 | yaml: 2.7.0
3817 |
3818 | vue-eslint-parser@9.4.3(eslint@9.19.0(jiti@2.4.2)):
3819 | dependencies:
3820 | debug: 4.4.0
3821 | eslint: 9.19.0(jiti@2.4.2)
3822 | eslint-scope: 7.2.2
3823 | eslint-visitor-keys: 3.4.3
3824 | espree: 9.6.1
3825 | esquery: 1.6.0
3826 | lodash: 4.17.21
3827 | semver: 7.7.0
3828 | transitivePeerDependencies:
3829 | - supports-color
3830 |
3831 | which@2.0.2:
3832 | dependencies:
3833 | isexe: 2.0.0
3834 |
3835 | word-wrap@1.2.5: {}
3836 |
3837 | xml-name-validator@4.0.0: {}
3838 |
3839 | yaml-eslint-parser@1.2.3:
3840 | dependencies:
3841 | eslint-visitor-keys: 3.4.3
3842 | lodash: 4.17.21
3843 | yaml: 2.7.0
3844 |
3845 | yaml@2.7.0: {}
3846 |
3847 | yocto-queue@0.1.0: {}
3848 |
3849 | zwitch@2.0.4: {}
3850 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "outDir": "dist",
4 | "declaration": true,
5 | "lib": [
6 | "DOM",
7 | "ES2020"
8 | ],
9 | "module": "commonjs",
10 | "target": "ES2020",
11 | "moduleResolution": "node",
12 | "esModuleInterop": true,
13 | "strict": true
14 | },
15 | "include": [
16 | "index.ts",
17 | "types.d.ts"
18 | ]
19 | }
--------------------------------------------------------------------------------
/types.d.ts:
--------------------------------------------------------------------------------
1 | import { type Plugin } from "vite";
2 | export interface IHtmlInjectionConfig {
3 | injections: IHtmlInjectionConfigInjection[];
4 | order?: "pre" | "post";
5 | }
6 | export interface IHtmlInjectionConfigInjection {
7 | name?: string;
8 | path: string;
9 | type?: "raw" | "js" | "css";
10 | injectTo: "head" | "body" | "head-prepend" | "body-prepend";
11 | buildModes?: "dev" | "prod" | "both";
12 | }
13 | declare function htmlInjectionPlugin(config: IHtmlInjectionConfig): Plugin;
14 |
15 | export { htmlInjectionPlugin };
16 |
--------------------------------------------------------------------------------
/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from "vite";
2 | import { resolve } from "path";
3 | // import vue from "@vitejs/plugin-vue";
4 |
5 | export default defineConfig({
6 | plugins: [],
7 | build: {
8 | lib: {
9 | entry: resolve(__dirname, "./index.ts"),
10 | name: "HtmlInjection",
11 | fileName: "index",
12 | formats: ["es", "cjs"],
13 | },
14 | rollupOptions: {
15 | external: ["fs", "path"],
16 | },
17 | },
18 | });
19 |
--------------------------------------------------------------------------------