From 7adb81f82cbdc921349b3e52e0118230e47fb79c Mon Sep 17 00:00:00 2001 From: Dylan Fiedler Date: Mon, 6 May 2024 10:21:20 -0600 Subject: [PATCH] fix(exports): add back require and browser exports Looks like these were unintentionally removed? --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 939af02a..b4bac22c 100644 --- a/package.json +++ b/package.json @@ -17,10 +17,14 @@ }, "./mjs": { "import": "./lib/mjs/index.js", + "require": "./lib/cjs/index.js", + "browser": "./bundles/web.bundle.min.js", "types": "./lib/types/index.d.ts" }, ".": { "import": "./lib/mjs/index.js", + "require": "./lib/cjs/index.js", + "browser": "./bundles/web.bundle.min.js", "types": "./lib/types/index.d.ts" } },