Skip to content

Commit

Permalink
fix: add support for deno and worker conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
stipsan committed Jan 9, 2023
1 parent 0b82924 commit 5a1a263
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "get-it",
"version": "8.0.2",
"version": "8.0.3-esm.0",
"description": "Generic HTTP request library for node, browsers and workers",
"keywords": [
"request",
Expand All @@ -27,6 +27,8 @@
"require": "./dist/index.browser.cjs",
"import": "./dist/index.browser.js"
},
"deno": "./dist/index.browser.js",
"worker": "./dist/index.browser.js",
"source": "./src/index.ts",
"require": "./dist/index.cjs",
"node": {
Expand All @@ -43,6 +45,8 @@
"require": "./dist/middleware.browser.cjs",
"import": "./dist/middleware.browser.js"
},
"deno": "./dist/middleware.browser.js",
"worker": "./dist/middleware.browser.js",
"source": "./src/middleware.ts",
"require": "./dist/middleware.cjs",
"node": {
Expand Down

0 comments on commit 5a1a263

Please sign in to comment.