-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.92 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "mutiplexed-elplus",
"version": "0.1.0-beta.3",
"keywords": [
"Component",
"UI",
"Vue3"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wushengzhu/mutiplexed-elplus.git"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"files": [
"dist",
"README.md"
],
"types": "dist/index.d.ts",
"homepage": "https://github.com/wushengzhu/mutiplexed-elplus.git",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc && vite build",
"cn": "node ./npmrc.js",
"preview": "vite preview",
"build:components": "node ./command/build.js",
"lib": "yarn build:components && cp package.json",
"prepare": "husky install",
"lint": "eslint src/**/*.{js,jsx,vue,ts,tsx} --fix && eslint packages/**/*.{js,jsx,vue,ts,tsx} --fix",
"prettier": "prettier --write src/**/*.{js,jsx,vue,ts,tsx} && prettier --write packages/**/*.{js,jsx,vue,ts,tsx}",
"docs:dev": "vitepress dev docs",
"docs:build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "vitest",
"cache": "npm cache clean --force"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.6",
"@fullcalendar/common": "^5.11.4",
"@fullcalendar/core": "^6.1.4",
"@fullcalendar/daygrid": "^6.1.4",
"@fullcalendar/interaction": "^6.1.4",
"@fullcalendar/list": "^6.1.4",
"@fullcalendar/timegrid": "^6.1.4",
"@fullcalendar/vue3": "^6.1.4",
"@types/file-saver": "^2.0.5",
"async-validator": "^4.2.5",
"axios": "^1.3.4",
"babel-eslint": "^10.1.0",
"dayjs": "^1.11.11",
"element-plus": "^2.2.26",
"file-saver": "^2.0.5",
"lodash-es": "^4.17.21",
"mutiplexed-elplus": "0.1.0-beta.3",
"path": "^0.12.7",
"plupload": "^2.3.9",
"spark-md5": "^3.0.2",
"tippy.js": "^6.3.7",
"vue": "^3.2.41",
"vue-router": "^4.0.13",
"wangeditor": "^4.7.15",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.5",
"@types/plupload": "^2.0.9",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vitepress-demo-preview/component": "^2.3.2",
"@vitepress-demo-preview/plugin": "^1.2.3",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.4.6",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.11.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.57.0",
"sass-loader": "^13.2.0",
"typescript": "^4.6.4",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.27.0",
"unplugin-vue-define-options": "^1.4.4",
"vite": "^3.2.10",
"vite-plugin-checker": "^0.5.2",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-externals": "^0.6.2",
"vite-plugin-windicss": "^1.9.3",
"vitepress": "^1.2.2",
"vitest": "^1.6.0",
"vue-tsc": "^1.0.9",
"windicss": "^3.5.6"
},
"peerDependencies": {
"vue": "^3.2.41",
"vue-class-component": "^8.0.0-0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx,json,css,scss,md,vue}": [
"yarn lint"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,vue}": [
"yarn lint"
]
}
}