-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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": "vue3-grid-layout-next",
"version": "1.0.9",
"type": "module",
"description": "A draggable and resizable grid layout, as a Vue component.",
"keywords": [
"grid",
"vuejs",
"drag",
"draggable",
"resize",
"resizable",
"fluid",
"responsive"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xhlife/vue3-grid-layout.git"
},
"author": "",
"homepage": "https://github.com/xhlife/vue3-grid-layout",
"main": "dist/vue3-grid-layout.js",
"unpkg": "dist/vue3-grid-layout.umd.cjs",
"typings": "dist/components/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"@interactjs/actions": "^1.10.17",
"@interactjs/auto-scroll": "^1.10.17",
"@interactjs/auto-start": "^1.10.17",
"@interactjs/dev-tools": "^1.10.17",
"@interactjs/interact": "^1.10.17",
"@interactjs/modifiers": "^1.10.17",
"@interactjs/core": "^1.10.17",
"@interactjs/utils": "^1.10.17",
"element-resize-detector": "^1.2.4",
"interactjs": "^1.10.17",
"mitt": "^3.0.0"
},
"devDependencies": {
"@types/element-resize-detector": "^1.1.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.30.6",
"@vitejs/plugin-vue": "^3.2.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"prettier": "^2.6.1",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-plugin-dts": "^3.5.1",
"vite-plugin-libcss": "^1.0.5",
"vue": "^3.2.41",
"vue-tsc": "^1.0.9"
}
}