-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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": "lego-liu",
"version": "1.0.3",
"private": false,
"main": "dist/lego-liu-umd.js",
"module": "dist/lego-liu-esm.js",
"types": "dist/index.d.ts",
"author": "jay",
"keywords": [
"vue3",
"typescript",
"UI"
],
"files": [
"dist"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run clear && npm run build:esm && npm run build:umb",
"lint": "vue-cli-service lint",
"build:esm": "rollup --config build/rollup.esm.config.js",
"build:umb": "rollup --config build/rollup.umb.config.js",
"clear": "rimraf ./dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"ant-design-vue": "^2.2.8",
"core-js": "^3.21.1",
"lodash-es": "^4.17.21",
"rollup": "^2.68.0",
"rollup-plugin-vue": "^6.0.0",
"uuid": "^8.3.2",
"vue": "^3.2.31",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "^4.5.0",
"@vue/cli-plugin-eslint": "^4.5.0",
"@vue/cli-plugin-typescript": "^4.5.0",
"@vue/cli-service": "^4.5.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-typescript": "^5.0.2",
"axios": "^0.26.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0-0",
"npm-check": "^5.9.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-typescript2": "^0.31.2",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}