-
-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.7 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.7 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@module-federation/enhanced",
"version": "0.24.1",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/enhanced"
},
"files": [
"bin",
"dist/",
"README.md"
],
"bin": {
"mf": "./bin/mf.js"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"typescript": "^4.9.0 || ^5.0.0",
"vue-tsc": ">=1.0.24",
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
},
"typescript": {
"optional": true
},
"vue-tsc": {
"optional": true
}
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"require": "./dist/src/index.js"
},
"./webpack": {
"types": "./dist/src/webpack.d.ts",
"import": "./dist/src/webpack.js",
"require": "./dist/src/webpack.js"
},
"./rspack": {
"types": "./dist/src/rspack.d.ts",
"import": "./dist/src/rspack.js",
"require": "./dist/src/rspack.js"
},
"./runtime": {
"types": "./dist/src/runtime.d.ts",
"import": "./dist/src/runtime.js",
"require": "./dist/src/runtime.js"
},
"./prefetch": {
"types": "./dist/src/prefetch.d.ts",
"import": "./dist/src/prefetch.js",
"require": "./dist/src/prefetch.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/src/index.d.ts"
],
"webpack": [
"./dist/src/webpack.d.ts"
],
"rspack": [
"./dist/src/rspack.d.ts"
],
"runtime": [
"./dist/src/runtime.d.ts"
],
"prefetch": [
"./dist/src/prefetch.d.ts"
]
}
},
"devDependencies": {
"@module-federation/webpack-bundler-runtime": "workspace:*",
"@types/btoa": "^1.2.5",
"ajv": "^8.17.1",
"enhanced-resolve": "^5.0.0",
"terser": "^5.37.0",
"memfs": "4.46.0"
},
"dependencies": {
"@module-federation/bridge-react-webpack-plugin": "workspace:*",
"@module-federation/data-prefetch": "workspace:*",
"@module-federation/dts-plugin": "workspace:*",
"@module-federation/error-codes": "workspace:*",
"@module-federation/inject-external-runtime-core-plugin": "workspace:*",
"@module-federation/managers": "workspace:*",
"@module-federation/manifest": "workspace:*",
"@module-federation/rspack": "workspace:*",
"@module-federation/runtime-tools": "workspace:*",
"@module-federation/sdk": "workspace:*",
"@module-federation/cli": "workspace:*",
"btoa": "^1.2.1",
"upath": "2.0.1",
"schema-utils": "^4.3.0"
}
}