Skip to content

Commit

Permalink
Update exports field in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
inokawa committed Aug 8, 2023
1 parent 4c85ea8 commit 63506a6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@
"description": "remark plugin to compile markdown to docx (Microsoft Word, Office Open XML).",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"require": "./lib/index.js",
"import": "./lib/index.mjs"
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
}
},
"types": "lib/index.d.ts",
"files": [
"lib"
],
Expand Down

0 comments on commit 63506a6

Please sign in to comment.