dream-vue-components 0.0.1-beta.1
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/README.md +53 -0
- package/dist/lib/favicon.ico +0 -0
- package/dist/lib/style.css +9 -0
- package/dist/lib/vite-vue-dream-admin.es.js +37593 -0
- package/dist/lib/vite-vue-dream-admin.umd.js +84 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dream-vue-components",
|
|
3
|
+
"version": "0.0.1-beta.1",
|
|
4
|
+
"description": "Vite Vue Dream Admin Components Library",
|
|
5
|
+
"main": "./dist/lib/vite-vue-dream-admin.umd.js",
|
|
6
|
+
"module": "./dist/lib/vite-vue-dream-admin.es.js",
|
|
7
|
+
"types": "./dist/lib/vite-vue-dream-admin.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/lib/vite-vue-dream-admin.es.js",
|
|
11
|
+
"require": "./dist/lib/vite-vue-dream-admin.umd.js"
|
|
12
|
+
},
|
|
13
|
+
"./style.css": "./dist/lib/style.css"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/lib"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"dev": "vite",
|
|
20
|
+
"build": "run-p type-check build-only",
|
|
21
|
+
"preview": "vite preview --port 4173",
|
|
22
|
+
"test:unit": "vitest --environment jsdom",
|
|
23
|
+
"build-only": "vite build",
|
|
24
|
+
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
|
25
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
26
|
+
"build:lib": "vite build --mode lib"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@element-plus/icons-vue": "^2.0.10",
|
|
30
|
+
"axios": "^1.1.3",
|
|
31
|
+
"clipboard": "^2.0.11",
|
|
32
|
+
"cropperjs": "^1.5.13",
|
|
33
|
+
"default-passive-events": "^2.0.0",
|
|
34
|
+
"element-plus": "^2.2.22",
|
|
35
|
+
"file-saver": "^2.0.5",
|
|
36
|
+
"fuse.js": "^6.6.2",
|
|
37
|
+
"js-cookie": "^3.0.1",
|
|
38
|
+
"jszip": "^3.10.1",
|
|
39
|
+
"mitt": "^3.0.0",
|
|
40
|
+
"mockjs": "^1.1.0",
|
|
41
|
+
"normalize.css": "^8.0.1",
|
|
42
|
+
"nprogress": "^0.2.0",
|
|
43
|
+
"path-browserify": "^1.0.1",
|
|
44
|
+
"path-to-regexp": "^6.2.1",
|
|
45
|
+
"pinia": "^2.0.25",
|
|
46
|
+
"screenfull": "^6.0.2",
|
|
47
|
+
"vue": "^3.2.45",
|
|
48
|
+
"vue-router": "^4.1.6",
|
|
49
|
+
"xlsx": "^0.18.5"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@iconify-json/ep": "^1.1.8",
|
|
53
|
+
"@rushstack/eslint-patch": "^1.2.0",
|
|
54
|
+
"@types/file-saver": "^2.0.5",
|
|
55
|
+
"@types/js-cookie": "^3.0.2",
|
|
56
|
+
"@types/jsdom": "^20.0.1",
|
|
57
|
+
"@types/node": "^18.11.9",
|
|
58
|
+
"@types/nprogress": "^0.2.0",
|
|
59
|
+
"@types/path-browserify": "^1.0.0",
|
|
60
|
+
"@types/qs": "^6.9.7",
|
|
61
|
+
"@vitejs/plugin-legacy": "^2.3.1",
|
|
62
|
+
"@vitejs/plugin-vue": "^3.2.0",
|
|
63
|
+
"@vitejs/plugin-vue-jsx": "^2.1.1",
|
|
64
|
+
"@vue/eslint-config-prettier": "^7.0.0",
|
|
65
|
+
"@vue/eslint-config-typescript": "^11.0.2",
|
|
66
|
+
"@vue/test-utils": "^2.2.4",
|
|
67
|
+
"@vue/tsconfig": "^0.1.3",
|
|
68
|
+
"cypress": "^11.1.0",
|
|
69
|
+
"eslint": "^8.28.0",
|
|
70
|
+
"eslint-plugin-cypress": "^2.12.1",
|
|
71
|
+
"eslint-plugin-vue": "^9.7.0",
|
|
72
|
+
"jsdom": "^20.0.3",
|
|
73
|
+
"npm-run-all": "^4.1.5",
|
|
74
|
+
"prettier": "^2.7.1",
|
|
75
|
+
"qs": "^6.11.0",
|
|
76
|
+
"sass": "^1.56.1",
|
|
77
|
+
"sass-loader": "^13.2.0",
|
|
78
|
+
"start-server-and-test": "^1.14.0",
|
|
79
|
+
"typescript": "~4.9.3",
|
|
80
|
+
"unplugin-auto-import": "^0.11.4",
|
|
81
|
+
"unplugin-icons": "^0.14.13",
|
|
82
|
+
"unplugin-vue-components": "^0.22.9",
|
|
83
|
+
"vite": "^3.2.4",
|
|
84
|
+
"vite-plugin-svg-icons": "^2.0.1",
|
|
85
|
+
"vitest": "^0.25.2",
|
|
86
|
+
"vue-tsc": "^1.0.9"
|
|
87
|
+
}
|
|
88
|
+
}
|