Skip to content

Commit

Permalink
fix: exports
Browse files Browse the repository at this point in the history
  • Loading branch information
yamiteru committed May 17, 2024
1 parent 0c86209 commit 4b72e8b
Showing 1 changed file with 27 additions and 29 deletions.
56 changes: 27 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,35 +9,33 @@
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": {
"import": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
}
},
"encode": {
"import": {
"types": "./dist/encode.d.ts",
"default": "./dist/encode.js"
}
},
"decode": {
"import": {
"types": "./dist/decode.d.ts",
"default": "./dist/decode.js"
}
},
"estimate": {
"import": {
"types": "./dist/estimate.d.ts",
"default": "./dist/estimate.js"
}
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./types": {
"import": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
}
},
"./encode": {
"import": {
"types": "./dist/encode.d.ts",
"default": "./dist/encode.js"
}
},
"./decode": {
"import": {
"types": "./dist/decode.d.ts",
"default": "./dist/decode.js"
}
},
"./estimate": {
"import": {
"types": "./dist/estimate.d.ts",
"default": "./dist/estimate.js"
}
}
},
Expand Down

0 comments on commit 4b72e8b

Please sign in to comment.