Skip to content

Commit

Permalink
fix: exported paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Lordfirespeed committed Aug 27, 2024
1 parent 3b88b94 commit 479df39
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@
"name": "@otterhttp/session",
"description": "Simple promise-based session utility for otterhttp",
"keywords": ["otterhttp", "session", "promise"],
"main": "./lib/index.js",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./lib/index.js"
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "lib/session.d.ts",
"types": "./dist/session.d.ts",
"files": ["dist"],
"sideEffects": false,
"scripts": {
Expand Down

0 comments on commit 479df39

Please sign in to comment.