gds-plus-design-vue 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +24 -0
- package/lib/element-theme-chalk.fbb1a631.mjs +5 -0
- package/lib/gd-initial.mjs +819 -0
- package/lib/gd-initial.umd.js +6 -0
- package/lib/logo.png +0 -0
- package/lib/style.css +1 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gds-plus-design-vue",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "高得CRM-PLUS框架Vue组件",
|
|
5
|
+
"files": [
|
|
6
|
+
"lib"
|
|
7
|
+
],
|
|
8
|
+
"main": "lib/gd-initial.umd.min.js",
|
|
9
|
+
"module": "lib/gd-initial.mjs",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "lib/gd-initial.mjs",
|
|
13
|
+
"require": "lib/gd-initial.umd.min.js"
|
|
14
|
+
},
|
|
15
|
+
"./lib/style.css": {
|
|
16
|
+
"import": "./lib/style.css",
|
|
17
|
+
"require": "./lib/style.css"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "vite --force",
|
|
22
|
+
"build": "vite build",
|
|
23
|
+
"predevs": "rd /s /q node_modules\\.vite"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@babel/core": "7.22.20",
|
|
27
|
+
"@babel/preset-env": "7.20.2",
|
|
28
|
+
"axios": "1.6.2",
|
|
29
|
+
"default-passive-events": "2.0.0",
|
|
30
|
+
"el-tree-transfer": "^2.4.7",
|
|
31
|
+
"element-ui": "2.15.14",
|
|
32
|
+
"jszip": "^3.10.1",
|
|
33
|
+
"path-browserify": "1.0.1",
|
|
34
|
+
"path-to-regexp": "2.4.0",
|
|
35
|
+
"vue": "^2.7.15",
|
|
36
|
+
"vue-i18n": "^8.27.1",
|
|
37
|
+
"vue-ls": "^3.2.2",
|
|
38
|
+
"vue-router": "^3.5.2",
|
|
39
|
+
"vuex": "^3.1.1",
|
|
40
|
+
"vuedraggable": "^2.24.3",
|
|
41
|
+
"vue-drag-resize": "^1.5.4",
|
|
42
|
+
"vue-draggable-resizable": "^2.3.0",
|
|
43
|
+
"weixin-js-sdk": "^1.6.0",
|
|
44
|
+
"weixin-jsapi": "^1.1.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@riophae/vue-treeselect": "0.4.0",
|
|
48
|
+
"@vitejs/plugin-legacy": "^2.0.0",
|
|
49
|
+
"@vitejs/plugin-vue2": "2.2.0",
|
|
50
|
+
"babel-eslint": "10.1.0",
|
|
51
|
+
"babel-jest": "23.6.0",
|
|
52
|
+
"chalk": "2.4.2",
|
|
53
|
+
"clipboard": "2.0.4",
|
|
54
|
+
"connect": "3.6.6",
|
|
55
|
+
"crypto-js": "4.1.1",
|
|
56
|
+
"downloadjs": "^1.4.7",
|
|
57
|
+
"echarts": "5.4.3",
|
|
58
|
+
"eslint": "6.7.2",
|
|
59
|
+
"eslint-plugin-vue": "6.2.2",
|
|
60
|
+
"gds-design-vue": "1.3.64",
|
|
61
|
+
"fast-glob": "3.3.1",
|
|
62
|
+
"fuse.js": "3.4.4",
|
|
63
|
+
"highlight.js": "11.9.0",
|
|
64
|
+
"@highlightjs/vue-plugin": "1.0.2",
|
|
65
|
+
"js-md5": "0.7.3",
|
|
66
|
+
"jsencrypt": "3.2.1",
|
|
67
|
+
"nprogress": "0.2.0",
|
|
68
|
+
"sass": "1.26.8",
|
|
69
|
+
"screenfull": "6.0.2",
|
|
70
|
+
"serve-static": "1.13.2",
|
|
71
|
+
"svg-sprite-loader": "4.1.3",
|
|
72
|
+
"svgo": "1.2.2",
|
|
73
|
+
"terser": "^5.22.0",
|
|
74
|
+
"vite": "^3.0.0",
|
|
75
|
+
"vite-plugin-svg-icons": "2.0.1",
|
|
76
|
+
"vue-count-to": "1.0.13",
|
|
77
|
+
"vue-cropper": "0.5.5",
|
|
78
|
+
"vue-json-excel": "0.3.0",
|
|
79
|
+
"vue-json-viewer": "^2.2.22",
|
|
80
|
+
"xlsx": "0.17.0"
|
|
81
|
+
},
|
|
82
|
+
"browserslist": [
|
|
83
|
+
"> 1%",
|
|
84
|
+
"last 2 versions"
|
|
85
|
+
],
|
|
86
|
+
"engines": {
|
|
87
|
+
"node": ">=8.9",
|
|
88
|
+
"npm": ">= 3.0.0"
|
|
89
|
+
},
|
|
90
|
+
"keywords": [],
|
|
91
|
+
"author": "lc",
|
|
92
|
+
"license": "ISC"
|
|
93
|
+
}
|