-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 730 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 730 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
{
"name": "module-federation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"workspaces": [
"packages/**"
],
"scripts": {
"dev:host": "pnpm --filter host-vue dev",
"build": "vite build",
"build:all": "pnpm -r --parallel run build",
"preview:all": "pnpm -r --parallel run preview",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"pattern": "^(?:(?:@(?:[a-z0-9-*~][a-z0-9-*._~]*)?/[a-z0-9-._~])|[a-z0-9-~])[a-z0-9-._~]*$",
"dependencies": {
"@originjs/vite-plugin-federation": "^1.3.5"
},
"pnpm": {
"overrides": {
"vue": "3.4.29"
}
}
}