-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "vue-image-zoomer",
"version": "2.4.3",
"description": "Repsonsive image zoom component for Vue.js 3, that also works on touch devices. Legacy versions available for Vue 2.",
"keywords": [
"vue",
"vue3",
"image",
"zoom",
"zoomer",
"magnify",
"product",
"webp",
"lazyload",
"typescript"
],
"main": "./dist/vue-image-zoomer.umd.js",
"module": "./dist/vue-image-zoomer.es.js",
"types": "./dist/vue-image-zoomer.d.ts",
"export": {
".": {
"import": "./dist/vue-image-zoomer.es.js",
"require": "./dist/vue-image-zoomer.umd.js"
}
},
"author": "Samuel Jones <[email protected]>",
"license": "MIT",
"homepage": "https://samueljon.es/vue-image-zoomer",
"repository": {
"type": "git",
"url": "[email protected]:samjonesigd/vue-image-zoom.git"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --outFile dist/vue-image-zoomer.d.ts",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.2.25"
},
"devDependencies": {
"@babel/types": "^7.25.2",
"@vitejs/plugin-vue": "^2.3.3",
"vite": "^2.9.9",
"vue-tsc": "^2.0.19"
}
}