Skip to content

Commit

Permalink
Fixed package.json exports
Browse files Browse the repository at this point in the history
  • Loading branch information
divmgl committed Jan 19, 2025
1 parent 005954e commit 880e1ae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"name": "jackd",
"version": "3.0.0",
"version": "3.0.1",
"description": "Modern beanstalkd client for Node.js",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
"default": "./dist/esm/index.js"
}
},
"main": "./dist/cjs/index.js",
Expand Down

0 comments on commit 880e1ae

Please sign in to comment.