Skip to content

Commit

Permalink
Make typescript happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
tufcode committed Aug 29, 2023
1 parent 138d34d commit c914e73
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paketto",
"version": "1.0.1-release",
"version": "1.0.2-release",
"author": "Tufan Meriç Uyguner",
"license": "MIT",
"keywords": [
Expand All @@ -18,9 +18,18 @@
"typings": "lib/index.d.ts",
"exports": {
".": {
"browser": "./dist/paketto.js",
"import": "./build/esm/index.mjs",
"require": "./build/cjs/index.js"
"browser": {
"default": "./dist/paketto.js",
"types": "./dist/paketto.d.ts"
},
"import": {
"default": "./build/esm/index.mjs",
"types": "./lib/index.d.ts"
},
"require": {
"default": "./build/cjs/index.js",
"types": "./lib/index.d.ts"
}
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit c914e73

Please sign in to comment.