-
-
Notifications
You must be signed in to change notification settings - Fork 414
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1018 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1018 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
36
37
38
39
40
41
{
"name": "@module-federation/bridge-react-webpack-plugin",
"version": "2.2.0",
"publishConfig": {
"access": "public"
},
"author": "zhouxiao <codingzx@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/bridge/bridge-react-webpack-plugin"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.cjs.d.ts",
"exports": {
".": {
"types": "./dist/index.cjs.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./*": "./*"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run -c vitest.config.ts"
},
"dependencies": {
"@module-federation/sdk": "workspace:*",
"semver": "7.6.3",
"@types/semver": "7.5.8"
},
"devDependencies": {
"typescript": "^5.2.2",
"vite": "^5.4.21",
"vite-plugin-dts": "^4.3.0"
}
}