Skip to content

Commit

Permalink
refactor: simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
tronikelis committed Dec 12, 2024
1 parent 0e4ace3 commit 2b3c905
Showing 1 changed file with 10 additions and 25 deletions.
35 changes: 10 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,23 @@
"version": "5.0.1",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./cache": {
"import": {
"types": "./dist/cache.d.ts",
"default": "./dist/cache.js"
},
"require": {
"types": "./dist/cache.d.cts",
"default": "./dist/cache.cjs"
}
"types": "./dist/cache.d.ts",
"import": "./dist/cache.js",
"require": "./dist/cache.cjs"
},
"./extra": {
"import": {
"types": "./dist/extra.d.ts",
"default": "./dist/extra.js"
},
"require": {
"types": "./dist/extra.d.cts",
"default": "./dist/extra.cjs"
}
"types": "./dist/extra.d.ts",
"import": "./dist/extra.js",
"require": "./dist/extra.cjs"
}
},
"files": [
Expand Down

0 comments on commit 2b3c905

Please sign in to comment.