dyc-components-vue3 1.3.21 → 1.3.23
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/dist/dycui-vue3-umd.js +75 -75
- package/dist/style.css +1 -1
- package/package.json +88 -101
package/package.json
CHANGED
|
@@ -1,101 +1,88 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dyc-components-vue3",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"vue3",
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"build": "vitepress build",
|
|
27
|
-
"build:
|
|
28
|
-
"build:
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"@ant-design/
|
|
35
|
-
"@
|
|
36
|
-
"@
|
|
37
|
-
"@
|
|
38
|
-
"@
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"vue": "^
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"@mistjs/
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
-
"@
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"vite": "^
|
|
79
|
-
"vite-plugin-
|
|
80
|
-
"vite-plugin-
|
|
81
|
-
"vite-plugin-
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
"peerDependencyRules": {
|
|
90
|
-
"ignoreMissing": [
|
|
91
|
-
"@algolia/client-search"
|
|
92
|
-
]
|
|
93
|
-
},
|
|
94
|
-
"overrides": {
|
|
95
|
-
"vue": "3.3.0-beta.2"
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
|
-
"lint-staged": {
|
|
99
|
-
"*.{js,jsx,ts,tsx}": "eslint --fix"
|
|
100
|
-
}
|
|
101
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dyc-components-vue3",
|
|
3
|
+
"version": "1.3.23",
|
|
4
|
+
"description": "this is a dyc-components-vue for vue3",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"vue3",
|
|
7
|
+
"vue3-components",
|
|
8
|
+
"components"
|
|
9
|
+
],
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"author": "MrLiang",
|
|
12
|
+
"main": "dist/dycui-vue3-umd.js",
|
|
13
|
+
"module": "es/index.js",
|
|
14
|
+
"types": "lib/index.d.ts",
|
|
15
|
+
"files": [
|
|
16
|
+
"lib",
|
|
17
|
+
"es",
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"test": "vitest",
|
|
23
|
+
"prepare": "husky install",
|
|
24
|
+
"dev": "vitepress dev",
|
|
25
|
+
"build": "vitepress build",
|
|
26
|
+
"build:site": "vitepress build",
|
|
27
|
+
"build:lib": "vite build --config vite.build.config.ts",
|
|
28
|
+
"build:umd": "vite build --config vite.bundle.config.ts",
|
|
29
|
+
"copy:css": "cpx \"components/style/*.css\" dist",
|
|
30
|
+
"preview": "vitepress preview"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@ant-design/colors": "^7.0.0",
|
|
34
|
+
"@ant-design/icons-vue": "^6.1.0",
|
|
35
|
+
"@antd-tiny-vue/cssinjs": "0.0.8",
|
|
36
|
+
"@ctrl/tinycolor": "^3.6.0",
|
|
37
|
+
"@v-c/utils": "^0.0.22",
|
|
38
|
+
"@vueuse/core": "^9.13.0",
|
|
39
|
+
"antd-v4": "npm:ant-design-vue@4.0.6",
|
|
40
|
+
"axios": "^1.4.0",
|
|
41
|
+
"click-outside-vue3": "^4.0.1",
|
|
42
|
+
"dayjs": "^1.11.9",
|
|
43
|
+
"install": "^0.13.0",
|
|
44
|
+
"lodash-es": "^4.17.21",
|
|
45
|
+
"mockjs": "^1.1.0",
|
|
46
|
+
"npm": "^10.2.1",
|
|
47
|
+
"screenfull": "^6.0.2",
|
|
48
|
+
"view-ui-plus": "^1.3.14",
|
|
49
|
+
"vue": "^3.3.0-beta.2",
|
|
50
|
+
"vue-router": "^4.2.4",
|
|
51
|
+
"vue-virtual-scroller": "^2.0.0-beta.8",
|
|
52
|
+
"vue3-treeselect": "^0.1.10",
|
|
53
|
+
"vuedraggable": "^4.1.0",
|
|
54
|
+
"vxe-table": "4.8.10",
|
|
55
|
+
"web-storage-cache": "^1.1.1",
|
|
56
|
+
"xe-utils": "^3.5.11"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@commitlint/cli": "^17.5.0",
|
|
60
|
+
"@commitlint/config-conventional": "^17.4.4",
|
|
61
|
+
"@mistjs/eslint-config-vue-jsx": "^0.0.7",
|
|
62
|
+
"@mistjs/tsconfig": "^1.1.1",
|
|
63
|
+
"@mistjs/tsconfig-vue": "^1.1.2",
|
|
64
|
+
"@types/node": "^18.15.10",
|
|
65
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
66
|
+
"@vitejs/plugin-vue-jsx": "^3.0.1",
|
|
67
|
+
"cpx": "^1.5.0",
|
|
68
|
+
"eslint": "^8.36.0",
|
|
69
|
+
"husky": "^8.0.3",
|
|
70
|
+
"less": "^4.1.3",
|
|
71
|
+
"lint-staged": "^13.2.0",
|
|
72
|
+
"prettier": "^2.8.7",
|
|
73
|
+
"typescript": "^5.0.4",
|
|
74
|
+
"unbuild": "^1.1.2",
|
|
75
|
+
"vite": "^4.3.3",
|
|
76
|
+
"vite-plugin-dts": "^2.3.0",
|
|
77
|
+
"vite-plugin-mock": "^2.9.6",
|
|
78
|
+
"vite-plugin-style-import": "^2.0.0",
|
|
79
|
+
"vite-plugin-svg-icons": "^2.0.1",
|
|
80
|
+
"vite-plugin-vitepress-demo": "2.0.0-beta.29",
|
|
81
|
+
"vite-plugin-vue-setup-extend": "^0.4.0",
|
|
82
|
+
"vitepress": "1.0.0-alpha.74",
|
|
83
|
+
"vitest": "^0.28.5"
|
|
84
|
+
},
|
|
85
|
+
"lint-staged": {
|
|
86
|
+
"*.{js,jsx,ts,tsx}": "eslint --fix"
|
|
87
|
+
}
|
|
88
|
+
}
|