-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1016 Bytes
/
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
{
"name": "vue3-draggable-tzu",
"version": "1.2.1",
"description": "A simple draggable with vue3",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/vue3-draggable.umd.js",
"module": "./dist/vue3-draggable.es.js",
"exports": {
".": {
"import": "./dist/vue3-draggable.es.js",
"require": "./dist/vue3-draggable.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tzuyi0817/draggable"
},
"keywords": [
"vue3",
"drag"
],
"scripts": {
"serve": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:docs": "vite build",
"deploy": "gh-pages -d docs",
"preview": "vite preview"
},
"dependencies": {
"gh-pages": "^4.0.0",
"pinia": "^2.0.13",
"vue": "^3.2.25",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@types/node": "^17.0.25",
"@vitejs/plugin-vue": "^2.3.1",
"sass": "^1.50.1",
"typescript": "^4.5.4",
"vite": "^2.9.2",
"vue-tsc": "^0.29.8"
}
}