From bff3b391147a93b634dd90ab4c925c5998b7bbc9 Mon Sep 17 00:00:00 2001 From: Francois Best Date: Tue, 22 Dec 2020 20:28:05 +0100 Subject: [PATCH] fix: Explicitly declare path to TS types This lets npmjs.com know that the project has types, and shows a helpful TypeScript icon. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index bcfb37d..94ae596 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "0.0.0-semantically-released", "description": "Serialized AES-GCM 256 encryption, decryption and key management in the browser & Node.js", "main": "dist/index.js", + "types": "dist/index.d.ts", "bin": { "cloak": "./dist/cli.js" },