Skip to content

Commit

Permalink
Fix filenames in manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
mfal committed Oct 31, 2023
1 parent 465d717 commit 489fc2f
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 @@ -9,18 +9,18 @@
"email": "[email protected]"
},
"homepage": "https://github.com/mittwald/react-use-promise#readme",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"type": "module",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"compile": "tsup src/index.ts --format cjs,esm --dts --clean",
"compile": "tsup src/index.ts --format esm,cjs --dts --clean",
"compile:watch": "yarn compile --watch src",
"format": "yarn format:base --write",
"format:base": "prettier $@ '**/*.{ts,tsx,yaml,yml,json,md,mdx}'",
Expand Down

0 comments on commit 489fc2f

Please sign in to comment.