Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
xnimorz committed Nov 29, 2022
1 parent 9bf5fe6 commit 1724b98
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
@@ -1,10 +1,10 @@
{
"name": "use-debounce",
"version": "9.0.0",
"version": "9.0.1",
"description": "Debounce hook for react",
"type": "module",
"source": "src/index.ts",
"main": "dist/index.js",
"main": "dist/index.cjs",
"module": "dist/index.module.js",
"esmodule": "dist/index.modern.js",
"umd:main": "dist/index.umd.js",
Expand All @@ -13,13 +13,13 @@
"node": {
"types": "./dist/index.d.ts",
"module": "./dist/index.module.js",
"require": "./dist/index.js",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"browser": {
"types": "./dist/index.d.ts",
"import": "./dist/index.module.js",
"require": "./dist/index.js"
"require": "./dist/index.cjs"
},
"default": "./dist/index.module.js"
},
Expand Down

0 comments on commit 1724b98

Please sign in to comment.