forked from module-federation/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 KB
/
package.json
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
{
"name": "@module-federation/native-federation-tests",
"version": "0.2.1",
"description": "Bundler agnostic unplugin to share federated tests",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./esbuild": {
"types": "./dist/esbuild.d.ts",
"require": "./dist/esbuild.js",
"import": "./dist/esbuild.mjs"
},
"./rspack": {
"types": "./dist/rspack.d.ts",
"require": "./dist/rspack.js",
"import": "./dist/rspack.mjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"module federation",
"tests",
"remote tests",
"federated tests"
],
"author": "Matteo Pietro Dazzi <[email protected]> (https://github.com/ilteoood)",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.10",
"ansi-colors": "^4.1.3",
"axios": "^1.3.4",
"rambda": "^7.5.0",
"tsup": "^7.0.0",
"unplugin": "^1.3.1"
}
}