-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.55 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vue-draggify",
"description": "Vue Drag and Resize Component",
"version": "0.0.10",
"author": {
"name": "Kieu Minh Canh",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/kieuminhcanh",
"repository": {
"type": "git",
"url": "git+https://github.com/kieuminhcanh/vue-draggify.git",
"directory": "src"
},
"keywords": [
"vue",
"vuetify",
"drag",
"draggable",
"resize",
"resizable",
"vue drag",
"vue draggable",
"vue resize",
"vue resizable",
"vue drag and resize",
"vue draggable and resizable",
"vue drag and resize component",
"vue draggable and resizable component",
"vue drag and resize component for vuetify"
],
"files": [
"dist"
],
"type": "module",
"main": "./dist/vue-draggify.umd.cjs",
"jsdelivr": "./dist/vue-draggify.js",
"unpkg": "./dist/vue-draggify.js",
"types": "./dist/index.d.ts",
"styles": "./dist/style.css",
"module": "./dist/vue-draggify.js",
"exports": {
".": {
"import": "./dist/vue-draggify.js",
"require": "./dist/vue-draggify.umd.cjs",
"types": "./dist/types/index.d.ts"
},
"./styles": {
"default": "./dist/style.css"
},
"./types": {
"default": "./dist/types/index.d.ts"
},
"./nuxt": {
"types": "./dist/nuxt/types.d.ts",
"import": "./dist/nuxt/module.mjs",
"require": "./dist/nuxt/module.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"*",
"dist/*"
]
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"build:nuxt": "nuxt-module-build nuxt --outDir ../dist/nuxt",
"build:web": "vue-tsc && vite build --config vite.web.config.ts",
"build:all": "npm run build && npm run build:nuxt && npm run build:web",
"preview": "vite preview --config=vite.web.config.ts"
},
"dependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@nuxt/kit": "^3.3.3",
"@nuxt/module-builder": "^0.2.1",
"@nuxt/schema": "^3.3.3",
"@vitejs/plugin-vue": "^4.1.0",
"@vueuse/components": "^10.0.2",
"@vueuse/core": "^10.0.2",
"@vueuse/motion": "^2.0.0-beta.12",
"deepmerge": "^4.3.1",
"sass": "^1.62.0",
"typescript": "^5.0.3",
"vite": "^4.2.1",
"vite-plugin-dts": "^2.2.0",
"vue-tsc": "^1.2.0",
"vuetify": "^3.1.13"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"publishConfig": {
"access": "public"
},
"vetur": {
"tags": "dist/json/tags.json",
"attributes": "dist/json/attributes.json"
}
}