Skip to content

Commit

Permalink
chore: tweak package exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jul 26, 2024
1 parent c43d817 commit 856286d
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,19 @@
"version": "5.10.1",
"description": "A lightning fast JavaScript grid/spreadsheet",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "index.d.ts",
"typesVersions": {
">=4.2": {
"*": [
"dist/types/*"
]
}
},
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./dist/styles/*": "./dist/styles/*",
"./package.json": "./package.json"
},
"module": "./dist/esm/index.js",
"directories": {
"example": "examples",
"test": "tests"
Expand Down Expand Up @@ -113,4 +107,4 @@
"engines": {
"node": ">=18.0.0"
}
}
}

0 comments on commit 856286d

Please sign in to comment.