@icebreakers/monorepo 2.2.0 → 3.0.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@icebreakers/monorepo",
3
3
  "type": "module",
4
- "version": "2.2.0",
4
+ "version": "3.0.0",
5
5
  "description": "The icebreaker's monorepo manager",
6
6
  "author": "ice breaker <1324318532@qq.com>",
7
7
  "license": "MIT",
@@ -21,22 +21,46 @@
21
21
  "sideEffects": false,
22
22
  "exports": {
23
23
  ".": {
24
- "types": "./dist/index.d.ts",
25
- "import": "./dist/index.js",
26
- "require": "./dist/index.cjs"
27
- }
24
+ "types": "./dist/index.d.mts",
25
+ "import": {
26
+ "types": "./dist/index.d.mts",
27
+ "default": "./dist/index.mjs"
28
+ },
29
+ "require": {
30
+ "types": "./dist/index.d.cts",
31
+ "default": "./dist/index.cjs"
32
+ }
33
+ },
34
+ "./cli": {
35
+ "types": "./dist/cli.d.mts",
36
+ "import": {
37
+ "types": "./dist/cli.d.mts",
38
+ "default": "./dist/cli.mjs"
39
+ },
40
+ "require": {
41
+ "types": "./dist/cli.d.cts",
42
+ "default": "./dist/cli.cjs"
43
+ }
44
+ },
45
+ "./package.json": "./package.json"
28
46
  },
29
- "bin": "bin/copy.js",
47
+ "main": "./dist/index.cjs",
48
+ "module": "./dist/index.mjs",
49
+ "types": "./dist/index.d.mts",
50
+ "bin": "bin/monorepo.js",
30
51
  "files": [
31
52
  "assets",
32
53
  "bin",
33
54
  "dist",
34
55
  "templates"
35
56
  ],
57
+ "engines": {
58
+ "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
59
+ },
36
60
  "dependencies": {
37
- "@inquirer/checkbox": "^4.3.2",
38
- "@inquirer/input": "^4.3.1",
39
- "@inquirer/select": "^4.4.2",
61
+ "@inquirer/checkbox": "^5.0.1",
62
+ "@inquirer/input": "^5.0.1",
63
+ "@inquirer/select": "^5.0.1",
40
64
  "@pnpm/find-workspace-dir": "^1000.1.3",
41
65
  "@pnpm/logger": "^1001.0.1",
42
66
  "@pnpm/types": "^1001.0.0",
@@ -68,16 +92,13 @@
68
92
  "set-value": "^4.1.0"
69
93
  },
70
94
  "scripts": {
71
- "dev": "tsup --watch --sourcemap",
72
- "build": "tsup",
95
+ "dev": "tsdown --watch --sourcemap",
96
+ "build": "tsdown",
73
97
  "test": "vitest run",
74
98
  "test:dev": "vitest",
75
99
  "release": "pnpm publish",
76
100
  "lint": "eslint .",
77
101
  "lint:fix": "eslint . --fix",
78
102
  "prepublish": "tsx scripts/prepublish.ts"
79
- },
80
- "main": "./dist/index.cjs",
81
- "module": "./dist/index.js",
82
- "types": "./dist/index.d.ts"
103
+ }
83
104
  }
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@faker-js/faker": "^10.1.0",
18
- "@tanstack/vue-query": "^5.91.0",
18
+ "@tanstack/vue-query": "^5.91.2",
19
19
  "@tanstack/vue-table": "^8.21.3",
20
20
  "@tanstack/vue-virtual": "^3.13.12",
21
21
  "@trpc/client": "^11.7.1",
@@ -33,14 +33,14 @@
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.5",
36
+ "hono": "^4.10.6",
37
37
  "tailwindcss": "^4.1.17",
38
38
  "typescript": "~5.9.3",
39
- "unplugin-vue-router": "^0.16.1",
39
+ "unplugin-vue-router": "^0.17.0",
40
40
  "vite": "^7.2.2",
41
- "vite-plugin-vue-devtools": "^8.0.3",
41
+ "vite-plugin-vue-devtools": "^8.0.5",
42
42
  "vite-tsconfig-paths": "^5.1.4",
43
- "vue-tsc": "3.1.3",
43
+ "vue-tsc": "3.1.4",
44
44
  "wrangler": "^4.48.0",
45
45
  "zod": "^4.1.12"
46
46
  }
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "devDependencies": {
54
54
  "@hono/node-server": "^1.19.6",
55
- "hono": "^4.10.5",
55
+ "hono": "^4.10.6",
56
56
  "wrangler": "^4.48.0",
57
57
  "zod": "^4.1.12"
58
58
  }
@@ -51,11 +51,11 @@
51
51
  "@vue/tsconfig": "^0.8.1",
52
52
  "jsdom": "^27.2.0",
53
53
  "tailwindcss": "^4.1.17",
54
- "unplugin-vue-router": "^0.16.1",
54
+ "unplugin-vue-router": "^0.17.0",
55
55
  "vite": "^7.2.2",
56
56
  "vite-plugin-dts": "^4.5.4",
57
57
  "vue": "^3.5.24",
58
58
  "vue-router": "^4.6.3",
59
- "vue-tsc": "^3.1.3"
59
+ "vue-tsc": "^3.1.4"
60
60
  }
61
61
  }
package/bin/copy.js DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- import '../dist/cli.js'