Skip to content

Commit

Permalink
Merge pull request #1 from r0binary/fix/adjust-paths-in-packagejson
Browse files Browse the repository at this point in the history
fix: adjust paths in package.json
  • Loading branch information
proohit authored Feb 3, 2023
2 parents a00f167 + ae69ab7 commit f21c9d8
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 @@ -36,15 +36,15 @@
"access": "public"
},
"type": "module",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"main": "lib/cjs/src/index.js",
"module": "lib/esm/src/index.js",
"types": "lib/types/src/index.d.ts",
"files": [
"lib"
],
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
"import": "./lib/esm/src/index.js",
"require": "./lib/cjs/src/index.js"
},
"dependencies": {
"axios": "^0.27.2",
Expand Down

0 comments on commit f21c9d8

Please sign in to comment.