Skip to content

Commit

Permalink
fix: improve hybrid exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Sep 21, 2024
1 parent 32f169a commit cc622b1
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions packages/multiple-select-vanilla/package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
{
"name": "multiple-select-vanilla",
"description": "This lib allows you to select multiple elements with checkboxes",
"version": "3.3.3",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/multiple-select.js",
"require": "./dist/multiple-select.cjs",
"node": "./dist/multiple-select.cjs"
},
"./dist/browser/*": "./dist/browser/*",
"./dist/locales/*": "./dist/locales/*",
"./dist/styles/*": "./dist/styles/*",
"./package.json": "./package.json"
},
"module": "./dist/multiple-select.js",
"main": "./dist/multiple-select.cjs",
"keywords": [
"checkboxes",
"multiple-select",
"single-select",
"select"
],
"author": {
"name": "zhixin wen",
"email": "[email protected]",
Expand All @@ -27,15 +19,29 @@
}
],
"homepage": "https://github.com/ghiscoding/multiple-select-vanilla",
"bugs": {
"url": "https://github.com/ghiscoding/multiple-select-vanilla/issues"
},
"license": "MIT",
"main": "./dist/multiple-select.cjs",
"module": "./dist/multiple-select.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/multiple-select.js",
"require": "./dist/multiple-select.cjs"
},
"./dist/browser/*": "./dist/browser/*",
"./dist/locales/*": "./dist/locales/*",
"./dist/styles/*": "./dist/styles/*",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ghiscoding/multiple-select-vanilla.git",
"directory": "packages/multiple-select-vanilla"
},
"bugs": {
"url": "https://github.com/ghiscoding/multiple-select-vanilla/issues"
},
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit cc622b1

Please sign in to comment.