From d3fc4734b42780df815f90be279aa47947fd5467 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Sat, 26 Oct 2024 13:10:26 -0300 Subject: [PATCH] export missing modules. --- jsr.json | 5 ++++- package.json | 7 ++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/jsr.json b/jsr.json index 08f195f..30ac5b9 100644 --- a/jsr.json +++ b/jsr.json @@ -20,6 +20,7 @@ "./nip10": "./nip10.ts", "./nip11": "./nip11.ts", "./nip13": "./nip13.ts", + "./nip17": "./nip17.ts", "./nip18": "./nip18.ts", "./nip19": "./nip19.ts", "./nip21": "./nip21.ts", @@ -34,6 +35,8 @@ "./nip46": "./nip46.ts", "./nip49": "./nip49.ts", "./nip57": "./nip57.ts", + "./nip58": "./nip58.ts", + "./nip59": "./nip59.ts", "./nip75": "./nip75.ts", "./nip94": "./nip94.ts", "./nip96": "./nip96.ts", @@ -42,4 +45,4 @@ "./fakejson": "./fakejson.ts", "./utils": "./utils.ts" } -} \ No newline at end of file +} diff --git a/package.json b/package.json index 962456d..b427c32 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "type": "module", "name": "nostr-tools", - "version": "2.9.3", + "version": "2.9.4", "description": "Tools for making a Nostr client.", "repository": { "type": "git", @@ -103,6 +103,11 @@ "require": "./lib/cjs/nip13.js", "types": "./lib/types/nip13.d.ts" }, + "./nip17": { + "import": "./lib/esm/nip17.js", + "require": "./lib/cjs/nip17.js", + "types": "./lib/types/nip17.d.ts" + }, "./nip18": { "import": "./lib/esm/nip18.js", "require": "./lib/cjs/nip18.js",