From cd042cde66ae90881f7a1da2ca733fbb23020e8b Mon Sep 17 00:00:00 2001 From: Sean Coker <1030830+okcoker@users.noreply.github.com> Date: Sun, 23 Nov 2025 22:18:36 -0500 Subject: [PATCH] Fix import reference --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index fc732bd..6bcfadf 100644 --- a/package.json +++ b/package.json @@ -13,12 +13,12 @@ }, "type": "module", "files": ["dist"], - "main": "./dist/fits.umd.cjs", - "module": "./dist/fits.js", + "main": "./dist/index.cjs", + "module": "./dist/index.js", "exports": { ".": { - "import": "./dist/fits.js", - "require": "./dist/fits.umd.cjs" + "import": "./dist/index.js", + "require": "./dist/index.cjs" } }, "types": "./dist/index.d.ts",