forked from Yaxian/vue3-dropzone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.74 KB
/
package.json
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
{
"name": "crawlab-vue3-dropzone",
"version": "3.0.3",
"description": "",
"main": "dist/crawlab-vue3-dropzone.mjs",
"exports": {
".": {
"import": "./dist/crawlab-vue3-dropzone.mjs",
"require": "./dist/crawlab-vue3-dropzone.umd.cjs"
}
},
"unpkg": "dist/crawlab-vue3-dropzone.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:umd",
"build:umd": "vite build",
"test": "jest",
"release": "npm run build && np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yaxian/vue3-dropzone.git"
},
"keywords": [
"vue3",
"dropzone",
"file-upload",
"vue3-dropzone"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yaxian/vue3-dropzone/issues"
},
"homepage": "https://github.com/Yaxian/vue3-dropzone#readme",
"peerDependencies": {
"vue": ">=3.2.45"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/vue": "^6.6.1",
"@types/jest": "^26.0.20",
"@types/testing-library__jest-dom": "^5.9.5",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.45",
"@vue/test-utils": "^2.2.6",
"jest": "^26.6.3",
"jest-serializer-vue": "^2.0.2",
"jest-watch-typeahead": "^0.6.1",
"jsdom": "^20.0.3",
"np": "^7.4.0",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2",
"vite": "^4.0.1",
"vite-plugin-dts": "^1.7.1",
"vite-plugin-dynamic-import": "^1.2.4",
"vitest": "^0.26.1",
"vue": "^3.2.45"
},
"dependencies": {
"attr-accept": "^2.2.2",
"file-selector": "^0.2.4"
},
"files": [
"src",
"dist"
]
}