forked from module-federation/vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "@module-federation/vite",
"version": "0.2.8",
"description": "Vite/Rollup plugin for Module Federation",
"type": "module",
"source": "src/index.ts",
"main": "./lib/index.cjs",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "husky install",
"format": "pretty-quick",
"dev": "microbundle watch",
"build": "rimraf lib && microbundle --no-sourcemap --compress=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/vite.git"
},
"keywords": [
"vite",
"module federation",
"microfrontend"
],
"author": {
"name": "Giorgio Boa",
"email": "[email protected]",
"url": "https://github.com/gioboa"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/module-federation/vite/issues"
},
"homepage": "https://github.com/module-federation/vite#readme",
"peerDependencies": {
"@softarc/native-federation": "^2.0.2"
},
"devDependencies": {
"husky": "^8.0.3",
"microbundle": "^0.15.1",
"mime-types": "^2.1.35",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
"vite": "^4.4.9"
}
}