-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.59 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
{
"name": "@dafcoe/vue-file-uploader",
"version": "0.0.4",
"description": "File uploader built using vue3. It allows multiple file selection / drag and drop",
"keywords": [
"file upload",
"drag and drop",
"vue",
"vue3",
"javascript",
"typescript"
],
"homepage": "https://github.com/dafcoe/vue-file-uploader",
"bugs": {
"url": "https://github.com/dafcoe/vue-file-uploader/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Daf Coe",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/dafcoe/vue-file-uploader"
},
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./style.css": "./dist/style.css"
},
"types": "./dist/modules/VueFileUploaderPlugin.d.ts",
"scripts": {
"build:dev": "vite",
"build:prod": "rm -rf dist && vue-tsc --noEmit && vite build",
"server:start": "cd src/server && php -S localhost:9000",
"server:clean": "rm -rf src/server/uploads/*",
"lint": "eslint --ext .js,.ts,.vue src"
},
"dependencies": {
"nanoid": "^3.2.0",
"vue": "^3.2.25"
},
"devDependencies": {
"@types/node": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vitejs/plugin-vue": "^2.0.0",
"eslint": "^8.8.0",
"eslint-plugin-vue": "^8.4.1",
"rollup-plugin-typescript2": "^0.31.2",
"sass": "^1.49.7",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vue-tsc": "^0.29.8"
},
"private": false
}