-
Notifications
You must be signed in to change notification settings - Fork 561
/
package.json
73 lines (73 loc) · 1.89 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
{
"name": "vue-draggable-resizable",
"version": "3.0.0-beta.2",
"author": "Maurizio Bonani <maurizio.bonani@gmail.com>",
"private": false,
"description": "Vue3 Component for resizable and draggable elements",
"type": "module",
"files": [
"dist"
],
"main": "dist/vue-draggable-resizable.umd.cjs",
"module": "dist/vue-draggable-resizable.js",
"unpkg": "dist/vue-draggable-resizable.umd.cjs",
"browser": {
"./sfc": "src/vue-draggable-resizable.vue"
},
"exports": {
".": {
"import": "./dist/vue-draggable-resizable.js",
"require": "./dist/vue-draggable-resizable.umd.cjs"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"cypress": "npx cypress open",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@babel/core": "^7.18.6",
"@histoire/plugin-vue": "^0.17.6",
"@vitejs/plugin-vue": "^4.3.4",
"@vitest/ui": "^0.15.1",
"@vue/test-utils": "^2.2.7",
"babel-loader": "^8.2.5",
"cypress": "^13.6.2",
"histoire": "^0.17.6",
"jsdom": "^19.0.0",
"vite": "^4.4.9",
"vitest": "^0.28.4",
"vue": "^3.2.25",
"vue-loader": "^16.8.3"
},
"peerDependencies": {
"vue": "^3.2.25"
},
"repository": {
"type": "git",
"url": "https://github.com/mauricius/vue-draggable-resizable.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mauricius/vue-draggable-resizable/issues"
},
"homepage": "https://github.com/mauricius/vue-draggable-resizable",
"keywords": [
"vue",
"component",
"dragabble",
"resizable"
]
}