@kimesh/kit 0.2.45 → 0.2.46
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.
- package/dist/index.d.mts +6 -5
- package/dist/index.mjs +5 -59
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -830,14 +830,15 @@ interface BuildConfig {
|
|
|
830
830
|
target?: string;
|
|
831
831
|
/**
|
|
832
832
|
* Minification strategy for production builds.
|
|
833
|
-
* - `true`: Use default minifier (
|
|
834
|
-
* - `'
|
|
833
|
+
* - `true`: Use default minifier (oxc)
|
|
834
|
+
* - `'oxc'`: Fast minification with OXC (Vite 8 native)
|
|
835
835
|
* - `'terser'`: More aggressive minification with terser
|
|
836
|
+
* - `'esbuild'`: Legacy esbuild minification
|
|
836
837
|
* - `false`: No minification
|
|
837
838
|
*
|
|
838
|
-
* @default '
|
|
839
|
+
* @default 'oxc'
|
|
839
840
|
*/
|
|
840
|
-
minify?: boolean | 'esbuild' | 'terser';
|
|
841
|
+
minify?: boolean | 'oxc' | 'esbuild' | 'terser';
|
|
841
842
|
}
|
|
842
843
|
/**
|
|
843
844
|
* HTTPS configuration options for dev server.
|
|
@@ -1345,7 +1346,7 @@ interface KimeshConfig extends KimeshModuleOptions {
|
|
|
1345
1346
|
* analyze: true,
|
|
1346
1347
|
* sourcemap: 'hidden',
|
|
1347
1348
|
* target: 'es2022',
|
|
1348
|
-
* minify: '
|
|
1349
|
+
* minify: 'oxc',
|
|
1349
1350
|
* },
|
|
1350
1351
|
* })
|
|
1351
1352
|
* ```
|
package/dist/index.mjs
CHANGED
|
@@ -19,7 +19,6 @@ import { collectLayerRoutes, createScanner, createTreeBuilder, generateMiddlewar
|
|
|
19
19
|
import { generateLayerAliases, generateLayerAliases as generateLayerAliases$1, mergeLayerConfigs, prepareLayers, prepareLayers as prepareLayers$1, resolveLayers } from "@kimesh/layers";
|
|
20
20
|
import { buildImportRegistry, generateDts, kimeshAutoImport, kimeshAutoImport as kimeshAutoImport$1, scanExports } from "@kimesh/auto-import";
|
|
21
21
|
import { loadConfig as loadConfig$1 } from "c12";
|
|
22
|
-
|
|
23
22
|
//#region src/runtime-config.ts
|
|
24
23
|
/**
|
|
25
24
|
* @kimesh/kit - Runtime Configuration Processing
|
|
@@ -187,7 +186,6 @@ function applyEnv(config, opts = {}) {
|
|
|
187
186
|
function createDefaultRuntimeConfig() {
|
|
188
187
|
return {};
|
|
189
188
|
}
|
|
190
|
-
|
|
191
189
|
//#endregion
|
|
192
190
|
//#region src/core/kimesh.ts
|
|
193
191
|
/**
|
|
@@ -279,7 +277,6 @@ function useKimesh() {
|
|
|
279
277
|
function tryUseKimesh() {
|
|
280
278
|
return currentKimesh;
|
|
281
279
|
}
|
|
282
|
-
|
|
283
280
|
//#endregion
|
|
284
281
|
//#region src/core/module.ts
|
|
285
282
|
/**
|
|
@@ -525,7 +522,6 @@ async function executeModules(modules, kimesh) {
|
|
|
525
522
|
await executeAllSetups(kimesh, ctx);
|
|
526
523
|
await kimesh.callHook("modules:done", kimesh);
|
|
527
524
|
}
|
|
528
|
-
|
|
529
525
|
//#endregion
|
|
530
526
|
//#region src/core/plugin.ts
|
|
531
527
|
/**
|
|
@@ -554,7 +550,6 @@ function defineKimeshPlugin(definition) {
|
|
|
554
550
|
}
|
|
555
551
|
};
|
|
556
552
|
}
|
|
557
|
-
|
|
558
553
|
//#endregion
|
|
559
554
|
//#region src/kit/vite.ts
|
|
560
555
|
/**
|
|
@@ -593,7 +588,6 @@ function _addVitePlugin(kimesh, plugin, options) {
|
|
|
593
588
|
function addBuildPlugin(plugin, options) {
|
|
594
589
|
addVitePlugin(plugin, options);
|
|
595
590
|
}
|
|
596
|
-
|
|
597
591
|
//#endregion
|
|
598
592
|
//#region src/kit/alias.ts
|
|
599
593
|
/**
|
|
@@ -640,7 +634,6 @@ function matchesAlias(alias, find) {
|
|
|
640
634
|
function _resolveAlias(kimesh, alias) {
|
|
641
635
|
for (const entry of kimesh._registries.aliases) if (matchesAlias(alias, entry.find)) return alias.replace(entry.find, entry.replacement);
|
|
642
636
|
}
|
|
643
|
-
|
|
644
637
|
//#endregion
|
|
645
638
|
//#region src/kit/templates.ts
|
|
646
639
|
/**
|
|
@@ -755,7 +748,6 @@ async function updateTemplates(kimesh, options) {
|
|
|
755
748
|
}
|
|
756
749
|
return results;
|
|
757
750
|
}
|
|
758
|
-
|
|
759
751
|
//#endregion
|
|
760
752
|
//#region src/kit/components.ts
|
|
761
753
|
/**
|
|
@@ -823,7 +815,6 @@ function addComponentResolver(resolver) {
|
|
|
823
815
|
function _addComponentResolver(kimesh, resolver) {
|
|
824
816
|
kimesh._registries.componentResolvers.push(resolver);
|
|
825
817
|
}
|
|
826
|
-
|
|
827
818
|
//#endregion
|
|
828
819
|
//#region src/kit/imports.ts
|
|
829
820
|
/**
|
|
@@ -885,7 +876,6 @@ function addImportsPreset(preset) {
|
|
|
885
876
|
function _addImportsPreset(kimesh, preset) {
|
|
886
877
|
kimesh._registries.importsPresets.push(preset);
|
|
887
878
|
}
|
|
888
|
-
|
|
889
879
|
//#endregion
|
|
890
880
|
//#region src/kit/resolver.ts
|
|
891
881
|
/**
|
|
@@ -930,7 +920,6 @@ function resolvePathFromRoot(...paths) {
|
|
|
930
920
|
function resolvePathFromBuild(...paths) {
|
|
931
921
|
return resolve$1(useKimesh().buildDir, ...paths);
|
|
932
922
|
}
|
|
933
|
-
|
|
934
923
|
//#endregion
|
|
935
924
|
//#region src/kit/runtime-plugin.ts
|
|
936
925
|
/**
|
|
@@ -993,7 +982,6 @@ function hasRuntimePlugin(src) {
|
|
|
993
982
|
function getRuntimePlugins() {
|
|
994
983
|
return [...useKimesh()._registries.runtimePlugins];
|
|
995
984
|
}
|
|
996
|
-
|
|
997
985
|
//#endregion
|
|
998
986
|
//#region src/kit/plugin-scanner.ts
|
|
999
987
|
/**
|
|
@@ -1079,7 +1067,6 @@ async function scanPluginsDir(pluginsDir, options = {}) {
|
|
|
1079
1067
|
async function hasPlugins(pluginsDir, options = {}) {
|
|
1080
1068
|
return (await scanPluginsDir(pluginsDir, options)).length > 0;
|
|
1081
1069
|
}
|
|
1082
|
-
|
|
1083
1070
|
//#endregion
|
|
1084
1071
|
//#region src/kit/plugin-template.ts
|
|
1085
1072
|
/**
|
|
@@ -1187,7 +1174,6 @@ function addPluginsTemplate(kimesh, discoveredPlugins) {
|
|
|
1187
1174
|
}
|
|
1188
1175
|
});
|
|
1189
1176
|
}
|
|
1190
|
-
|
|
1191
1177
|
//#endregion
|
|
1192
1178
|
//#region src/kit/internal-alias-template.ts
|
|
1193
1179
|
/**
|
|
@@ -1306,7 +1292,6 @@ function buildInternalAliasMap(buildDir) {
|
|
|
1306
1292
|
for (const config of INTERNAL_ALIASES) aliases[config.alias] = `${buildDir}/${config.filename}`;
|
|
1307
1293
|
return aliases;
|
|
1308
1294
|
}
|
|
1309
|
-
|
|
1310
1295
|
//#endregion
|
|
1311
1296
|
//#region src/types/config.ts
|
|
1312
1297
|
/**
|
|
@@ -1345,7 +1330,6 @@ const DEFAULT_IGNORE_PATTERNS = [
|
|
|
1345
1330
|
function defineKmConfig(config) {
|
|
1346
1331
|
return config;
|
|
1347
1332
|
}
|
|
1348
|
-
|
|
1349
1333
|
//#endregion
|
|
1350
1334
|
//#region src/kit/alias-utils.ts
|
|
1351
1335
|
/**
|
|
@@ -1470,7 +1454,6 @@ function resolvePackageDir(packageName, _fromDir) {
|
|
|
1470
1454
|
return null;
|
|
1471
1455
|
}
|
|
1472
1456
|
}
|
|
1473
|
-
|
|
1474
1457
|
//#endregion
|
|
1475
1458
|
//#region src/kit/ignore-utils.ts
|
|
1476
1459
|
/**
|
|
@@ -1536,7 +1519,6 @@ function getIgnorePatterns(config) {
|
|
|
1536
1519
|
if (prefix) patterns.push(`**/${prefix}*`);
|
|
1537
1520
|
return patterns;
|
|
1538
1521
|
}
|
|
1539
|
-
|
|
1540
1522
|
//#endregion
|
|
1541
1523
|
//#region src/kit/route-rules.ts
|
|
1542
1524
|
/**
|
|
@@ -1658,7 +1640,6 @@ function getRedirectInfo(rule) {
|
|
|
1658
1640
|
function generateRouteRulesManifest(config) {
|
|
1659
1641
|
return config.routeRules ?? {};
|
|
1660
1642
|
}
|
|
1661
|
-
|
|
1662
1643
|
//#endregion
|
|
1663
1644
|
//#region src/kit/debug.ts
|
|
1664
1645
|
/**
|
|
@@ -1783,7 +1764,6 @@ function debugTable(title, data) {
|
|
|
1783
1764
|
consola.debug(pc.gray(` ${paddedKey} : ${formattedValue}`));
|
|
1784
1765
|
}
|
|
1785
1766
|
}
|
|
1786
|
-
|
|
1787
1767
|
//#endregion
|
|
1788
1768
|
//#region src/kit/tsconfig-generator.ts
|
|
1789
1769
|
/**
|
|
@@ -2011,7 +1991,6 @@ declare module '*?route' {
|
|
|
2011
1991
|
}
|
|
2012
1992
|
`;
|
|
2013
1993
|
}
|
|
2014
|
-
|
|
2015
1994
|
//#endregion
|
|
2016
1995
|
//#region src/vite/module-types-generator.ts
|
|
2017
1996
|
/**
|
|
@@ -2059,27 +2038,6 @@ ${imports}
|
|
|
2059
2038
|
mkdirSync(buildDir, { recursive: true });
|
|
2060
2039
|
writeFileSync(join$1(buildDir, "modules.ts"), content, "utf-8");
|
|
2061
2040
|
}
|
|
2062
|
-
|
|
2063
|
-
//#endregion
|
|
2064
|
-
//#region src/kit/phase2-utils.ts
|
|
2065
|
-
/**
|
|
2066
|
-
* @kimesh/kit - Phase 2 Configuration Utilities
|
|
2067
|
-
*
|
|
2068
|
-
* Utility functions for Phase 2 configuration options:
|
|
2069
|
-
* - Directory resolution (2.1)
|
|
2070
|
-
* - Build config defaults (2.2)
|
|
2071
|
-
* - Dev server config merging (2.3)
|
|
2072
|
-
* - TypeScript config extension (2.4)
|
|
2073
|
-
* - Watch pattern handling (2.5)
|
|
2074
|
-
*/
|
|
2075
|
-
/**
|
|
2076
|
-
* Default source directory
|
|
2077
|
-
*/
|
|
2078
|
-
const DEFAULT_SRC_DIR = "src";
|
|
2079
|
-
/**
|
|
2080
|
-
* Default build directory
|
|
2081
|
-
*/
|
|
2082
|
-
const DEFAULT_BUILD_DIR = ".kimesh";
|
|
2083
2041
|
/**
|
|
2084
2042
|
* Resolve all directory paths from configuration.
|
|
2085
2043
|
*
|
|
@@ -2095,9 +2053,9 @@ const DEFAULT_BUILD_DIR = ".kimesh";
|
|
|
2095
2053
|
* ```
|
|
2096
2054
|
*/
|
|
2097
2055
|
function resolveDirectories(config, rootDir) {
|
|
2098
|
-
const srcDirName = config.srcDir ??
|
|
2056
|
+
const srcDirName = config.srcDir ?? "src";
|
|
2099
2057
|
const srcDir = isAbsolute$1(srcDirName) ? srcDirName : resolve$1(rootDir, srcDirName);
|
|
2100
|
-
const buildDirName = config.buildDir ??
|
|
2058
|
+
const buildDirName = config.buildDir ?? ".kimesh";
|
|
2101
2059
|
const buildDir = isAbsolute$1(buildDirName) ? buildDirName : resolve$1(rootDir, buildDirName);
|
|
2102
2060
|
const dirConfig = {
|
|
2103
2061
|
assets: config.dir?.assets ?? "assets",
|
|
@@ -2156,7 +2114,7 @@ function resolveBuildConfig(config) {
|
|
|
2156
2114
|
analyze: normalizeAnalyzeConfig(config?.analyze),
|
|
2157
2115
|
sourcemap: config?.sourcemap ?? false,
|
|
2158
2116
|
target: config?.target ?? "esnext",
|
|
2159
|
-
minify: config?.minify ?? "
|
|
2117
|
+
minify: config?.minify ?? "oxc"
|
|
2160
2118
|
};
|
|
2161
2119
|
}
|
|
2162
2120
|
/**
|
|
@@ -2256,7 +2214,6 @@ function toViteWatchOptions(config) {
|
|
|
2256
2214
|
ignored: merged.ignored
|
|
2257
2215
|
};
|
|
2258
2216
|
}
|
|
2259
|
-
|
|
2260
2217
|
//#endregion
|
|
2261
2218
|
//#region src/vite/entry.ts
|
|
2262
2219
|
/**
|
|
@@ -2329,7 +2286,6 @@ declare module '@kimesh/router-runtime' {
|
|
|
2329
2286
|
export {}
|
|
2330
2287
|
`;
|
|
2331
2288
|
}
|
|
2332
|
-
|
|
2333
2289
|
//#endregion
|
|
2334
2290
|
//#region src/vite/html.ts
|
|
2335
2291
|
function renderAttrs(attrs) {
|
|
@@ -2361,7 +2317,6 @@ function generateHtml(title, head) {
|
|
|
2361
2317
|
</body>
|
|
2362
2318
|
</html>`;
|
|
2363
2319
|
}
|
|
2364
|
-
|
|
2365
2320
|
//#endregion
|
|
2366
2321
|
//#region src/hmr/watcher.ts
|
|
2367
2322
|
/**
|
|
@@ -2523,7 +2478,6 @@ function createHMRWatcher(options) {
|
|
|
2523
2478
|
detectCategory
|
|
2524
2479
|
};
|
|
2525
2480
|
}
|
|
2526
|
-
|
|
2527
2481
|
//#endregion
|
|
2528
2482
|
//#region src/errors/formatter.ts
|
|
2529
2483
|
/**
|
|
@@ -2634,7 +2588,6 @@ function createTimer(operation, debug = false) {
|
|
|
2634
2588
|
function capitalize(str) {
|
|
2635
2589
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
2636
2590
|
}
|
|
2637
|
-
|
|
2638
2591
|
//#endregion
|
|
2639
2592
|
//#region src/vite/layer-alias-plugin.ts
|
|
2640
2593
|
/**
|
|
@@ -2913,7 +2866,6 @@ function layerAliasPlugin(options) {
|
|
|
2913
2866
|
}
|
|
2914
2867
|
};
|
|
2915
2868
|
}
|
|
2916
|
-
|
|
2917
2869
|
//#endregion
|
|
2918
2870
|
//#region src/vite/kimesh-package-resolver.ts
|
|
2919
2871
|
/**
|
|
@@ -3134,7 +3086,6 @@ function buildKimeshPackageAliases(_rootDir, debug) {
|
|
|
3134
3086
|
}
|
|
3135
3087
|
return aliases;
|
|
3136
3088
|
}
|
|
3137
|
-
|
|
3138
3089
|
//#endregion
|
|
3139
3090
|
//#region src/vite/middleware-generator.ts
|
|
3140
3091
|
/**
|
|
@@ -3201,7 +3152,6 @@ export default createMiddlewarePlugin({
|
|
|
3201
3152
|
};
|
|
3202
3153
|
}
|
|
3203
3154
|
}
|
|
3204
|
-
|
|
3205
3155
|
//#endregion
|
|
3206
3156
|
//#region src/vite/spa-middleware.ts
|
|
3207
3157
|
/**
|
|
@@ -3298,7 +3248,6 @@ function createSpaFallbackMiddleware(server, generatedDir) {
|
|
|
3298
3248
|
}
|
|
3299
3249
|
};
|
|
3300
3250
|
}
|
|
3301
|
-
|
|
3302
3251
|
//#endregion
|
|
3303
3252
|
//#region src/vite/plugin.ts
|
|
3304
3253
|
/**
|
|
@@ -3531,7 +3480,7 @@ function kimeshPlugin(options = {}) {
|
|
|
3531
3480
|
target: resolvedBuildConfig.target,
|
|
3532
3481
|
sourcemap: resolvedBuildConfig.sourcemap,
|
|
3533
3482
|
minify: resolvedBuildConfig.minify,
|
|
3534
|
-
|
|
3483
|
+
rolldownOptions: command === "build" ? { input: join$1(configRoot, "index.html") } : void 0
|
|
3535
3484
|
},
|
|
3536
3485
|
optimizeDeps: { exclude: [
|
|
3537
3486
|
"#kimesh/routes",
|
|
@@ -3743,7 +3692,6 @@ function kimeshPlugin(options = {}) {
|
|
|
3743
3692
|
...allUserPlugins
|
|
3744
3693
|
];
|
|
3745
3694
|
}
|
|
3746
|
-
|
|
3747
3695
|
//#endregion
|
|
3748
3696
|
//#region src/config.ts
|
|
3749
3697
|
/**
|
|
@@ -3794,7 +3742,6 @@ async function loadConfig(options = {}) {
|
|
|
3794
3742
|
if (configFile) consola.debug(`[Kimesh] Config loaded from: ${configFile}`);
|
|
3795
3743
|
return config || {};
|
|
3796
3744
|
}
|
|
3797
|
-
|
|
3798
3745
|
//#endregion
|
|
3799
3746
|
//#region src/prepare.ts
|
|
3800
3747
|
/**
|
|
@@ -4087,6 +4034,5 @@ export const routes: RouteRecordRaw[] = []
|
|
|
4087
4034
|
if (verbose) consola.success(`[Kimesh] Generated .kimesh/routes.gen.ts (stub)`);
|
|
4088
4035
|
}
|
|
4089
4036
|
}
|
|
4090
|
-
|
|
4091
4037
|
//#endregion
|
|
4092
|
-
export { DEFAULT_ALIASES, DEFAULT_IGNORE_PATTERNS, INTERNAL_ALIASES, addAlias, addBuildPlugin, addComponent, addComponentResolver, addComponentsDir, addImports, addImportsDir, addImportsPreset, addInternalAliasTemplates, addPluginsTemplate, addRuntimePlugin, addTemplate, addTypeTemplate, addVitePlugin, applyEnv, buildAliases, buildImportRegistry, buildInternalAliasMap, createDebugLogger, createDefaultRuntimeConfig, createHMRWatcher, createIgnoreFilter, createIgnoreMatcher, createKimesh, createResolver, createTimer, debug, debugTable, defineKimeshModule, defineKimeshPlugin, defineKmConfig, envToKey, executeModule, executeModules, filterIgnored, findMatchingRules, formatConflictWarning, formatError, formatTiming, formatWarning, generateDts, generateInternalAliasTemplate, generateLayerAliases, generatePluginsTemplate, generateRouteRulesManifest, getIgnorePatterns, getRedirectInfo, getRouteRule, getRuntimePlugins, hasPlugins, hasRuntimePlugin, isDebug, isDebugEnabled, keyToEnv, kimeshAutoImport, kimeshPlugin, loadConfig, matchRoutePattern, mergeLayerConfigs, mergeRouteRules, normalizeDebugConfig, normalizeModuleInput, prepare, prepareLayers, removeRuntimePlugin, resolveAlias, resolveAliasPath, resolveLayers, resolvePathFromBuild, resolvePathFromRoot, scanExports, scanPluginsDir, setDebugConfig, shouldIgnore, toTsConfigPaths, toViteAliases, tryUseKimesh, updateTemplates, useKimesh, writeTemplates };
|
|
4038
|
+
export { DEFAULT_ALIASES, DEFAULT_IGNORE_PATTERNS, INTERNAL_ALIASES, addAlias, addBuildPlugin, addComponent, addComponentResolver, addComponentsDir, addImports, addImportsDir, addImportsPreset, addInternalAliasTemplates, addPluginsTemplate, addRuntimePlugin, addTemplate, addTypeTemplate, addVitePlugin, applyEnv, buildAliases, buildImportRegistry, buildInternalAliasMap, createDebugLogger, createDefaultRuntimeConfig, createHMRWatcher, createIgnoreFilter, createIgnoreMatcher, createKimesh, createResolver, createTimer, debug, debugTable, defineKimeshModule, defineKimeshPlugin, defineKmConfig, envToKey, executeModule, executeModules, filterIgnored, findMatchingRules, formatConflictWarning, formatError, formatTiming, formatWarning, generateDts, generateInternalAliasTemplate, generateLayerAliases, generatePluginsTemplate, generateRouteRulesManifest, getIgnorePatterns, getRedirectInfo, getRouteRule, getRuntimePlugins, hasPlugins, hasRuntimePlugin, isDebug, isDebugEnabled, keyToEnv, kimeshAutoImport, kimeshPlugin, loadConfig, matchRoutePattern, mergeLayerConfigs, mergeRouteRules, normalizeDebugConfig, normalizeModuleInput, prepare, prepareLayers, removeRuntimePlugin, resolveAlias, resolveAliasPath, resolveLayers, resolvePathFromBuild, resolvePathFromRoot, scanExports, scanPluginsDir, setDebugConfig, shouldIgnore, toTsConfigPaths, toViteAliases, tryUseKimesh, updateTemplates, useKimesh, writeTemplates };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kimesh/kit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.46",
|
|
4
4
|
"description": "Build-time engine for Kimesh framework",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"test:watch": "vitest"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@kimesh/auto-import": "0.2.
|
|
31
|
-
"@kimesh/layers": "0.2.
|
|
32
|
-
"@kimesh/router-generator": "0.2.
|
|
30
|
+
"@kimesh/auto-import": "0.2.46",
|
|
31
|
+
"@kimesh/layers": "0.2.46",
|
|
32
|
+
"@kimesh/router-generator": "0.2.46",
|
|
33
33
|
"@vitejs/plugin-vue": "^6.0.4",
|
|
34
34
|
"c12": "^3.3.3",
|
|
35
35
|
"consola": "^3.4.2",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/node": "^25.0.8",
|
|
49
|
-
"tsdown": "^0.
|
|
49
|
+
"tsdown": "^0.21.2",
|
|
50
50
|
"typescript": "^5.9.3",
|
|
51
51
|
"unplugin-vue-components": "^31.0.0",
|
|
52
|
-
"vite": "^8.0.0
|
|
52
|
+
"vite": "^8.0.0",
|
|
53
53
|
"vue": "^3.5.29"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"vite": "^8.0.0
|
|
56
|
+
"vite": "^8.0.0",
|
|
57
57
|
"vue": "^3.5.0"
|
|
58
58
|
}
|
|
59
59
|
}
|