From e4e10d34c79804b8393d2cf5dab47b30cf5b45b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20=C4=8Carneck=C3=BD?= Date: Mon, 23 Feb 2026 14:07:19 +0100 Subject: [PATCH] Add explicit types and import conditions to exports (#173) --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e5b04b2..407a08f 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,10 @@ "license": "MIT", "sideEffects": false, "exports": { - "./base58": "./base58/index.js" + "./base58": { + "types": "./base58/index.d.ts", + "import": "./base58/index.js" + } }, "devDependencies": { "fast-check": "^4.3.0", -- 2.51.2