-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "vue-module-loader",
"version": "3.5.3",
"description": "Let you use the micro front-end architecture to build Vue applications.",
"author": "mqhe2007 <[email protected]>",
"homepage": "https://mengqinghe.com",
"license": "MIT",
"keywords": [
"vue",
"vue-module",
"vue-module-loader",
"micro-front-end"
],
"repository": {
"type": "git",
"url": "https://github.com/mqhe2007/vue-module-loader"
},
"files": [
"dist"
],
"main": "./dist/vue-module-loader.umd.js",
"module": "./dist/vue-module-loader.es.js",
"types": "./dist/main.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/vue-module-loader.js",
"require": "./dist/vue-module-loader.umd.js"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build"
},
"devDependencies": {
"@types/node": "^18.8.5",
"typescript": "^4.7.4",
"vite": "^3.1.8",
"vite-plugin-dts": "^1.6.6"
},
"dependencies": {
"@qingjin/jsuper": "^1.3.1",
"vue": "^3.2.40"
}
}