Skip to content

Commit

Permalink
fix: dist/ not necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
charlypoly committed Mar 5, 2024
1 parent a479631 commit 967f19c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "@defer/client",
"version": "2.2.1",
"description": "Zero infrastructure NodeJS background jobs",
"main": "dist/index.js",
"module": "dist/index.js",
"main": "index.js",
"module": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/defer-run/defer.client.git"
Expand Down Expand Up @@ -41,37 +41,37 @@
"ts-node": "^10.9.2",
"typescript": "^5.3"
},
"typings": "dist/index.d.ts",
"typings": "index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
"definition": "index.d.ts"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.js"
"types": "./index.d.cts",
"default": "./index.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
"types": "./index.d.ts",
"default": "./index.js"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
"types": "./index.d.ts",
"default": "./index.js"
}
},
"./next": {
"require": {
"types": "./dist/next/index.d.cts",
"default": "./dist/next/index.js"
"types": "./next/index.d.cts",
"default": "./next/index.js"
},
"import": {
"types": "./dist/next/index.d.ts",
"default": "./dist/next/index.js"
"types": "./next/index.d.ts",
"default": "./next/index.js"
},
"default": {
"types": "./dist/next/index.d.ts",
"default": "./dist/next/index.js"
"types": "./next/index.d.ts",
"default": "./next/index.js"
}
},
"./package.json": "./package.json"
Expand All @@ -90,7 +90,7 @@
"/tests/",
"node_modules/",
"coverage/",
"dist/",
"",
"package-lock.json"
],
"overrides": [
Expand Down

0 comments on commit 967f19c

Please sign in to comment.