forked from jbaysolutions/vue-grid-layout
-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "vue-grid-layout-v3",
"version": "3.1.2",
"description": "A draggable and resizable grid layout, as a Vue component.",
"keywords": [
"grid",
"vuejs",
"drag",
"draggable",
"resize",
"resizable",
"fluid",
"responsive"
],
"repository": {
"type": "git",
"url": "https://github.com/merfais/vue-grid-layout-v3.git"
},
"author": "coffeebi <[email protected]>",
"homepage": "https://github.com/merfais/vue-grid-layout-v3",
"type": "module",
"main": "./dist/vue-grid-layout-v3.umd.js",
"module": "./dist/vue-grid-layout-v3.js",
"unpkg": "./dist/vue-grid-layout-v3.umd.js",
"exports": {
"import": "./dist/vue-grid-layout-v3.js",
"require": "./dist/vue-grid-layout-v3.cjs"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix"
},
"dependencies": {
"@interactjs/actions": "^1.10.27",
"@interactjs/auto-scroll": "^1.10.27",
"@interactjs/auto-start": "^1.10.27",
"@interactjs/dev-tools": "^1.10.27",
"@interactjs/interact": "^1.10.27",
"@interactjs/modifiers": "^1.10.27",
"element-resize-detector": "^1.2.4",
"mitt": "^3.0.1"
},
"devDependencies": {
"@rollup/plugin-eslint": "^9.0.5",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-vue": "^9.23.0",
"vite": "^5.3.1",
"vite-plugin-lib-inject-css": "^2.1.1",
"vue": "^3.4.29",
"vue-eslint-parser": "^9.4.3"
}
}