@icebreakers/monorepo 2.0.0 → 2.0.2

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.17.1",
6
+ "packageManager": "pnpm@10.18.0",
7
7
  "author": "ice breaker <1324318532@qq.com>",
8
8
  "repository": {
9
9
  "type": "git",
@@ -42,25 +42,25 @@
42
42
  "devDependencies": {
43
43
  "@changesets/changelog-github": "^0.5.1",
44
44
  "@changesets/cli": "^2.29.7",
45
- "@commitlint/cli": "^20.0.0",
45
+ "@commitlint/cli": "^20.1.0",
46
46
  "@commitlint/config-conventional": "^20.0.0",
47
- "@commitlint/prompt-cli": "^20.0.0",
47
+ "@commitlint/prompt-cli": "^20.1.0",
48
48
  "@commitlint/types": "^20.0.0",
49
- "@icebreakers/eslint-config": "^1.4.4",
49
+ "@icebreakers/eslint-config": "^1.4.5",
50
50
  "@icebreakers/monorepo": "workspace:*",
51
- "@icebreakers/stylelint-config": "^1.1.4",
51
+ "@icebreakers/stylelint-config": "^1.1.5",
52
52
  "@types/fs-extra": "^11.0.4",
53
- "@types/node": "^24.5.2",
53
+ "@types/node": "^24.6.2",
54
54
  "@vitest/coverage-v8": "~3.2.4",
55
55
  "ci-info": "^4.3.0",
56
- "cross-env": "^10.0.0",
56
+ "cross-env": "^10.1.0",
57
57
  "defu": "^6.1.4",
58
58
  "es-toolkit": "^1.39.10",
59
- "eslint": "^9.36.0",
59
+ "eslint": "^9.37.0",
60
60
  "execa": "^9.6.0",
61
61
  "fs-extra": "^11.3.2",
62
62
  "husky": "^9.1.7",
63
- "lint-staged": "^16.2.1",
63
+ "lint-staged": "^16.2.3",
64
64
  "only-allow": "^1.2.1",
65
65
  "pathe": "^2.0.3",
66
66
  "pkg-types": "^2.3.0",
@@ -70,7 +70,7 @@
70
70
  "tsx": "^4.20.6",
71
71
  "turbo": "^2.5.8",
72
72
  "type-fest": "^5.0.1",
73
- "typescript": "^5.9.2",
73
+ "typescript": "^5.9.3",
74
74
  "unbuild": "^3.6.1",
75
75
  "vitest": "~3.2.4",
76
76
  "yaml": "^2.8.1"
@@ -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.5.2__jiti@2.6.0_postcss@8.5._6bfe6d2ece7a9e60df9bded316a5214d/node_modules/tsup/assets/esm_shims.js
30
+ // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.6.2__jiti@2.6.0_postcss@8.5._34af544fc406e7493770862d691306a7/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.5.2__jiti@2.6.0_postcss@8.5._6bfe6d2ece7a9e60df9bded316a5214d/node_modules/tsup/assets/esm_shims.js"() {
34
+ "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.6.2__jiti@2.6.0_postcss@8.5._34af544fc406e7493770862d691306a7/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.0";
581
+ var version = "2.0.2";
582
582
 
583
583
  // src/constants.ts
584
584
  init_esm_shims();
@@ -638,7 +638,8 @@ async function createNewProject(options) {
638
638
  const cwd = (options == null ? void 0 : options.cwd) ?? process.cwd();
639
639
  const createConfig = await resolveCommandConfig("create", cwd);
640
640
  const renameJson = (options == null ? void 0 : options.renameJson) ?? (createConfig == null ? void 0 : createConfig.renameJson) ?? false;
641
- const name2 = (options == null ? void 0 : options.name) ?? (createConfig == null ? void 0 : createConfig.name);
641
+ const rawName = (options == null ? void 0 : options.name) ?? (createConfig == null ? void 0 : createConfig.name);
642
+ const name2 = typeof rawName === "string" ? rawName.trim() : void 0;
642
643
  const requestedTemplate = (options == null ? void 0 : options.type) ?? (createConfig == null ? void 0 : createConfig.type) ?? (createConfig == null ? void 0 : createConfig.defaultTemplate) ?? defaultTemplate;
643
644
  const templateDefinitions = getTemplateMap(createConfig == null ? void 0 : createConfig.templateMap);
644
645
  const templatesRoot = (createConfig == null ? void 0 : createConfig.templatesDir) ? path6.resolve(cwd, createConfig.templatesDir) : templatesDir;
@@ -649,7 +650,7 @@ async function createNewProject(options) {
649
650
  throw new Error(`\u672A\u627E\u5230\u540D\u4E3A ${bundlerName} \u7684\u6A21\u677F\uFF0C\u8BF7\u68C0\u67E5 monorepo.config.ts`);
650
651
  }
651
652
  const from = path6.join(templatesRoot, sourceRelative);
652
- const targetName = name2 ?? sourceRelative;
653
+ const targetName = name2 && name2.length > 0 ? name2 : sourceRelative;
653
654
  const to = path6.join(cwd, targetName);
654
655
  if (await fs2.pathExists(to)) {
655
656
  throw new Error(`${pc.red("\u76EE\u6807\u76EE\u5F55\u5DF2\u5B58\u5728")}: ${path6.relative(cwd, to)}`);
@@ -674,7 +675,8 @@ async function createNewProject(options) {
674
675
  const sourceJsonPath = path6.resolve(from, "package.json");
675
676
  const sourceJson = await fs2.readJson(sourceJsonPath);
676
677
  (0, import_set_value2.default)(sourceJson, "version", "0.0.0");
677
- (0, import_set_value2.default)(sourceJson, "name", path6.basename(targetName));
678
+ const packageName = (name2 == null ? void 0 : name2.startsWith("@")) ? name2 : path6.basename(targetName);
679
+ (0, import_set_value2.default)(sourceJson, "name", packageName);
678
680
  await fs2.outputJson(
679
681
  path6.resolve(
680
682
  to,
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.5.2__jiti@2.6.0_postcss@8.5._6bfe6d2ece7a9e60df9bded316a5214d/node_modules/tsup/assets/cjs_shims.js
31
+ // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.6.2__jiti@2.6.0_postcss@8.5._34af544fc406e7493770862d691306a7/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.5.2__jiti@2.6.0_postcss@8.5._6bfe6d2ece7a9e60df9bded316a5214d/node_modules/tsup/assets/cjs_shims.js"() {
34
+ "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.6.2__jiti@2.6.0_postcss@8.5._34af544fc406e7493770862d691306a7/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.0";
608
+ var version = "2.0.2";
609
609
 
610
610
  // src/constants.ts
611
611
  var packageJsonPath = (0, import_node_url.fileURLToPath)(new URL("../package.json", importMetaUrl));
@@ -656,7 +656,8 @@ async function createNewProject(options) {
656
656
  const cwd2 = (options == null ? void 0 : options.cwd) ?? import_node_process.default.cwd();
657
657
  const createConfig = await resolveCommandConfig("create", cwd2);
658
658
  const renameJson = (options == null ? void 0 : options.renameJson) ?? (createConfig == null ? void 0 : createConfig.renameJson) ?? false;
659
- const name2 = (options == null ? void 0 : options.name) ?? (createConfig == null ? void 0 : createConfig.name);
659
+ const rawName = (options == null ? void 0 : options.name) ?? (createConfig == null ? void 0 : createConfig.name);
660
+ const name2 = typeof rawName === "string" ? rawName.trim() : void 0;
660
661
  const requestedTemplate = (options == null ? void 0 : options.type) ?? (createConfig == null ? void 0 : createConfig.type) ?? (createConfig == null ? void 0 : createConfig.defaultTemplate) ?? defaultTemplate;
661
662
  const templateDefinitions = getTemplateMap(createConfig == null ? void 0 : createConfig.templateMap);
662
663
  const templatesRoot = (createConfig == null ? void 0 : createConfig.templatesDir) ? import_pathe4.default.resolve(cwd2, createConfig.templatesDir) : templatesDir;
@@ -667,7 +668,7 @@ async function createNewProject(options) {
667
668
  throw new Error(`\u672A\u627E\u5230\u540D\u4E3A ${bundlerName} \u7684\u6A21\u677F\uFF0C\u8BF7\u68C0\u67E5 monorepo.config.ts`);
668
669
  }
669
670
  const from = import_pathe4.default.join(templatesRoot, sourceRelative);
670
- const targetName = name2 ?? sourceRelative;
671
+ const targetName = name2 && name2.length > 0 ? name2 : sourceRelative;
671
672
  const to = import_pathe4.default.join(cwd2, targetName);
672
673
  if (await import_fs_extra2.default.pathExists(to)) {
673
674
  throw new Error(`${import_picocolors.default.red("\u76EE\u6807\u76EE\u5F55\u5DF2\u5B58\u5728")}: ${import_pathe4.default.relative(cwd2, to)}`);
@@ -692,7 +693,8 @@ async function createNewProject(options) {
692
693
  const sourceJsonPath = import_pathe4.default.resolve(from, "package.json");
693
694
  const sourceJson = await import_fs_extra2.default.readJson(sourceJsonPath);
694
695
  (0, import_set_value2.default)(sourceJson, "version", "0.0.0");
695
- (0, import_set_value2.default)(sourceJson, "name", import_pathe4.default.basename(targetName));
696
+ const packageName = (name2 == null ? void 0 : name2.startsWith("@")) ? name2 : import_pathe4.default.basename(targetName);
697
+ (0, import_set_value2.default)(sourceJson, "name", packageName);
696
698
  await import_fs_extra2.default.outputJson(
697
699
  import_pathe4.default.resolve(
698
700
  to,
package/dist/cli.js CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  syncNpmMirror,
13
13
  upgradeMonorepo,
14
14
  version
15
- } from "./chunk-JJQVR3B4.js";
15
+ } from "./chunk-PHDRXWMG.js";
16
16
 
17
17
  // src/cli.ts
18
18
  init_esm_shims();
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.5.2__jiti@2.6.0_postcss@8.5._6bfe6d2ece7a9e60df9bded316a5214d/node_modules/tsup/assets/cjs_shims.js
36
+ // ../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.6.2__jiti@2.6.0_postcss@8.5._34af544fc406e7493770862d691306a7/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.5.2__jiti@2.6.0_postcss@8.5._6bfe6d2ece7a9e60df9bded316a5214d/node_modules/tsup/assets/cjs_shims.js"() {
39
+ "../../node_modules/.pnpm/tsup@8.5.0_@microsoft+api-extractor@7.52.12_@types+node@24.6.2__jiti@2.6.0_postcss@8.5._34af544fc406e7493770862d691306a7/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();
@@ -637,7 +637,7 @@ var import_node_url = require("url");
637
637
 
638
638
  // package.json
639
639
  var name = "@icebreakers/monorepo";
640
- var version = "2.0.0";
640
+ var version = "2.0.2";
641
641
 
642
642
  // src/constants.ts
643
643
  var packageJsonPath = (0, import_node_url.fileURLToPath)(new URL("../package.json", importMetaUrl));
@@ -688,7 +688,8 @@ async function createNewProject(options) {
688
688
  const cwd = (options == null ? void 0 : options.cwd) ?? import_node_process.default.cwd();
689
689
  const createConfig = await resolveCommandConfig("create", cwd);
690
690
  const renameJson = (options == null ? void 0 : options.renameJson) ?? (createConfig == null ? void 0 : createConfig.renameJson) ?? false;
691
- const name2 = (options == null ? void 0 : options.name) ?? (createConfig == null ? void 0 : createConfig.name);
691
+ const rawName = (options == null ? void 0 : options.name) ?? (createConfig == null ? void 0 : createConfig.name);
692
+ const name2 = typeof rawName === "string" ? rawName.trim() : void 0;
692
693
  const requestedTemplate = (options == null ? void 0 : options.type) ?? (createConfig == null ? void 0 : createConfig.type) ?? (createConfig == null ? void 0 : createConfig.defaultTemplate) ?? defaultTemplate;
693
694
  const templateDefinitions = getTemplateMap(createConfig == null ? void 0 : createConfig.templateMap);
694
695
  const templatesRoot = (createConfig == null ? void 0 : createConfig.templatesDir) ? import_pathe4.default.resolve(cwd, createConfig.templatesDir) : templatesDir;
@@ -699,7 +700,7 @@ async function createNewProject(options) {
699
700
  throw new Error(`\u672A\u627E\u5230\u540D\u4E3A ${bundlerName} \u7684\u6A21\u677F\uFF0C\u8BF7\u68C0\u67E5 monorepo.config.ts`);
700
701
  }
701
702
  const from = import_pathe4.default.join(templatesRoot, sourceRelative);
702
- const targetName = name2 ?? sourceRelative;
703
+ const targetName = name2 && name2.length > 0 ? name2 : sourceRelative;
703
704
  const to = import_pathe4.default.join(cwd, targetName);
704
705
  if (await import_fs_extra2.default.pathExists(to)) {
705
706
  throw new Error(`${import_picocolors.default.red("\u76EE\u6807\u76EE\u5F55\u5DF2\u5B58\u5728")}: ${import_pathe4.default.relative(cwd, to)}`);
@@ -724,7 +725,8 @@ async function createNewProject(options) {
724
725
  const sourceJsonPath = import_pathe4.default.resolve(from, "package.json");
725
726
  const sourceJson = await import_fs_extra2.default.readJson(sourceJsonPath);
726
727
  (0, import_set_value2.default)(sourceJson, "version", "0.0.0");
727
- (0, import_set_value2.default)(sourceJson, "name", import_pathe4.default.basename(targetName));
728
+ const packageName = (name2 == null ? void 0 : name2.startsWith("@")) ? name2 : import_pathe4.default.basename(targetName);
729
+ (0, import_set_value2.default)(sourceJson, "name", packageName);
728
730
  await import_fs_extra2.default.outputJson(
729
731
  import_pathe4.default.resolve(
730
732
  to,
package/dist/index.d.cts CHANGED
@@ -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.0";
272
+ var version = "2.0.2";
273
273
 
274
274
  /**
275
275
  * @icebreakers/monorepo 包的根目录,所有模板与资产目录都以此为基准。
package/dist/index.d.ts CHANGED
@@ -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.0";
272
+ var version = "2.0.2";
273
273
 
274
274
  /**
275
275
  * @icebreakers/monorepo 包的根目录,所有模板与资产目录都以此为基准。
package/dist/index.js CHANGED
@@ -27,7 +27,7 @@ import {
27
27
  templatesDir,
28
28
  upgradeMonorepo,
29
29
  version
30
- } from "./chunk-JJQVR3B4.js";
30
+ } from "./chunk-PHDRXWMG.js";
31
31
 
32
32
  // src/index.ts
33
33
  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.0",
4
+ "version": "2.0.2",
5
5
  "description": "The icebreaker's monorepo manager",
6
6
  "author": "ice breaker <1324318532@qq.com>",
7
7
  "license": "MIT",
@@ -41,18 +41,18 @@
41
41
  "@pnpm/find-workspace-dir": "^1000.1.3",
42
42
  "@pnpm/logger": "^1001.0.0",
43
43
  "@pnpm/types": "^1000.8.0",
44
- "@pnpm/worker": "^1000.1.13",
45
- "@pnpm/workspace.find-packages": "^1000.0.38",
44
+ "@pnpm/worker": "^1000.1.14",
45
+ "@pnpm/workspace.find-packages": "^1000.0.39",
46
46
  "@pnpm/workspace.read-manifest": "^1000.2.4",
47
47
  "c12": "^3.3.0",
48
48
  "commander": "^14.0.1",
49
- "comment-json": "^4.2.5",
49
+ "comment-json": "^4.4.1",
50
50
  "consola": "^3.4.2",
51
51
  "execa": "^9.6.0",
52
52
  "fs-extra": "^11.3.2",
53
53
  "git-url-parse": "^16.1.0",
54
54
  "klaw": "^4.1.0",
55
- "p-queue": "^8.1.1",
55
+ "p-queue": "^9.0.0",
56
56
  "pathe": "^2.0.3",
57
57
  "picocolors": "^1.1.1",
58
58
  "simple-git": "^3.28.0"
@@ -1,3 +1,4 @@
1
1
  import process from 'node:process'
2
+ import { runCli } from './index'
2
3
 
3
- console.log('[@icebreakers/cli]: ', process.argv)
4
+ runCli(process.argv)
@@ -0,0 +1,14 @@
1
+ import process from 'node:process'
2
+ import { pathToFileURL } from 'node:url'
3
+
4
+ export function runCli(argv: string[] = process.argv) {
5
+ console.log('[@icebreakers/cli]: ', argv)
6
+ }
7
+
8
+ const executedFile = process.argv[1]
9
+ if (executedFile) {
10
+ const entryUrl = pathToFileURL(executedFile).href
11
+ if (entryUrl === import.meta.url) {
12
+ runCli()
13
+ }
14
+ }
@@ -25,23 +25,23 @@
25
25
  "vue-router": "^4.5.1"
26
26
  },
27
27
  "devDependencies": {
28
- "@cloudflare/vite-plugin": "^1.13.7",
29
- "@hono/node-server": "^1.19.4",
28
+ "@cloudflare/vite-plugin": "^1.13.10",
29
+ "@hono/node-server": "^1.19.5",
30
30
  "@hono/trpc-server": "^0.4.0",
31
- "@tailwindcss/vite": "^4.1.13",
31
+ "@tailwindcss/vite": "^4.1.14",
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.9.8",
37
- "tailwindcss": "^4.1.13",
38
- "typescript": "~5.9.2",
36
+ "hono": "^4.9.9",
37
+ "tailwindcss": "^4.1.14",
38
+ "typescript": "~5.9.3",
39
39
  "unplugin-vue-router": "^0.15.0",
40
- "vite": "^7.1.7",
40
+ "vite": "^7.1.9",
41
41
  "vite-plugin-vue-devtools": "^8.0.2",
42
42
  "vite-tsconfig-paths": "^5.1.4",
43
- "vue-tsc": "3.0.8",
44
- "wrangler": "^4.40.2",
43
+ "vue-tsc": "3.1.0",
44
+ "wrangler": "^4.42.0",
45
45
  "zod": "^4.1.11"
46
46
  }
47
47
  }
@@ -51,9 +51,9 @@
51
51
  "types": "./dist/index.d.ts"
52
52
  },
53
53
  "devDependencies": {
54
- "@hono/node-server": "^1.19.4",
55
- "hono": "^4.9.8",
56
- "wrangler": "^4.40.2",
54
+ "@hono/node-server": "^1.19.5",
55
+ "hono": "^4.9.9",
56
+ "wrangler": "^4.42.0",
57
57
  "zod": "^4.1.11"
58
58
  }
59
59
  }
@@ -23,13 +23,13 @@
23
23
  },
24
24
  "devDependencies": {
25
25
  "@braintree/sanitize-url": "^7.1.1",
26
- "@tailwindcss/vite": "^4.1.13",
26
+ "@tailwindcss/vite": "^4.1.14",
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.13",
32
+ "tailwindcss": "^4.1.14",
33
33
  "vitepress": "^1.6.4",
34
34
  "vitepress-plugin-mermaid": "^2.0.17"
35
35
  }
@@ -45,17 +45,17 @@
45
45
  "types": "./dist/index.d.ts"
46
46
  },
47
47
  "devDependencies": {
48
- "@tailwindcss/vite": "^4.1.13",
48
+ "@tailwindcss/vite": "^4.1.14",
49
49
  "@vitejs/plugin-vue": "^6.0.1",
50
50
  "@vue/test-utils": "^2.4.6",
51
51
  "@vue/tsconfig": "^0.8.1",
52
52
  "jsdom": "^27.0.0",
53
- "tailwindcss": "^4.1.13",
53
+ "tailwindcss": "^4.1.14",
54
54
  "unplugin-vue-router": "^0.15.0",
55
- "vite": "^7.1.7",
55
+ "vite": "^7.1.9",
56
56
  "vite-plugin-dts": "^4.5.4",
57
57
  "vue": "^3.5.22",
58
58
  "vue-router": "^4.5.1",
59
- "vue-tsc": "^3.0.8"
59
+ "vue-tsc": "^3.1.0"
60
60
  }
61
61
  }