Skip to content

Commit

Permalink
Fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricius committed Jan 17, 2024
1 parent 3fc0c74 commit 1df0e1a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,20 @@
"files": [
"dist"
],
"main": "dist/VueDraggableResizable.umd.cjs",
"module": "dist/VueDraggableResizable.js",
"unpkg": "dist/VueDraggableResizable.umd.cjs",
"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/VueDraggableResizable.js",
"require": "./dist/VueDraggableResizable.umd.cjs"
"import": "./dist/vue-draggable-resizable.js",
"require": "./dist/vue-draggable-resizable.umd.cjs"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
Expand Down

0 comments on commit 1df0e1a

Please sign in to comment.