Skip to content

Commit

Permalink
fix: repair exports in package.json for node
Browse files Browse the repository at this point in the history
  • Loading branch information
yosipy committed Sep 24, 2024
1 parent fcf9f1a commit 0c84ebd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
"module": "./dist/index.js",
"types": "./dist/lib/index.d.ts",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
"types": "./dist/lib/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"node": "./dist/index.umd.cjs",
"default": "./dist/index.umd.cjs"
},
"files": [
"dist"
Expand Down

0 comments on commit 0c84ebd

Please sign in to comment.