versacompiler 2.1.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/README.md +1 -1
  2. package/dist/compiler/compile.js +2520 -25
  3. package/dist/compiler/error-reporter.js +467 -38
  4. package/dist/compiler/linter.js +72 -1
  5. package/dist/compiler/minify.js +272 -1
  6. package/dist/compiler/minifyTemplate.js +230 -1
  7. package/dist/compiler/module-resolution-optimizer.js +844 -1
  8. package/dist/compiler/parser.js +336 -1
  9. package/dist/compiler/performance-monitor.js +204 -56
  10. package/dist/compiler/tailwindcss.js +39 -1
  11. package/dist/compiler/transform-optimizer.js +392 -1
  12. package/dist/compiler/transformTStoJS.js +16 -1
  13. package/dist/compiler/transforms.js +554 -1
  14. package/dist/compiler/typescript-compiler.js +172 -2
  15. package/dist/compiler/typescript-error-parser.js +281 -10
  16. package/dist/compiler/typescript-manager.js +304 -2
  17. package/dist/compiler/typescript-sync-validator.js +295 -31
  18. package/dist/compiler/typescript-worker-pool.js +936 -1
  19. package/dist/compiler/typescript-worker-thread.cjs +466 -22
  20. package/dist/compiler/typescript-worker.js +339 -1
  21. package/dist/compiler/vuejs.js +396 -37
  22. package/dist/hrm/VueHRM.js +359 -1
  23. package/dist/hrm/errorScreen.js +83 -1
  24. package/dist/hrm/getInstanciaVue.js +313 -1
  25. package/dist/hrm/initHRM.js +586 -1
  26. package/dist/main.js +353 -7
  27. package/dist/servicios/browserSync.js +589 -2
  28. package/dist/servicios/file-watcher.js +425 -4
  29. package/dist/servicios/logger.js +63 -3
  30. package/dist/servicios/readConfig.js +399 -53
  31. package/dist/utils/excluded-modules.js +37 -1
  32. package/dist/utils/module-resolver.js +466 -1
  33. package/dist/utils/promptUser.js +48 -2
  34. package/dist/utils/proxyValidator.js +68 -1
  35. package/dist/utils/resolve-bin.js +58 -1
  36. package/dist/utils/utils.js +21 -1
  37. package/dist/utils/vue-types-setup.js +435 -241
  38. package/dist/wrappers/eslint-node.js +1 -1
  39. package/dist/wrappers/oxlint-node.js +122 -1
  40. package/dist/wrappers/tailwind-node.js +94 -1
  41. package/package.json +106 -103
@@ -1,4 +1,4 @@
1
- import path from 'node:path'; // Añadir importación de path
1
+ import * as path from 'node:path';
2
2
  import { cwd } from 'node:process'; // Añadir importación de cwd
3
3
  import { execa } from 'execa';
4
4
  import { resolveBin } from '../utils/resolve-bin.js';
@@ -1 +1,122 @@
1
- import{execa as e}from"execa";import{resolveBin as t}from"../utils/resolve-bin.js";export class OxlintNode{binPath;fix;configFile;tsconfigPath;quiet;deny;allow;noIgnore;ignorePath;ignorePattern;formats;additionalArgs;constructor(e={}){this.binPath=e.binPath||OxlintNode.getDefaultBinPath(),this.fix=e.fix||!1,this.configFile=e.configFile,this.tsconfigPath=e.tsconfigPath,this.quiet=e.quiet||!1,this.deny=e.deny,this.allow=e.allow,this.noIgnore=e.noIgnore||!1,this.ignorePath=e.ignorePath,this.ignorePattern=e.ignorePattern,this.formats=e.formats||[`json`],this.additionalArgs=e.additionalArgs}static getDefaultBinPath(){try{return t(`oxlint`,{executable:`oxlint`})}catch(e){throw console.error(`Error al resolver el binario de Oxlint. Asegúrate de que 'oxlint' esté instalado y en el PATH, o provee la opción 'binPath'.`,e),Error(`Error al resolver el binario de Oxlint.`,{cause:e})}}async version(){let{stdout:t}=await e(this.binPath,[`--version`]);return t}async run(t=[]){let n={},r=t.length>0?t:[`.`];return await Promise.all(this.formats.map(async t=>{let i=this.toCliArgs(t,r);try{let{stdout:r,stderr:a,exitCode:o}=await e(this.binPath,i,{reject:!1});o!==0&&t!==`json`&&t!==`sarif`&&a&&!r&&console.warn(`Oxlint para formato '${t}' finalizó con código ${o} y stderr: ${a}`),n[t]=t===`json`||t===`sarif`?JSON.parse(r||`{}`):r}catch(e){console.error(`Error ejecutando Oxlint para formato '${t}':`,e.shortMessage||e.message),n[t]={error:e.shortMessage||e.message,details:e}}})),n}toCliArgs(e,t){let n=[];return this.fix&&n.push(`--fix`),this.configFile&&n.push(`--config`,this.configFile),this.tsconfigPath&&n.push(`--tsconfig`,this.tsconfigPath),this.quiet&&n.push(`--quiet`),this.noIgnore&&n.push(`--no-ignore`),this.ignorePath&&n.push(`--ignore-path`,this.ignorePath),this.deny&&this.deny.forEach(e=>n.push(`--deny`,e)),this.allow&&this.allow.forEach(e=>n.push(`--allow`,e)),this.ignorePattern&&this.ignorePattern.forEach(e=>n.push(`--ignore-pattern`,e)),e!==`default`&&n.push(`--format`,e),this.additionalArgs&&n.push(...this.additionalArgs),n.push(...t),n}static create(e){return new OxlintNode(e)}}
1
+ import { execa } from 'execa';
2
+ import { resolveBin } from '../utils/resolve-bin.js';
3
+ export class OxlintNode {
4
+ binPath;
5
+ fix;
6
+ configFile;
7
+ tsconfigPath;
8
+ quiet;
9
+ deny;
10
+ allow;
11
+ noIgnore;
12
+ ignorePath;
13
+ ignorePattern;
14
+ formats;
15
+ additionalArgs;
16
+ constructor(options = {}) {
17
+ this.binPath = options.binPath || OxlintNode.getDefaultBinPath();
18
+ this.fix = options.fix || false;
19
+ this.configFile = options.configFile;
20
+ this.tsconfigPath = options.tsconfigPath;
21
+ this.quiet = options.quiet || false;
22
+ this.deny = options.deny;
23
+ this.allow = options.allow;
24
+ this.noIgnore = options.noIgnore || false;
25
+ this.ignorePath = options.ignorePath;
26
+ this.ignorePattern = options.ignorePattern;
27
+ this.formats = options.formats || ['json']; // Por defecto, solo 'json'
28
+ this.additionalArgs = options.additionalArgs;
29
+ }
30
+ static getDefaultBinPath() {
31
+ try {
32
+ return resolveBin('oxlint', { executable: 'oxlint' });
33
+ }
34
+ catch (error) {
35
+ console.error("Error al resolver el binario de Oxlint. Asegúrate de que 'oxlint' esté instalado y en el PATH, o provee la opción 'binPath'.", error);
36
+ throw new Error('Error al resolver el binario de Oxlint.', {
37
+ cause: error,
38
+ });
39
+ }
40
+ }
41
+ async version() {
42
+ const { stdout: version } = await execa(this.binPath, ['--version']);
43
+ return version;
44
+ }
45
+ /**
46
+ * Ejecuta Oxlint para los formatos configurados y devuelve los resultados.
47
+ * @param paths Rutas o patrones glob para los archivos a lint.
48
+ * @returns Un objeto donde cada clave es un formato y el valor es el resultado (parseado si es JSON).
49
+ */
50
+ async run(paths = []) {
51
+ const results = {};
52
+ const targetPaths = paths.length > 0 ? paths : ['.'];
53
+ await Promise.all(this.formats.map(async (format) => {
54
+ const cliArgs = this.toCliArgs(format, targetPaths);
55
+ try {
56
+ const { stdout, stderr, exitCode } = await execa(this.binPath, cliArgs, { reject: false });
57
+ if (exitCode !== 0 &&
58
+ format !== 'json' &&
59
+ format !== 'sarif') {
60
+ if (stderr && !stdout) {
61
+ console.warn(`Oxlint para formato '${format}' finalizó con código ${exitCode} y stderr: ${stderr}`);
62
+ }
63
+ }
64
+ results[format] =
65
+ format === 'json' || format === 'sarif'
66
+ ? JSON.parse(stdout || '{}')
67
+ : stdout;
68
+ }
69
+ catch (error) {
70
+ console.error(`Error ejecutando Oxlint para formato '${format}':`, error.shortMessage || error.message);
71
+ results[format] = {
72
+ error: error.shortMessage || error.message,
73
+ details: error,
74
+ };
75
+ }
76
+ }));
77
+ return results;
78
+ }
79
+ /**
80
+ * Construye el array de argumentos para pasar al CLI de Oxlint para un formato específico.
81
+ */
82
+ toCliArgs(format, paths) {
83
+ const args = [];
84
+ // Opciones directas
85
+ if (this.fix)
86
+ args.push('--fix');
87
+ if (this.configFile)
88
+ args.push('--config', this.configFile);
89
+ if (this.tsconfigPath)
90
+ args.push('--tsconfig', this.tsconfigPath); // Añadido
91
+ if (this.quiet)
92
+ args.push('--quiet');
93
+ if (this.noIgnore)
94
+ args.push('--no-ignore');
95
+ if (this.ignorePath)
96
+ args.push('--ignore-path', this.ignorePath);
97
+ if (this.deny)
98
+ this.deny.forEach(rule => args.push('--deny', rule));
99
+ if (this.allow)
100
+ this.allow.forEach(rule => args.push('--allow', rule));
101
+ if (this.ignorePattern)
102
+ this.ignorePattern.forEach(pattern => args.push('--ignore-pattern', pattern));
103
+ // Formato
104
+ if (format !== 'default') {
105
+ args.push('--format', format);
106
+ }
107
+ // Argumentos adicionales
108
+ if (this.additionalArgs)
109
+ args.push(...this.additionalArgs);
110
+ // Rutas/patrones
111
+ args.push(...paths);
112
+ return args;
113
+ }
114
+ /**
115
+ * Método estático para crear una instancia de OxlintNode, similar al código de referencia.
116
+ * @param options Opciones de configuración.
117
+ */
118
+ static create(options) {
119
+ return new OxlintNode(options);
120
+ }
121
+ }
122
+ //# sourceMappingURL=oxlint-node.js.map
@@ -1 +1,94 @@
1
- import{execa as e}from"execa";import{resolveBin as t}from"../utils/resolve-bin.js";export class TailwindNode{binPath;input;output;content;minify;additionalArgs;configFile;constructor(e){if(!e.input)throw Error(`La opción "input" es requerida.`);if(!e.output)throw Error(`La opción "output" es requerida.`);this.binPath=e.binPath||TailwindNode.getDefaultBinPath(),this.input=e.input,this.output=e.output,this.content=e.content,this.minify=e.minify||!1,this.additionalArgs=e.additionalArgs,this.configFile=e.configFile}static getDefaultBinPath(){try{return t(`tailwindcss`,{executable:`tailwindcss`})}catch(e){throw console.error(`Error al resolver el binario de Tailwind CSS. Asegúrate de que esté instalado y en el PATH, o provee la opción 'binPath'.`,e),Error(`Error al resolver el binario de Tailwind CSS.`,{cause:e})}}async run(){let t=this.toCliArgs();try{let n=await e(this.binPath,t);return{success:!0,message:`Tailwind CSS compilado exitosamente desde ${this.input} a ${this.output}`,details:n}}catch(e){let t=e;return console.error(`Error en la compilación de Tailwind CSS: ${t.message}`),t.stderr&&console.error(`Stderr: ${t.stderr}`),{success:!1,message:`Error en la compilación de Tailwind CSS: ${t.shortMessage||t.message}`,details:t}}}toCliArgs(){let e=[`-i`,this.input,`-o`,this.output];return this.configFile&&e.push(`--config`,this.configFile),this.content&&this.content.length>0&&(e.push(`--content`),e.push(...this.content)),this.minify&&e.push(`--minify`),this.additionalArgs&&this.additionalArgs.length>0&&e.push(...this.additionalArgs),e}}
1
+ import { execa } from 'execa';
2
+ import { resolveBin } from '../utils/resolve-bin.js';
3
+ export class TailwindNode {
4
+ binPath;
5
+ input;
6
+ output;
7
+ content;
8
+ minify;
9
+ additionalArgs;
10
+ configFile;
11
+ /**
12
+ * Crea una instancia de TailwindNode.
13
+ * @param options Opciones para la compilación.
14
+ */
15
+ constructor(options) {
16
+ if (!options.input) {
17
+ throw new Error('La opción "input" es requerida.');
18
+ }
19
+ if (!options.output) {
20
+ throw new Error('La opción "output" es requerida.');
21
+ }
22
+ this.binPath = options.binPath || TailwindNode.getDefaultBinPath();
23
+ this.input = options.input;
24
+ this.output = options.output;
25
+ this.content = options.content;
26
+ this.minify = options.minify || false;
27
+ this.additionalArgs = options.additionalArgs;
28
+ this.configFile = options.configFile;
29
+ }
30
+ /**
31
+ * Intenta resolver la ruta al ejecutable de Tailwind CSS.
32
+ */
33
+ static getDefaultBinPath() {
34
+ try {
35
+ return resolveBin('tailwindcss', {
36
+ executable: 'tailwindcss',
37
+ });
38
+ }
39
+ catch (error) {
40
+ console.error("Error al resolver el binario de Tailwind CSS. Asegúrate de que esté instalado y en el PATH, o provee la opción 'binPath'.", error);
41
+ throw new Error('Error al resolver el binario de Tailwind CSS.', {
42
+ cause: error,
43
+ });
44
+ }
45
+ }
46
+ /**
47
+ * Ejecuta el proceso de compilación de Tailwind CSS.
48
+ * @returns Una promesa que resuelve con el resultado de la compilación.
49
+ */
50
+ async run() {
51
+ const cliArgs = this.toCliArgs();
52
+ try {
53
+ const result = await execa(this.binPath, cliArgs);
54
+ return {
55
+ success: true,
56
+ message: `Tailwind CSS compilado exitosamente desde ${this.input} a ${this.output}`,
57
+ details: result,
58
+ };
59
+ }
60
+ catch (error) {
61
+ const execaError = error; // error de execa
62
+ console.error(`Error en la compilación de Tailwind CSS: ${execaError.message}`);
63
+ if (execaError.stderr) {
64
+ console.error(`Stderr: ${execaError.stderr}`);
65
+ }
66
+ return {
67
+ success: false,
68
+ message: `Error en la compilación de Tailwind CSS: ${execaError.shortMessage || execaError.message}`,
69
+ details: execaError,
70
+ };
71
+ }
72
+ }
73
+ /**
74
+ * Construye el array de argumentos para pasar al CLI de Tailwind CSS.
75
+ */
76
+ toCliArgs() {
77
+ const args = ['-i', this.input, '-o', this.output];
78
+ if (this.configFile) {
79
+ args.push('--config', this.configFile);
80
+ }
81
+ if (this.content && this.content.length > 0) {
82
+ args.push('--content');
83
+ args.push(...this.content);
84
+ }
85
+ if (this.minify) {
86
+ args.push('--minify');
87
+ }
88
+ if (this.additionalArgs && this.additionalArgs.length > 0) {
89
+ args.push(...this.additionalArgs);
90
+ }
91
+ return args;
92
+ }
93
+ }
94
+ //# sourceMappingURL=tailwind-node.js.map
package/package.json CHANGED
@@ -1,104 +1,107 @@
1
1
  {
2
- "name": "versacompiler",
3
- "version": "2.1.0",
4
- "description": "Una herramienta para compilar y minificar archivos .vue, .js y .ts para proyectos de Vue 3 con soporte para TypeScript.",
5
- "main": "dist/main.js",
6
- "bin": {
7
- "versacompiler": "dist/main.js"
8
- },
9
- "publishConfig": {
10
- "access": "public"
11
- },
12
- "files": [
13
- "dist",
14
- "LICENSE",
15
- "README.md"
16
- ],
17
- "type": "module",
18
- "keywords": [
19
- "vue",
20
- "compiler",
21
- "minifier",
22
- "vue3",
23
- "versacompiler",
24
- "typescript",
25
- "linter"
26
- ],
27
- "author": "Jorge Jara H (kriollone@gmail.com)",
28
- "license": "MIT",
29
- "repository": {
30
- "type": "git",
31
- "url": "git+https://github.com/kriollo/versaCompiler.git"
32
- },
33
- "bugs": {
34
- "url": "https://github.com/kriollo/versaCompiler/issues"
35
- },
36
- "homepage": "https://github.com/kriollo/versaCompiler#readme",
37
- "dependencies": {
38
- "@vue/compiler-dom": "^3.5.24",
39
- "@vue/reactivity": "^3.5.24",
40
- "@vue/runtime-core": "^3.5.24",
41
- "@vue/runtime-dom": "^3.5.24",
42
- "browser-sync": "^3.0.4",
43
- "chalk": "5.6.2",
44
- "chokidar": "^4.0.3",
45
- "enhanced-resolve": "^5.18.3",
46
- "execa": "^9.6.0",
47
- "find-root": "^1.1.0",
48
- "fs-extra": "^11.3.2",
49
- "get-port": "^7.1.0",
50
- "minify-html-literals": "^1.3.5",
51
- "minimatch": "^10.1.1",
52
- "oxc-minify": "^0.97.0",
53
- "oxc-parser": "^0.97.0",
54
- "oxc-transform": "^0.97.0",
55
- "resolve": "^1.22.11",
56
- "tsx": "^4.20.6",
57
- "typescript": "^5.9.3",
58
- "vue": "3.5.24",
59
- "yargs": "^18.0.0"
60
- },
61
- "devDependencies": {
62
- "@eslint/eslintrc": "^3.3.1",
63
- "@tailwindcss/cli": "^4.1.17",
64
- "@types/browser-sync": "^2.29.1",
65
- "@types/find-root": "^1.1.4",
66
- "@types/fs-extra": "^11.0.4",
67
- "@types/jest": "^30.0.0",
68
- "@types/mocha": "^10.0.10",
69
- "@types/node": "^24.10.1",
70
- "@types/resolve": "^1.20.6",
71
- "@types/yargs": "^17.0.34",
72
- "@typescript-eslint/eslint-plugin": "^8.46.4",
73
- "@typescript-eslint/parser": "^8.46.4",
74
- "@vue/eslint-config-typescript": "^14.6.0",
75
- "@vue/test-utils": "^2.4.6",
76
- "code-tag": "^1.2.0",
77
- "eslint": "^9.39.1",
78
- "eslint-import-resolver-typescript": "^4.4.4",
79
- "eslint-plugin-import": "^2.32.0",
80
- "eslint-plugin-oxlint": "^1.28.0",
81
- "eslint-plugin-promise": "^7.2.1",
82
- "eslint-plugin-unicorn": "^62.0.0",
83
- "eslint-plugin-vue": "^10.5.1",
84
- "jest": "^30.2.0",
85
- "jest-environment-jsdom": "30.1.2",
86
- "jest-environment-node": "30.1.2",
87
- "oxlint": "^1.28.0",
88
- "prettier": "3.6.2",
89
- "rimraf": "^6.1.0",
90
- "sweetalert2": "^11.26.3",
91
- "tailwindcss": "^4.1.17",
92
- "ts-jest": "^29.4.5",
93
- "vue-eslint-parser": "^10.2.0"
94
- },
95
- "scripts": {
96
- "dev": "tsx --watch src/main.ts --watch --verbose --tailwind",
97
- "file": "tsx src/main.ts ",
98
- "compile": "tsx src/main.ts --all",
99
- "test": "jest --config jest.config.js",
100
- "build": "tsx src/main.ts --all -t --cc --co -y --verbose",
101
- "lint": "oxlint --fix --config .oxlintrc.json",
102
- "lint:eslint": "eslint --ext .js,.ts,.vue src/ --fix"
103
- }
104
- }
2
+ "name": "versacompiler",
3
+ "version": "2.2.0",
4
+ "description": "Una herramienta para compilar y minificar archivos .vue, .js y .ts para proyectos de Vue 3 con soporte para TypeScript.",
5
+ "main": "dist/main.js",
6
+ "bin": {
7
+ "versacompiler": "dist/main.js"
8
+ },
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "LICENSE",
15
+ "README.md"
16
+ ],
17
+ "type": "module",
18
+ "scripts": {
19
+ "dev": "tsx --watch src/main.ts --watch --verbose --tailwind",
20
+ "file": "tsx src/main.ts ",
21
+ "compile": "tsx src/main.ts --all --cc --co -y --verbose --prod",
22
+ "test": "vitest run",
23
+ "test:watch": "vitest",
24
+ "test:ui": "vitest --ui",
25
+ "test:coverage": "vitest run --coverage",
26
+ "build": "tsx src/main.ts --all -t --cc --co -y --verbose",
27
+ "lint": "oxlint --fix --config .oxlintrc.json",
28
+ "lint:eslint": "eslint --ext .js,.ts,.vue src/ --fix"
29
+ },
30
+ "keywords": [
31
+ "vue",
32
+ "compiler",
33
+ "minifier",
34
+ "vue3",
35
+ "versacompiler",
36
+ "typescript",
37
+ "linter"
38
+ ],
39
+ "author": "Jorge Jara H (kriollone@gmail.com)",
40
+ "license": "MIT",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/kriollo/versaCompiler.git"
44
+ },
45
+ "bugs": {
46
+ "url": "https://github.com/kriollo/versaCompiler/issues"
47
+ },
48
+ "homepage": "https://github.com/kriollo/versaCompiler#readme",
49
+ "dependencies": {
50
+ "@vue/compiler-dom": "^3.5.24",
51
+ "@vue/reactivity": "^3.5.24",
52
+ "@vue/runtime-core": "^3.5.24",
53
+ "@vue/runtime-dom": "^3.5.24",
54
+ "browser-sync": "^3.0.4",
55
+ "chalk": "5.6.2",
56
+ "chokidar": "^4.0.3",
57
+ "enhanced-resolve": "^5.18.3",
58
+ "execa": "^9.6.0",
59
+ "find-root": "^1.1.0",
60
+ "fs-extra": "^11.3.2",
61
+ "get-port": "^7.1.0",
62
+ "minify-html-literals": "^1.3.5",
63
+ "minimatch": "^10.1.1",
64
+ "oxc-minify": "^0.97.0",
65
+ "oxc-parser": "^0.97.0",
66
+ "oxc-transform": "^0.97.0",
67
+ "resolve": "^1.22.11",
68
+ "tsx": "^4.20.6",
69
+ "typescript": "^5.9.3",
70
+ "vue": "3.5.24",
71
+ "yargs": "^18.0.0"
72
+ },
73
+ "devDependencies": {
74
+ "@eslint/eslintrc": "^3.3.1",
75
+ "@tailwindcss/cli": "^4.1.17",
76
+ "@types/browser-sync": "^2.29.1",
77
+ "@types/find-root": "^1.1.4",
78
+ "@types/fs-extra": "^11.0.4",
79
+ "@types/jest": "^30.0.0",
80
+ "@types/mocha": "^10.0.10",
81
+ "@types/node": "^24.10.1",
82
+ "@types/resolve": "^1.20.6",
83
+ "@types/yargs": "^17.0.35",
84
+ "@typescript-eslint/eslint-plugin": "^8.46.4",
85
+ "@typescript-eslint/parser": "^8.46.4",
86
+ "@vitest/coverage-v8": "^4.0.9",
87
+ "@vitest/ui": "^4.0.9",
88
+ "@vue/eslint-config-typescript": "^14.6.0",
89
+ "@vue/test-utils": "^2.4.6",
90
+ "code-tag": "^1.2.0",
91
+ "eslint": "^9.39.1",
92
+ "eslint-import-resolver-typescript": "^4.4.4",
93
+ "eslint-plugin-import": "^2.32.0",
94
+ "eslint-plugin-oxlint": "^1.28.0",
95
+ "eslint-plugin-promise": "^7.2.1",
96
+ "eslint-plugin-unicorn": "^62.0.0",
97
+ "eslint-plugin-vue": "^10.5.1",
98
+ "oxlint": "^1.28.0",
99
+ "prettier": "3.6.2",
100
+ "rimraf": "^6.1.0",
101
+ "sweetalert2": "^11.26.3",
102
+ "tailwindcss": "^4.1.17",
103
+ "vitest": "^4.0.9",
104
+ "vue-eslint-parser": "^10.2.0"
105
+ },
106
+ "packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
107
+ }