From f61ce537b36f1ffdc8244723f400b5cddea06a80 Mon Sep 17 00:00:00 2001 From: bjarneo Date: Tue, 9 Apr 2024 20:56:20 +0200 Subject: [PATCH] fix: all the exports --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d2ed50c..0e654f4 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,13 @@ { "name": "extract-domain", - "version": "5.0.1", + "version": "5.0.2", "description": "Extract domain name from URL", "type": "module", "source": "index.ts", "exports": { - "types": "./dist/index.d.ts" + "types": "./dist/index.d.ts", + "main": "./dist/extract-domain.module.js", + "default": "./dist/extract-domain.module.js" }, "main": "./dist/extract-domain.module.js", "module": "./dist/extract-domain.module.js",