-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "rslib-mf-example",
"version": "1.0.0",
"description": "模块联邦实验项目",
"keywords": [
"mf",
"module-federation",
"react",
"react-dom",
"typescript",
"webpack",
"vite",
"rsbuild"
],
"author": "worker_xjm@outlook.com",
"license": "MIT",
"packageManager": "pnpm@10.11.0",
"repository": {
"type": "git",
"url": "git+https://gitee.com/alibi-jia/mf-examples.git"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@module-federation/rsbuild-plugin": "0.13.1",
"@module-federation/vite": "^1.4.0",
"@rsbuild/plugin-less": "^1.2.4",
"@rsbuild/plugin-react": "^1.3.1",
"@rslib/core": "^0.9.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.5.0",
"eslint": "^9.27.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.33.0",
"vite": "^6.3.5"
},
"scripts": {
"app:vite": "pnpm --filter app-mf-vite dev",
"app:webpack": "pnpm --filter app-mf-webpack start",
"app:rsbuild": "pnpm --filter app_mf_rsbuild dev",
"lib:vite": "pnpm --filter lib-mf-vite dev",
"lib:webpack": "pnpm --filter lib-mf-webpack start",
"lib:rsbuild": "pnpm --filter rsbuild_mf_components dev",
"lib:rslib-dev": "pnpm --filter lib-mf-rslib dev",
"lib:rslib-mf-dev": "pnpm --filter lib-mf-rslib mf-dev"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}