Skip to content

Commit

Permalink
fix(deps): module exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mkosir committed Jan 11, 2024
1 parent 072ec4d commit 6faf717
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@
"description": "Easily apply tilt hover effect on React components - lightweight/zero dependencies",
"version": "0.0.0-development",
"type": "module",
"main": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"//exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
Expand Down

0 comments on commit 6faf717

Please sign in to comment.