@icebreakers/monorepo 2.0.11 → 2.1.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.
@@ -3,7 +3,7 @@
3
3
  "type": "module",
4
4
  "version": "0.0.0",
5
5
  "private": true,
6
- "packageManager": "pnpm@10.18.3",
6
+ "packageManager": "pnpm@10.19.0",
7
7
  "author": "ice breaker <1324318532@qq.com>",
8
8
  "repository": {
9
9
  "type": "git",
@@ -43,23 +43,23 @@
43
43
  "@changesets/changelog-github": "^0.5.1",
44
44
  "@changesets/cli": "^2.29.7",
45
45
  "@commitlint/cli": "^20.1.0",
46
- "@icebreakers/commitlint-config": "^1.2.1",
47
- "@icebreakers/eslint-config": "^1.5.2",
46
+ "@icebreakers/commitlint-config": "^1.2.2",
47
+ "@icebreakers/eslint-config": "^1.5.5",
48
48
  "@icebreakers/monorepo": "workspace:*",
49
- "@icebreakers/stylelint-config": "^1.2.1",
49
+ "@icebreakers/stylelint-config": "^1.2.2",
50
50
  "@types/fs-extra": "^11.0.4",
51
- "@types/node": "^24.8.0",
51
+ "@types/node": "^24.9.1",
52
52
  "@types/semver": "^7.7.1",
53
53
  "@vitest/coverage-v8": "~3.2.4",
54
54
  "ci-info": "^4.3.1",
55
55
  "cross-env": "^10.1.0",
56
56
  "defu": "^6.1.4",
57
57
  "es-toolkit": "^1.40.0",
58
- "eslint": "^9.37.0",
58
+ "eslint": "^9.38.0",
59
59
  "execa": "^9.6.0",
60
60
  "fs-extra": "^11.3.2",
61
61
  "husky": "^9.1.7",
62
- "lint-staged": "^16.2.4",
62
+ "lint-staged": "^16.2.6",
63
63
  "only-allow": "^1.2.1",
64
64
  "pathe": "^2.0.3",
65
65
  "pkg-types": "^2.3.0",
@@ -27,11 +27,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
27
27
  mod
28
28
  ));
29
29
 
30
- // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.8.0__jiti@2.6.1_postcss@8.5._ab94ebbbd28243190e5d9689f774411e/node_modules/tsup/assets/esm_shims.js
30
+ // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.9.1__jiti@2.6.1_postcss@8.5._3a34cef7646fe9d94ef807fe0eb65c39/node_modules/tsup/assets/esm_shims.js
31
31
  import path from "path";
32
32
  import { fileURLToPath } from "url";
33
33
  var init_esm_shims = __esm({
34
- "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.8.0__jiti@2.6.1_postcss@8.5._ab94ebbbd28243190e5d9689f774411e/node_modules/tsup/assets/esm_shims.js"() {
34
+ "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.9.1__jiti@2.6.1_postcss@8.5._3a34cef7646fe9d94ef807fe0eb65c39/node_modules/tsup/assets/esm_shims.js"() {
35
35
  "use strict";
36
36
  }
37
37
  });
@@ -578,7 +578,7 @@ async function cleanProjects(cwd) {
578
578
 
579
579
  // package.json
580
580
  var name = "@icebreakers/monorepo";
581
- var version = "2.0.11";
581
+ var version = "2.1.0";
582
582
 
583
583
  // src/constants.ts
584
584
  init_esm_shims();
@@ -1240,7 +1240,7 @@ function setPkgJson(sourcePkgJson, targetPkgJson, options) {
1240
1240
 
1241
1241
  // src/commands/upgrade/targets.ts
1242
1242
  init_esm_shims();
1243
- function getAssetTargets(raw) {
1243
+ function getAssetTargets(core) {
1244
1244
  const list = [
1245
1245
  ".changeset",
1246
1246
  ".husky",
@@ -1269,7 +1269,7 @@ function getAssetTargets(raw) {
1269
1269
  ".dockerignore"
1270
1270
  // #endregion
1271
1271
  ];
1272
- if (!raw) {
1272
+ if (!core) {
1273
1273
  list.push(".github", "LICENSE", "renovate.json", "SECURITY.md", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "netlify.toml");
1274
1274
  }
1275
1275
  return list;
@@ -1291,7 +1291,9 @@ async function upgradeMonorepo(opts) {
1291
1291
  baseDir: cwd
1292
1292
  });
1293
1293
  const repoName = await gitClient.getRepoName();
1294
- const baseTargets = getAssetTargets(merged.raw);
1294
+ const useCoreAssets = merged.core ?? false;
1295
+ merged.core = useCoreAssets;
1296
+ const baseTargets = getAssetTargets(useCoreAssets);
1295
1297
  const configTargets = (upgradeConfig == null ? void 0 : upgradeConfig.targets) ?? [];
1296
1298
  const mergeTargets = upgradeConfig == null ? void 0 : upgradeConfig.mergeTargets;
1297
1299
  let targets = configTargets.length ? mergeTargets === false ? [...configTargets] : Array.from(/* @__PURE__ */ new Set([...baseTargets, ...configTargets])) : baseTargets;
package/dist/cli.cjs CHANGED
@@ -28,10 +28,10 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
28
28
  mod
29
29
  ));
30
30
 
31
- // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.8.0__jiti@2.6.1_postcss@8.5._ab94ebbbd28243190e5d9689f774411e/node_modules/tsup/assets/cjs_shims.js
31
+ // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.9.1__jiti@2.6.1_postcss@8.5._3a34cef7646fe9d94ef807fe0eb65c39/node_modules/tsup/assets/cjs_shims.js
32
32
  var getImportMetaUrl, importMetaUrl;
33
33
  var init_cjs_shims = __esm({
34
- "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.8.0__jiti@2.6.1_postcss@8.5._ab94ebbbd28243190e5d9689f774411e/node_modules/tsup/assets/cjs_shims.js"() {
34
+ "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.9.1__jiti@2.6.1_postcss@8.5._3a34cef7646fe9d94ef807fe0eb65c39/node_modules/tsup/assets/cjs_shims.js"() {
35
35
  "use strict";
36
36
  getImportMetaUrl = () => typeof document === "undefined" ? new URL(`file:${__filename}`).href : document.currentScript && document.currentScript.src || new URL("main.js", document.baseURI).href;
37
37
  importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
@@ -605,7 +605,7 @@ var import_node_url = require("url");
605
605
 
606
606
  // package.json
607
607
  var name = "@icebreakers/monorepo";
608
- var version = "2.0.11";
608
+ var version = "2.1.0";
609
609
 
610
610
  // src/constants.ts
611
611
  var packageJsonPath = (0, import_node_url.fileURLToPath)(new URL("../package.json", importMetaUrl));
@@ -1252,7 +1252,7 @@ function setPkgJson(sourcePkgJson, targetPkgJson, options) {
1252
1252
 
1253
1253
  // src/commands/upgrade/targets.ts
1254
1254
  init_cjs_shims();
1255
- function getAssetTargets(raw) {
1255
+ function getAssetTargets(core) {
1256
1256
  const list = [
1257
1257
  ".changeset",
1258
1258
  ".husky",
@@ -1281,7 +1281,7 @@ function getAssetTargets(raw) {
1281
1281
  ".dockerignore"
1282
1282
  // #endregion
1283
1283
  ];
1284
- if (!raw) {
1284
+ if (!core) {
1285
1285
  list.push(".github", "LICENSE", "renovate.json", "SECURITY.md", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "netlify.toml");
1286
1286
  }
1287
1287
  return list;
@@ -1303,7 +1303,9 @@ async function upgradeMonorepo(opts) {
1303
1303
  baseDir: cwd2
1304
1304
  });
1305
1305
  const repoName = await gitClient.getRepoName();
1306
- const baseTargets = getAssetTargets(merged.raw);
1306
+ const useCoreAssets = merged.core ?? false;
1307
+ merged.core = useCoreAssets;
1308
+ const baseTargets = getAssetTargets(useCoreAssets);
1307
1309
  const configTargets = (upgradeConfig == null ? void 0 : upgradeConfig.targets) ?? [];
1308
1310
  const mergeTargets = upgradeConfig == null ? void 0 : upgradeConfig.mergeTargets;
1309
1311
  let targets = configTargets.length ? mergeTargets === false ? [...configTargets] : Array.from(/* @__PURE__ */ new Set([...baseTargets, ...configTargets])) : baseTargets;
@@ -1420,11 +1422,13 @@ async function upgradeMonorepo(opts) {
1420
1422
  // src/cli/program.ts
1421
1423
  var cwd = import_node_process3.default.cwd();
1422
1424
  import_commander.program.name(name).version(version);
1423
- import_commander.program.command("upgrade").description("\u5347\u7EA7/\u540C\u6B65 monorepo \u76F8\u5173\u5305").alias("up").option("-i,--interactive").option("--raw", "raw mode").option("--outDir <dir>", "Output directory").option("-s,--skip-overwrite", "skip overwrite").action(async (opts) => {
1424
- await upgradeMonorepo({
1425
+ import_commander.program.command("upgrade").description("\u5347\u7EA7/\u540C\u6B65 monorepo \u76F8\u5173\u5305").alias("up").option("-i,--interactive").option("-c,--core", "\u4EC5\u540C\u6B65\u6838\u5FC3\u914D\u7F6E\uFF0C\u8DF3\u8FC7 GitHub \u76F8\u5173\u8D44\u4EA7").option("--outDir <dir>", "Output directory").option("-s,--skip-overwrite", "skip overwrite").action(async (opts) => {
1426
+ const normalized = {
1425
1427
  ...opts,
1428
+ core: opts.core ?? false,
1426
1429
  cwd
1427
- });
1430
+ };
1431
+ await upgradeMonorepo(normalized);
1428
1432
  logger.success("upgrade @icebreakers/monorepo ok!");
1429
1433
  });
1430
1434
  import_commander.program.command("init").description("\u521D\u59CB\u5316 package.json \u548C README.md").action(async () => {
package/dist/cli.js CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  syncNpmMirror,
13
13
  upgradeMonorepo,
14
14
  version
15
- } from "./chunk-T3OVPIEE.js";
15
+ } from "./chunk-EPWHEHM2.js";
16
16
 
17
17
  // src/cli.ts
18
18
  init_esm_shims();
@@ -25,11 +25,13 @@ import select from "@inquirer/select";
25
25
  import { program } from "commander";
26
26
  var cwd = process.cwd();
27
27
  program.name(name).version(version);
28
- program.command("upgrade").description("\u5347\u7EA7/\u540C\u6B65 monorepo \u76F8\u5173\u5305").alias("up").option("-i,--interactive").option("--raw", "raw mode").option("--outDir <dir>", "Output directory").option("-s,--skip-overwrite", "skip overwrite").action(async (opts) => {
29
- await upgradeMonorepo({
28
+ program.command("upgrade").description("\u5347\u7EA7/\u540C\u6B65 monorepo \u76F8\u5173\u5305").alias("up").option("-i,--interactive").option("-c,--core", "\u4EC5\u540C\u6B65\u6838\u5FC3\u914D\u7F6E\uFF0C\u8DF3\u8FC7 GitHub \u76F8\u5173\u8D44\u4EA7").option("--outDir <dir>", "Output directory").option("-s,--skip-overwrite", "skip overwrite").action(async (opts) => {
29
+ const normalized = {
30
30
  ...opts,
31
+ core: opts.core ?? false,
31
32
  cwd
32
- });
33
+ };
34
+ await upgradeMonorepo(normalized);
33
35
  logger.success("upgrade @icebreakers/monorepo ok!");
34
36
  });
35
37
  program.command("init").description("\u521D\u59CB\u5316 package.json \u548C README.md").action(async () => {
package/dist/index.cjs CHANGED
@@ -33,10 +33,10 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
33
33
  ));
34
34
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
35
35
 
36
- // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.8.0__jiti@2.6.1_postcss@8.5._ab94ebbbd28243190e5d9689f774411e/node_modules/tsup/assets/cjs_shims.js
36
+ // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.9.1__jiti@2.6.1_postcss@8.5._3a34cef7646fe9d94ef807fe0eb65c39/node_modules/tsup/assets/cjs_shims.js
37
37
  var getImportMetaUrl, importMetaUrl;
38
38
  var init_cjs_shims = __esm({
39
- "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.8.0__jiti@2.6.1_postcss@8.5._ab94ebbbd28243190e5d9689f774411e/node_modules/tsup/assets/cjs_shims.js"() {
39
+ "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.9.1__jiti@2.6.1_postcss@8.5._3a34cef7646fe9d94ef807fe0eb65c39/node_modules/tsup/assets/cjs_shims.js"() {
40
40
  "use strict";
41
41
  getImportMetaUrl = () => typeof document === "undefined" ? new URL(`file:${__filename}`).href : document.currentScript && document.currentScript.src || new URL("main.js", document.baseURI).href;
42
42
  importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
@@ -641,7 +641,7 @@ var import_node_url = require("url");
641
641
 
642
642
  // package.json
643
643
  var name = "@icebreakers/monorepo";
644
- var version = "2.0.11";
644
+ var version = "2.1.0";
645
645
 
646
646
  // src/constants.ts
647
647
  var packageJsonPath = (0, import_node_url.fileURLToPath)(new URL("../package.json", importMetaUrl));
@@ -1294,7 +1294,7 @@ function setPkgJson(sourcePkgJson, targetPkgJson, options) {
1294
1294
 
1295
1295
  // src/commands/upgrade/targets.ts
1296
1296
  init_cjs_shims();
1297
- function getAssetTargets(raw) {
1297
+ function getAssetTargets(core) {
1298
1298
  const list = [
1299
1299
  ".changeset",
1300
1300
  ".husky",
@@ -1323,7 +1323,7 @@ function getAssetTargets(raw) {
1323
1323
  ".dockerignore"
1324
1324
  // #endregion
1325
1325
  ];
1326
- if (!raw) {
1326
+ if (!core) {
1327
1327
  list.push(".github", "LICENSE", "renovate.json", "SECURITY.md", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "netlify.toml");
1328
1328
  }
1329
1329
  return list;
@@ -1345,7 +1345,9 @@ async function upgradeMonorepo(opts) {
1345
1345
  baseDir: cwd
1346
1346
  });
1347
1347
  const repoName = await gitClient.getRepoName();
1348
- const baseTargets = getAssetTargets(merged.raw);
1348
+ const useCoreAssets = merged.core ?? false;
1349
+ merged.core = useCoreAssets;
1350
+ const baseTargets = getAssetTargets(useCoreAssets);
1349
1351
  const configTargets = (upgradeConfig == null ? void 0 : upgradeConfig.targets) ?? [];
1350
1352
  const mergeTargets = upgradeConfig == null ? void 0 : upgradeConfig.mergeTargets;
1351
1353
  let targets = configTargets.length ? mergeTargets === false ? [...configTargets] : Array.from(/* @__PURE__ */ new Set([...baseTargets, ...configTargets])) : baseTargets;
package/dist/index.d.cts CHANGED
@@ -48,7 +48,7 @@ declare function getWorkspaceData(cwd: string, options?: GetWorkspacePackagesOpt
48
48
  */
49
49
  interface CliOpts {
50
50
  interactive?: boolean;
51
- raw?: boolean;
51
+ core?: boolean;
52
52
  outDir?: string;
53
53
  cwd?: string;
54
54
  skipOverwrite?: boolean;
@@ -269,7 +269,7 @@ declare function syncNpmMirror(cwd: string, options?: GetWorkspacePackagesOption
269
269
  declare function upgradeMonorepo(opts: CliOpts): Promise<void>;
270
270
 
271
271
  var name = "@icebreakers/monorepo";
272
- var version = "2.0.11";
272
+ var version = "2.1.0";
273
273
 
274
274
  /**
275
275
  * @icebreakers/monorepo 包的根目录,所有模板与资产目录都以此为基准。
package/dist/index.d.ts CHANGED
@@ -48,7 +48,7 @@ declare function getWorkspaceData(cwd: string, options?: GetWorkspacePackagesOpt
48
48
  */
49
49
  interface CliOpts {
50
50
  interactive?: boolean;
51
- raw?: boolean;
51
+ core?: boolean;
52
52
  outDir?: string;
53
53
  cwd?: string;
54
54
  skipOverwrite?: boolean;
@@ -269,7 +269,7 @@ declare function syncNpmMirror(cwd: string, options?: GetWorkspacePackagesOption
269
269
  declare function upgradeMonorepo(opts: CliOpts): Promise<void>;
270
270
 
271
271
  var name = "@icebreakers/monorepo";
272
- var version = "2.0.11";
272
+ var version = "2.1.0";
273
273
 
274
274
  /**
275
275
  * @icebreakers/monorepo 包的根目录,所有模板与资产目录都以此为基准。
package/dist/index.js CHANGED
@@ -31,7 +31,7 @@ import {
31
31
  toWorkspaceGitignorePath,
32
32
  upgradeMonorepo,
33
33
  version
34
- } from "./chunk-T3OVPIEE.js";
34
+ } from "./chunk-EPWHEHM2.js";
35
35
 
36
36
  // src/index.ts
37
37
  init_esm_shims();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@icebreakers/monorepo",
3
3
  "type": "module",
4
- "version": "2.0.11",
4
+ "version": "2.1.0",
5
5
  "description": "The icebreaker's monorepo manager",
6
6
  "author": "ice breaker <1324318532@qq.com>",
7
7
  "license": "MIT",
@@ -39,11 +39,11 @@
39
39
  "@inquirer/select": "^4.4.0",
40
40
  "@pnpm/find-workspace-dir": "^1000.1.3",
41
41
  "@pnpm/logger": "^1001.0.1",
42
- "@pnpm/types": "^1000.8.0",
43
- "@pnpm/worker": "^1000.2.0",
44
- "@pnpm/workspace.find-packages": "^1000.0.41",
45
- "@pnpm/workspace.read-manifest": "^1000.2.4",
46
- "c12": "^3.3.0",
42
+ "@pnpm/types": "^1000.9.0",
43
+ "@pnpm/worker": "^1000.3.0",
44
+ "@pnpm/workspace.find-packages": "^1000.0.42",
45
+ "@pnpm/workspace.read-manifest": "^1000.2.5",
46
+ "c12": "^3.3.1",
47
47
  "commander": "^14.0.1",
48
48
  "comment-json": "^4.4.1",
49
49
  "consola": "^3.4.2",
@@ -25,23 +25,23 @@
25
25
  "vue-router": "^4.6.3"
26
26
  },
27
27
  "devDependencies": {
28
- "@cloudflare/vite-plugin": "^1.13.13",
28
+ "@cloudflare/vite-plugin": "^1.13.14",
29
29
  "@hono/node-server": "^1.19.5",
30
30
  "@hono/trpc-server": "^0.4.0",
31
- "@tailwindcss/vite": "^4.1.14",
31
+ "@tailwindcss/vite": "^4.1.15",
32
32
  "@trpc/server": "^11.6.0",
33
33
  "@vitejs/plugin-vue": "^6.0.1",
34
34
  "@vitejs/plugin-vue-jsx": "^5.1.1",
35
35
  "@vue/tsconfig": "^0.8.1",
36
- "hono": "^4.10.0",
37
- "tailwindcss": "^4.1.14",
36
+ "hono": "^4.10.2",
37
+ "tailwindcss": "^4.1.15",
38
38
  "typescript": "~5.9.3",
39
39
  "unplugin-vue-router": "^0.16.0",
40
- "vite": "^7.1.10",
41
- "vite-plugin-vue-devtools": "^8.0.2",
40
+ "vite": "^7.1.11",
41
+ "vite-plugin-vue-devtools": "^8.0.3",
42
42
  "vite-tsconfig-paths": "^5.1.4",
43
43
  "vue-tsc": "3.1.1",
44
- "wrangler": "^4.43.0",
44
+ "wrangler": "^4.44.0",
45
45
  "zod": "^4.1.12"
46
46
  }
47
47
  }
@@ -52,8 +52,8 @@
52
52
  },
53
53
  "devDependencies": {
54
54
  "@hono/node-server": "^1.19.5",
55
- "hono": "^4.10.0",
56
- "wrangler": "^4.43.0",
55
+ "hono": "^4.10.2",
56
+ "wrangler": "^4.44.0",
57
57
  "zod": "^4.1.12"
58
58
  }
59
59
  }
@@ -101,9 +101,9 @@ npx monorepo up # 使用本地 CLI
101
101
  npx @icebreakers/monorepo@latest up # 直接使用远端 CLI
102
102
 
103
103
  # 常用参数
104
- # --raw 排除 GitHub 相关文件
105
- # -i 以交互方式筛选文件
106
- # -s 跳过新增,仅覆盖已存在文件
104
+ # -c, --core 仅同步核心配置,排除 GitHub 相关文件
105
+ # -i 以交互方式筛选文件
106
+ # -s 跳过新增,仅覆盖已存在文件
107
107
  ```
108
108
 
109
109
  升级 CLI 后再执行 `up`,可以同步获得模板最新的工作流、脚手架与配置。
@@ -23,13 +23,13 @@
23
23
  },
24
24
  "devDependencies": {
25
25
  "@braintree/sanitize-url": "^7.1.1",
26
- "@tailwindcss/vite": "^4.1.14",
26
+ "@tailwindcss/vite": "^4.1.15",
27
27
  "cytoscape": "^3.33.1",
28
28
  "cytoscape-cose-bilkent": "^4.1.0",
29
29
  "dayjs": "^1.11.18",
30
30
  "debug": "^4.4.3",
31
31
  "mermaid": "^11.12.0",
32
- "tailwindcss": "^4.1.14",
32
+ "tailwindcss": "^4.1.15",
33
33
  "vitepress": "^1.6.4",
34
34
  "vitepress-plugin-mermaid": "^2.0.17"
35
35
  }
@@ -45,14 +45,14 @@
45
45
  "types": "./dist/index.d.ts"
46
46
  },
47
47
  "devDependencies": {
48
- "@tailwindcss/vite": "^4.1.14",
48
+ "@tailwindcss/vite": "^4.1.15",
49
49
  "@vitejs/plugin-vue": "^6.0.1",
50
50
  "@vue/test-utils": "^2.4.6",
51
51
  "@vue/tsconfig": "^0.8.1",
52
- "jsdom": "^27.0.0",
53
- "tailwindcss": "^4.1.14",
52
+ "jsdom": "^27.0.1",
53
+ "tailwindcss": "^4.1.15",
54
54
  "unplugin-vue-router": "^0.16.0",
55
- "vite": "^7.1.10",
55
+ "vite": "^7.1.11",
56
56
  "vite-plugin-dts": "^4.5.4",
57
57
  "vue": "^3.5.22",
58
58
  "vue-router": "^4.6.3",