From 315e9a472caacc7a8c8accfb27b41608b7a81cb5 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Wed, 4 Jun 2025 21:47:17 -0300 Subject: [PATCH] expose signer module. --- jsr.json | 3 ++- package.json | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/jsr.json b/jsr.json index f7d0252..ef8b781 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@nostr/tools", - "version": "2.13.3", + "version": "2.14.0", "exports": { ".": "./index.ts", "./core": "./core.ts", @@ -44,5 +44,6 @@ "./nip99": "./nip99.ts", "./fakejson": "./fakejson.ts", "./utils": "./utils.ts" + "./signer": "./signer.ts" } } diff --git a/package.json b/package.json index 9f1e979..2db634d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "type": "module", "name": "nostr-tools", - "version": "2.13.3", + "version": "2.14.0", "description": "Tools for making a Nostr client.", "repository": { "type": "git", @@ -218,6 +218,11 @@ "require": "./lib/cjs/fakejson.js", "types": "./lib/types/fakejson.d.ts" }, + "./signer": { + "import": "./lib/esm/signer.js", + "require": "./lib/cjs/signer.js", + "types": "./lib/types/signer.d.ts" + }, "./utils": { "import": "./lib/esm/utils.js", "require": "./lib/cjs/utils.js",