Skip to content

Commit

Permalink
fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
matubu committed Feb 24, 2023
1 parent 29b13a1 commit 76d7083
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"name": "@speed-highlight/core",
"version": "1.1.9",
"description": "🌈 Light, fast, and easy to use, dependencies free javascript syntax highlighter, with automatic language detection",
"main": "dist/node/index.js",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./index.js": "./dist/index.js",
"./detect.js": "./dist/detect.js",
"./terminal.js": "./dist/terminal.js",

"./cjs/index.js": "./dist/index.js",
"./cjs/detect.js": "./dist/detect.js",
"./cjs/terminal.js": "./dist/terminal.js"
"./cjs/index.js": "./dist/node/index.js",
"./cjs/detect.js": "./dist/node/detect.js",
"./cjs/terminal.js": "./dist/node/terminal.js"
},
"directories": {
"example": "examples"
Expand Down

0 comments on commit 76d7083

Please sign in to comment.