-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (83 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (83 loc) · 1.83 KB
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
{
"name": "vue-cloud-upload",
"version": "1.7.4",
"description": "基于vue+elementui的通用云上传组件,无缝衔接腾讯云,华为云,阿里云等对象存储平台,开箱即用",
"private": false,
"type": "module",
"main": "./dist/cloud-upload.umd.js",
"module": "./dist/cloud-upload.es.js",
"homepage": "https://github.com/Leaderxin/cloud-upload",
"repository": {
"type": "git",
"url": "https://github.com/Leaderxin/cloud-upload.git"
},
"exports": {
".": {
"import": "./dist/cloud-upload.es.js",
"require": "./dist/cloud-upload.umd.js"
}
},
"files": [
"dist",
"README.md",
"*.scss"
],
"sideEffects": [
"*.scss",
"*.css"
],
"dependencies": {
"nanoid": "^5.1.6"
},
"peerDependencies": {
"cos-js-sdk-v5": "^1.10.1",
"esdk-obs-browserjs": "^3.25.6",
"ali-oss": "^6.23.0",
"element-ui": "^2.13.2",
"vue": "^2.6.10"
},
"peerDependenciesMeta": {
"cos-js-sdk-v5": {
"optional": true
},
"esdk-obs-browserjs": {
"optional": true
},
"ali-oss":{
"optional": true
}
},
"devDependencies": {
"@vitejs/plugin-vue2": "^2.3.3",
"element-ui": "^2.13.2",
"rollup-plugin-visualizer": "^6.0.3",
"sass": "^1.92.1",
"sass-loader": "^16.0.5",
"vite": "^6.0.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"prepublishOnly": "npm run build",
"prepack": "node scripts/generate-changelog.js"
},
"keywords": [
"vue-upload",
"cloud-upload",
"vue-upload-component",
"upload",
"cos-upload",
"obs-upload",
"oss-upload",
"cos-js-sdk-v5",
"esdk-obs-browserjs",
"ali-oss"
],
"author": "Leaderxin",
"license": "Apache-2.0",
"volta": {
"node": "20.19.4"
}
}