-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "vue-resizor",
"version": "0.1.0",
"type": "module",
"description": "🖱 A Vue component for resizing with dragging",
"repository": "[email protected]:rx-ts/vue.git",
"homepage": "https://github.com/rx-ts/vue/blob/master/packages/vue-resizor",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"funding": "https://opencollective.com/rxts",
"license": "MIT",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.esm.mjs",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
},
"./styles.*": "./lib/styles.*",
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"keywords": [
"vue-drag-resizable",
"vue-drag-resize",
"vue-drag-resizer",
"vue-draggable",
"vue-resizable",
"vue-resize",
"vue-resizer",
"vue"
],
"peerDependencies": {
"vue": "^2.7.0 || ^3.0.0"
},
"dependencies": {
"tslib": "^2.6.2"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}