-
-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathpackage.json.handlebars
More file actions
35 lines (35 loc) · 769 Bytes
/
package.json.handlebars
File metadata and controls
35 lines (35 loc) · 769 Bytes
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
{
"name": "{{ mfName }}",
"version": "0.0.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"mf-dev": "rslib mf-dev"
},
"devDependencies": {
"@rsbuild/core": "2.0.0-beta.2",
"@rsbuild/plugin-react": "^1.4.5",
"@rslib/core": ">=0.9.0",
"@types/react": "^18.3.11",
"react": "^18.3.1",
"typescript": "^5.7.3",
"@types/node": "^22.13.9",
"@module-federation/rsbuild-plugin":"^{{mfVersion}}"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}