vue-finder-senior 2.7.2
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 +247 -0
- package/dist/features.js +17 -0
- package/dist/locales/ar.js +105 -0
- package/dist/locales/de.js +105 -0
- package/dist/locales/en.js +105 -0
- package/dist/locales/fa.js +105 -0
- package/dist/locales/fr.js +106 -0
- package/dist/locales/he.js +105 -0
- package/dist/locales/hi.js +105 -0
- package/dist/locales/nl.js +105 -0
- package/dist/locales/pl.js +105 -0
- package/dist/locales/ru.js +105 -0
- package/dist/locales/sv.js +105 -0
- package/dist/locales/tr.js +105 -0
- package/dist/locales/zhCN.js +105 -0
- package/dist/locales/zhTW.js +105 -0
- package/dist/style.css +9 -0
- package/dist/vuefinder.cjs +9 -0
- package/dist/vuefinder.js +5716 -0
- package/package.json +62 -0
package/package.json
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
{
|
2
|
+
"name": "vue-finder-senior",
|
3
|
+
"version": "2.7.2",
|
4
|
+
"description": "VueFinderSenior is a file manager component for vue3. And there are multiple adaptable backends available . like Python PHP Go Rust",
|
5
|
+
"type": "module",
|
6
|
+
"files": [
|
7
|
+
"dist"
|
8
|
+
],
|
9
|
+
"main": "./dist/vuefinder.cjs",
|
10
|
+
"module": "./dist/vuefinder.js",
|
11
|
+
"scripts": {
|
12
|
+
"dev": "vite",
|
13
|
+
"build": "vite build",
|
14
|
+
"preview": "vite preview"
|
15
|
+
},
|
16
|
+
"homepage": "https://github.com/15169670031/vue-finder-senior",
|
17
|
+
"keywords": [
|
18
|
+
"vue",
|
19
|
+
"vue-finder-senior",
|
20
|
+
"vueFinderSenior",
|
21
|
+
"file manager",
|
22
|
+
"file plugin",
|
23
|
+
"file explorer",
|
24
|
+
"finder",
|
25
|
+
"vue3文件管理",
|
26
|
+
"资源管理",
|
27
|
+
"文件管理",
|
28
|
+
"文件插件",
|
29
|
+
"文件管理器"
|
30
|
+
],
|
31
|
+
"repository": {
|
32
|
+
"type": "git",
|
33
|
+
"url": "https://github.com/15169670031/vue-finder-senior.git"
|
34
|
+
},
|
35
|
+
"author": {
|
36
|
+
"name": "yiwen",
|
37
|
+
"mail": "1620871636@qq.com"
|
38
|
+
},
|
39
|
+
"license": "MIT",
|
40
|
+
"devDependencies": {
|
41
|
+
"@types/node": "^18.7.1",
|
42
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
43
|
+
"autoprefixer": "^10.4.8",
|
44
|
+
"postcss": "^8.4.16",
|
45
|
+
"rollup-plugin-copy": "^3.5.0",
|
46
|
+
"sass": "^1.75.0",
|
47
|
+
"tailwindcss": "^3.1.8",
|
48
|
+
"vite": "^5.0.12",
|
49
|
+
"vite-svg-loader": "^5.1.0"
|
50
|
+
},
|
51
|
+
"dependencies": {
|
52
|
+
"@uppy/core": "^3.12.0",
|
53
|
+
"@uppy/locales": "^3.5.3",
|
54
|
+
"@uppy/xhr-upload": "^3.6.7",
|
55
|
+
"cropperjs": "^1.5.12",
|
56
|
+
"dragselect": "^3.0.5",
|
57
|
+
"mitt": "^3.0.0",
|
58
|
+
"overlayscrollbars": "^2.10.0",
|
59
|
+
"vanilla-lazyload": "^17.8.3",
|
60
|
+
"vue": "3.5.10"
|
61
|
+
}
|
62
|
+
}
|