-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.6 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
85
86
87
88
89
90
{
"name": "handy-uploader",
"version": "2.0.3",
"description": "A comprehensive Vue 3 file uploader component library with video thumbnail generation and multiple upload styles",
"main": "dist/handy-uploader.umd.js",
"module": "dist/handy-uploader.es.js",
"types": "dist/lib/index.d.ts",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/handy-uploader.es.js",
"require": "./dist/handy-uploader.umd.js"
}
},
"files": [
"dist"
],
"keywords": [
"vue",
"vue3",
"uploader",
"file-upload",
"video-thumbnail",
"drag-drop",
"vuetify",
"typescript",
"component-library"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alijahanpak/handy-uploader.git"
},
"homepage": "https://github.com/alijahanpak/handy-uploader#readme",
"bugs": {
"url": "https://github.com/alijahanpak/handy-uploader/issues"
},
"scripts": {
"dev": "storybook dev -p 6006",
"dev:vite": "vite",
"build": "run-p type-check build-lib && npm run build-types",
"build-lib": "vite build --mode lib",
"build-types": "vue-tsc --project tsconfig.build.json",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint --fix",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"prepare": "husky"
},
"peerDependencies": {
"vue": "^3.0.0",
"vuetify": "^3.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@mdi/font": "^7.4.47",
"@rushstack/eslint-patch": "^1.15.0",
"@storybook/addon-essentials": "^8.6.15",
"@storybook/addon-interactions": "^8.6.15",
"@storybook/addon-links": "^8.6.15",
"@storybook/blocks": "^8.6.15",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3-vite": "^8.6.15",
"@types/node": "^25.0.9",
"@vitejs/plugin-vue": "^6.0.3",
"@vitejs/plugin-vue-jsx": "^5.1.3",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.7.0",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.0",
"storybook": "^8.6.15",
"typescript": "~5.9.3",
"vite": "^6.3.5",
"vue": "^3.5.26",
"vue-tsc": "^3.2.2",
"vuetify": "^3.11.6"
}
}