-
-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.03 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
{
"name": "create-module-federation",
"description": "Create a new Module Federation project",
"public": true,
"sideEffects": false,
"version": "2.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/create-module-federation"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"build": "rslib build"
},
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=16.7.0"
},
"bin": {
"create-module-federation": "./dist/index.js"
},
"files": [
"templates",
"dist"
],
"dependencies": {
"@clack/prompts": "^0.8.2",
"execa": "5.1.1",
"fs-extra": "9.1.0",
"minimist": "^1.2.8",
"rslog": "^1.2.3",
"glob": "7.2.0",
"handlebars": "4.7.7"
},
"devDependencies": {
"@types/glob": "7.2.0",
"@types/minimist": "^1.2.5",
"@types/fs-extra": "9.0.13",
"@rslib/core": "^0.19.6",
"rsbuild-plugin-publint": "^0.2.1"
}
}