create-rsbuild 1.6.7 → 2.0.0-alpha.1

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 (42) hide show
  1. package/dist/index.js +25 -0
  2. package/package.json +11 -11
  3. package/template-lit-js/package.json +2 -2
  4. package/template-lit-js/src/index.html +7 -5
  5. package/template-lit-ts/package.json +2 -2
  6. package/template-lit-ts/src/index.html +7 -5
  7. package/template-preact-js/package.json +3 -3
  8. package/template-preact-ts/package.json +3 -3
  9. package/template-react-js/package.json +2 -2
  10. package/template-react-ts/package.json +3 -3
  11. package/template-react18-js/package.json +2 -2
  12. package/template-react18-ts/package.json +2 -2
  13. package/template-rstest/react-js/package.json +4 -6
  14. package/template-rstest/react-js/rstest.config.js +3 -4
  15. package/template-rstest/react-ts/package.json +4 -6
  16. package/template-rstest/react-ts/rstest.config.ts +3 -4
  17. package/template-rstest/vanilla-js/package.json +3 -5
  18. package/template-rstest/vanilla-js/rstest.config.js +3 -2
  19. package/template-rstest/vanilla-ts/package.json +3 -5
  20. package/template-rstest/vanilla-ts/rstest.config.ts +3 -2
  21. package/template-rstest/vue-js/package.json +3 -5
  22. package/template-rstest/vue-js/rstest.config.js +3 -10
  23. package/template-rstest/vue-ts/package.json +3 -5
  24. package/template-rstest/vue-ts/rstest.config.ts +3 -10
  25. package/template-solid-js/package.json +3 -3
  26. package/template-solid-ts/package.json +3 -3
  27. package/template-svelte-js/package.json +3 -3
  28. package/template-svelte-ts/package.json +4 -4
  29. package/template-tailwindcss/package.json +6 -0
  30. package/template-tailwindcss/postcss.config.mjs +5 -0
  31. package/template-vanilla-js/package.json +1 -1
  32. package/template-vanilla-ts/package.json +1 -1
  33. package/template-vue2-js/package.json +2 -2
  34. package/template-vue2-ts/package.json +2 -2
  35. package/template-vue3-js/package.json +3 -3
  36. package/template-vue3-ts/package.json +3 -3
  37. /package/template-rstest/react-js/{rstest.setup.js → tests/rstest.setup.js} +0 -0
  38. /package/template-rstest/react-ts/{rstest.setup.ts → tests/rstest.setup.ts} +0 -0
  39. /package/template-rstest/vanilla-js/{rstest.setup.js → tests/rstest.setup.js} +0 -0
  40. /package/template-rstest/vanilla-ts/{rstest.setup.ts → tests/rstest.setup.ts} +0 -0
  41. /package/template-rstest/vue-js/{rstest.setup.js → tests/rstest.setup.js} +0 -0
  42. /package/template-rstest/vue-ts/{rstest.setup.ts → tests/rstest.setup.ts} +0 -0
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import node_fs from "node:fs";
1
2
  import node_path from "node:path";
2
3
  import { fileURLToPath } from "node:url";
3
4
  import { checkCancel, copyFolder, create, select as external_create_rstack_select } from "create-rstack";
@@ -144,6 +145,30 @@ create({
144
145
  addAgentsMdSearchDirs(toolFolder);
145
146
  }
146
147
  },
148
+ {
149
+ value: 'tailwindcss',
150
+ label: 'Tailwind CSS - styling',
151
+ action: async ({ distFolder })=>{
152
+ const from = node_path.join(src_dirname, '..', 'template-tailwindcss');
153
+ copyFolder({
154
+ from: from,
155
+ to: distFolder,
156
+ isMergePackageJson: true
157
+ });
158
+ const mainCssFile = [
159
+ 'index.css',
160
+ 'App.css'
161
+ ];
162
+ for (const cssFile of mainCssFile){
163
+ const filePath = node_path.join(distFolder, 'src', cssFile);
164
+ if (node_fs.existsSync(filePath)) {
165
+ const content = await node_fs.promises.readFile(filePath, 'utf-8');
166
+ await node_fs.promises.writeFile(filePath, `@import 'tailwindcss';\n\n${content}`);
167
+ break;
168
+ }
169
+ }
170
+ }
171
+ },
147
172
  {
148
173
  value: 'storybook',
149
174
  label: 'Storybook - component development',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-rsbuild",
3
- "version": "1.6.7",
3
+ "version": "2.0.0-alpha.1",
4
4
  "description": "Create a new Rsbuild project",
5
5
  "homepage": "https://rsbuild.rs",
6
6
  "repository": {
@@ -23,22 +23,22 @@
23
23
  "bin.js"
24
24
  ],
25
25
  "dependencies": {
26
- "create-rstack": "1.7.19"
26
+ "create-rstack": "1.7.20"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@rsbuild/plugin-react": "^1.1.0",
30
- "@rslib/core": "0.18.4",
31
- "@types/node": "^24.10.3",
30
+ "@rslib/core": "0.19.2",
31
+ "@types/node": "^24.10.9",
32
32
  "typescript": "^5.9.3",
33
- "@rsbuild/plugin-babel": "1.0.6",
34
- "@rsbuild/plugin-preact": "1.6.0",
35
- "@rsbuild/core": "1.6.14",
36
- "@rsbuild/plugin-solid": "1.0.6",
37
- "@rsbuild/plugin-svelte": "1.0.11",
38
- "@rsbuild/plugin-vue": "1.2.1"
33
+ "@rsbuild/plugin-babel": "1.0.7",
34
+ "@rsbuild/core": "2.0.0-alpha.1",
35
+ "@rsbuild/plugin-preact": "1.7.1",
36
+ "@rsbuild/plugin-solid": "1.0.7",
37
+ "@rsbuild/plugin-svelte": "1.0.12",
38
+ "@rsbuild/plugin-vue": "1.2.3"
39
39
  },
40
40
  "engines": {
41
- "node": ">=18.12.0"
41
+ "node": "^20.19.0 || >=22.12.0"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public",
@@ -9,9 +9,9 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "lit": "^3.3.1"
12
+ "lit": "^3.3.2"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14"
15
+ "@rsbuild/core": "^2.0.0-0"
16
16
  }
17
17
  }
@@ -1,5 +1,7 @@
1
- <!doctype html>
2
- <head></head>
3
- <body>
4
- <my-element />
5
- </body>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head></head>
4
+ <body>
5
+ <my-element />
6
+ </body>
7
+ </html>
@@ -9,10 +9,10 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "lit": "^3.3.1"
12
+ "lit": "^3.3.2"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
15
+ "@rsbuild/core": "^2.0.0-0",
16
16
  "typescript": "^5.9.3"
17
17
  }
18
18
  }
@@ -1,5 +1,7 @@
1
- <!doctype html>
2
- <head></head>
3
- <body>
4
- <my-element />
5
- </body>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head></head>
4
+ <body>
5
+ <my-element />
6
+ </body>
7
+ </html>
@@ -9,10 +9,10 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "preact": "^10.28.0"
12
+ "preact": "^10.28.2"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
16
- "@rsbuild/plugin-preact": "^1.6.0"
15
+ "@rsbuild/core": "^2.0.0-0",
16
+ "@rsbuild/plugin-preact": "^1.7.1"
17
17
  }
18
18
  }
@@ -9,11 +9,11 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "preact": "^10.28.0"
12
+ "preact": "^10.28.2"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
16
- "@rsbuild/plugin-preact": "^1.6.0",
15
+ "@rsbuild/core": "^2.0.0-0",
16
+ "@rsbuild/plugin-preact": "^1.7.1",
17
17
  "typescript": "^5.9.3"
18
18
  }
19
19
  }
@@ -13,7 +13,7 @@
13
13
  "react-dom": "^19.2.3"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.14",
17
- "@rsbuild/plugin-react": "^1.4.2"
16
+ "@rsbuild/core": "^2.0.0-0",
17
+ "@rsbuild/plugin-react": "^1.4.3"
18
18
  }
19
19
  }
@@ -13,9 +13,9 @@
13
13
  "react-dom": "^19.2.3"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.14",
17
- "@rsbuild/plugin-react": "^1.4.2",
18
- "@types/react": "^19.2.7",
16
+ "@rsbuild/core": "^2.0.0-0",
17
+ "@rsbuild/plugin-react": "^1.4.3",
18
+ "@types/react": "^19.2.8",
19
19
  "@types/react-dom": "^19.2.3",
20
20
  "typescript": "^5.9.3"
21
21
  }
@@ -13,7 +13,7 @@
13
13
  "react-dom": "^18.3.1"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.14",
17
- "@rsbuild/plugin-react": "^1.4.2"
16
+ "@rsbuild/core": "^2.0.0-0",
17
+ "@rsbuild/plugin-react": "^1.4.3"
18
18
  }
19
19
  }
@@ -13,8 +13,8 @@
13
13
  "react-dom": "^18.3.1"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.14",
17
- "@rsbuild/plugin-react": "^1.4.2",
16
+ "@rsbuild/core": "^2.0.0-0",
17
+ "@rsbuild/plugin-react": "^1.4.3",
18
18
  "@types/react": "^18.3.18",
19
19
  "@types/react-dom": "^18.3.5",
20
20
  "typescript": "^5.9.3"
@@ -1,7 +1,4 @@
1
1
  {
2
- "name": "rsbuild-rstest-react-js",
3
- "private": true,
4
- "version": "1.0.0",
5
2
  "scripts": {
6
3
  "test": "rstest",
7
4
  "test:watch": "rstest --watch"
@@ -9,8 +6,9 @@
9
6
  "devDependencies": {
10
7
  "@testing-library/dom": "^10.4.1",
11
8
  "@testing-library/jest-dom": "^6.9.1",
12
- "@testing-library/react": "^16.3.0",
13
- "@rstest/core": "^0.7.2",
14
- "jsdom": "^27.3.0"
9
+ "@testing-library/react": "^16.3.1",
10
+ "@rstest/core": "^0.7.9",
11
+ "@rstest/adapter-rsbuild": "^0.1.0",
12
+ "happy-dom": "^20.3.3"
15
13
  }
16
14
  }
@@ -1,9 +1,8 @@
1
- import { pluginReact } from '@rsbuild/plugin-react';
1
+ import { withRsbuildConfig } from '@rstest/adapter-rsbuild';
2
2
  import { defineConfig } from '@rstest/core';
3
3
 
4
4
  // Docs: https://rstest.rs/config/
5
5
  export default defineConfig({
6
- plugins: [pluginReact()],
7
- testEnvironment: 'jsdom',
8
- setupFiles: ['./rstest.setup.js'],
6
+ extends: withRsbuildConfig(),
7
+ setupFiles: ['./tests/rstest.setup.js'],
9
8
  });
@@ -1,7 +1,4 @@
1
1
  {
2
- "name": "rsbuild-rstest-react-ts",
3
- "private": true,
4
- "version": "1.0.0",
5
2
  "scripts": {
6
3
  "test": "rstest",
7
4
  "test:watch": "rstest --watch"
@@ -9,8 +6,9 @@
9
6
  "devDependencies": {
10
7
  "@testing-library/dom": "^10.4.1",
11
8
  "@testing-library/jest-dom": "^6.9.1",
12
- "@testing-library/react": "^16.3.0",
13
- "@rstest/core": "^0.7.2",
14
- "jsdom": "^27.3.0"
9
+ "@testing-library/react": "^16.3.1",
10
+ "@rstest/core": "^0.7.9",
11
+ "@rstest/adapter-rsbuild": "^0.1.0",
12
+ "happy-dom": "^20.3.3"
15
13
  }
16
14
  }
@@ -1,9 +1,8 @@
1
- import { pluginReact } from '@rsbuild/plugin-react';
1
+ import { withRsbuildConfig } from '@rstest/adapter-rsbuild';
2
2
  import { defineConfig } from '@rstest/core';
3
3
 
4
4
  // Docs: https://rstest.rs/config/
5
5
  export default defineConfig({
6
- plugins: [pluginReact()],
7
- testEnvironment: 'jsdom',
8
- setupFiles: ['./rstest.setup.ts'],
6
+ extends: withRsbuildConfig(),
7
+ setupFiles: ['./tests/rstest.setup.ts'],
9
8
  });
@@ -1,7 +1,4 @@
1
1
  {
2
- "name": "rsbuild-rstest-vanilla-js",
3
- "private": true,
4
- "version": "1.0.0",
5
2
  "scripts": {
6
3
  "test": "rstest",
7
4
  "test:watch": "rstest --watch"
@@ -9,7 +6,8 @@
9
6
  "devDependencies": {
10
7
  "@testing-library/dom": "^10.4.1",
11
8
  "@testing-library/jest-dom": "^6.9.1",
12
- "@rstest/core": "^0.7.2",
13
- "jsdom": "^27.3.0"
9
+ "@rstest/core": "^0.7.9",
10
+ "@rstest/adapter-rsbuild": "^0.1.0",
11
+ "happy-dom": "^20.3.3"
14
12
  }
15
13
  }
@@ -1,7 +1,8 @@
1
+ import { withRsbuildConfig } from '@rstest/adapter-rsbuild';
1
2
  import { defineConfig } from '@rstest/core';
2
3
 
3
4
  // Docs: https://rstest.rs/config/
4
5
  export default defineConfig({
5
- testEnvironment: 'jsdom',
6
- setupFiles: ['./rstest.setup.js'],
6
+ extends: withRsbuildConfig(),
7
+ setupFiles: ['./tests/rstest.setup.js'],
7
8
  });
@@ -1,7 +1,4 @@
1
1
  {
2
- "name": "rsbuild-rstest-vanilla-ts",
3
- "private": true,
4
- "version": "1.0.0",
5
2
  "scripts": {
6
3
  "test": "rstest",
7
4
  "test:watch": "rstest --watch"
@@ -9,7 +6,8 @@
9
6
  "devDependencies": {
10
7
  "@testing-library/dom": "^10.4.1",
11
8
  "@testing-library/jest-dom": "^6.9.1",
12
- "@rstest/core": "^0.7.2",
13
- "jsdom": "^27.3.0"
9
+ "@rstest/core": "^0.7.9",
10
+ "@rstest/adapter-rsbuild": "^0.1.0",
11
+ "happy-dom": "^20.3.3"
14
12
  }
15
13
  }
@@ -1,7 +1,8 @@
1
+ import { withRsbuildConfig } from '@rstest/adapter-rsbuild';
1
2
  import { defineConfig } from '@rstest/core';
2
3
 
3
4
  // Docs: https://rstest.rs/config/
4
5
  export default defineConfig({
5
- testEnvironment: 'jsdom',
6
- setupFiles: ['./rstest.setup.ts'],
6
+ extends: withRsbuildConfig(),
7
+ setupFiles: ['./tests/rstest.setup.ts'],
7
8
  });
@@ -1,7 +1,4 @@
1
1
  {
2
- "name": "rsbuild-rstest-vue-js",
3
- "private": true,
4
- "version": "1.0.0",
5
2
  "scripts": {
6
3
  "test": "rstest",
7
4
  "test:watch": "rstest --watch"
@@ -10,7 +7,8 @@
10
7
  "@testing-library/dom": "^10.4.1",
11
8
  "@testing-library/jest-dom": "^6.9.1",
12
9
  "@testing-library/vue": "^8.1.0",
13
- "@rstest/core": "^0.7.2",
14
- "jsdom": "^27.3.0"
10
+ "@rstest/core": "^0.7.9",
11
+ "@rstest/adapter-rsbuild": "^0.1.0",
12
+ "happy-dom": "^20.3.3"
15
13
  }
16
14
  }
@@ -1,15 +1,8 @@
1
- import { pluginVue } from '@rsbuild/plugin-vue';
1
+ import { withRsbuildConfig } from '@rstest/adapter-rsbuild';
2
2
  import { defineConfig } from '@rstest/core';
3
3
 
4
4
  // Docs: https://rstest.rs/config/
5
5
  export default defineConfig({
6
- plugins: [
7
- pluginVue({
8
- vueLoaderOptions: {
9
- isServerBuild: false,
10
- },
11
- }),
12
- ],
13
- testEnvironment: 'jsdom',
14
- setupFiles: ['./rstest.setup.js'],
6
+ extends: withRsbuildConfig(),
7
+ setupFiles: ['./tests/rstest.setup.js'],
15
8
  });
@@ -1,7 +1,4 @@
1
1
  {
2
- "name": "rsbuild-rstest-vue-ts",
3
- "private": true,
4
- "version": "1.0.0",
5
2
  "scripts": {
6
3
  "test": "rstest",
7
4
  "test:watch": "rstest --watch"
@@ -10,7 +7,8 @@
10
7
  "@testing-library/dom": "^10.4.1",
11
8
  "@testing-library/jest-dom": "^6.9.1",
12
9
  "@testing-library/vue": "^8.1.0",
13
- "@rstest/core": "^0.7.2",
14
- "jsdom": "^27.3.0"
10
+ "@rstest/core": "^0.7.9",
11
+ "@rstest/adapter-rsbuild": "^0.1.0",
12
+ "happy-dom": "^20.3.3"
15
13
  }
16
14
  }
@@ -1,15 +1,8 @@
1
- import { pluginVue } from '@rsbuild/plugin-vue';
1
+ import { withRsbuildConfig } from '@rstest/adapter-rsbuild';
2
2
  import { defineConfig } from '@rstest/core';
3
3
 
4
4
  // Docs: https://rstest.rs/config/
5
5
  export default defineConfig({
6
- plugins: [
7
- pluginVue({
8
- vueLoaderOptions: {
9
- isServerBuild: false,
10
- },
11
- }),
12
- ],
13
- testEnvironment: 'jsdom',
14
- setupFiles: ['./rstest.setup.ts'],
6
+ extends: withRsbuildConfig(),
7
+ setupFiles: ['./tests/rstest.setup.ts'],
15
8
  });
@@ -12,8 +12,8 @@
12
12
  "solid-js": "^1.9.10"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
16
- "@rsbuild/plugin-babel": "^1.0.6",
17
- "@rsbuild/plugin-solid": "^1.0.6"
15
+ "@rsbuild/core": "^2.0.0-0",
16
+ "@rsbuild/plugin-babel": "^1.0.7",
17
+ "@rsbuild/plugin-solid": "^1.0.7"
18
18
  }
19
19
  }
@@ -12,9 +12,9 @@
12
12
  "solid-js": "^1.9.10"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
16
- "@rsbuild/plugin-babel": "^1.0.6",
17
- "@rsbuild/plugin-solid": "^1.0.6",
15
+ "@rsbuild/core": "^2.0.0-0",
16
+ "@rsbuild/plugin-babel": "^1.0.7",
17
+ "@rsbuild/plugin-solid": "^1.0.7",
18
18
  "typescript": "^5.9.3"
19
19
  }
20
20
  }
@@ -9,10 +9,10 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "svelte": "^5.46.0"
12
+ "svelte": "^5.46.4"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
16
- "@rsbuild/plugin-svelte": "^1.0.11"
15
+ "@rsbuild/core": "^2.0.0-0",
16
+ "@rsbuild/plugin-svelte": "^1.0.12"
17
17
  }
18
18
  }
@@ -10,12 +10,12 @@
10
10
  "svelte-check": "svelte-check --tsconfig ./tsconfig.json"
11
11
  },
12
12
  "dependencies": {
13
- "svelte": "^5.46.0"
13
+ "svelte": "^5.46.4"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.14",
17
- "@rsbuild/plugin-svelte": "^1.0.11",
18
- "svelte-check": "^4.3.4",
16
+ "@rsbuild/core": "^2.0.0-0",
17
+ "@rsbuild/plugin-svelte": "^1.0.12",
18
+ "svelte-check": "^4.3.5",
19
19
  "typescript": "^5.9.3"
20
20
  }
21
21
  }
@@ -0,0 +1,6 @@
1
+ {
2
+ "devDependencies": {
3
+ "@tailwindcss/postcss": "^4.1.18",
4
+ "tailwindcss": "^4.1.18"
5
+ }
6
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ plugins: {
3
+ '@tailwindcss/postcss': {},
4
+ },
5
+ };
@@ -9,6 +9,6 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "devDependencies": {
12
- "@rsbuild/core": "^1.6.14"
12
+ "@rsbuild/core": "^2.0.0-0"
13
13
  }
14
14
  }
@@ -9,7 +9,7 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "devDependencies": {
12
- "@rsbuild/core": "^1.6.14",
12
+ "@rsbuild/core": "^2.0.0-0",
13
13
  "typescript": "^5.9.3"
14
14
  }
15
15
  }
@@ -12,7 +12,7 @@
12
12
  "vue": "^2.7.16"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
16
- "@rsbuild/plugin-vue2": "^1.0.4"
15
+ "@rsbuild/core": "^2.0.0-0",
16
+ "@rsbuild/plugin-vue2": "^1.0.6"
17
17
  }
18
18
  }
@@ -12,8 +12,8 @@
12
12
  "vue": "^2.7.16"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
16
- "@rsbuild/plugin-vue2": "^1.0.4",
15
+ "@rsbuild/core": "^2.0.0-0",
16
+ "@rsbuild/plugin-vue2": "^1.0.6",
17
17
  "typescript": "^5.9.3"
18
18
  }
19
19
  }
@@ -9,10 +9,10 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "vue": "^3.5.25"
12
+ "vue": "^3.5.26"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
16
- "@rsbuild/plugin-vue": "^1.2.1"
15
+ "@rsbuild/core": "^2.0.0-0",
16
+ "@rsbuild/plugin-vue": "^1.2.3"
17
17
  }
18
18
  }
@@ -9,11 +9,11 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "vue": "^3.5.25"
12
+ "vue": "^3.5.26"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.14",
16
- "@rsbuild/plugin-vue": "^1.2.1",
15
+ "@rsbuild/core": "^2.0.0-0",
16
+ "@rsbuild/plugin-vue": "^1.2.3",
17
17
  "typescript": "^5.9.3"
18
18
  }
19
19
  }