From 43388aa06d1ca98e42506675c2bf416952877274 Mon Sep 17 00:00:00 2001 From: PythonCoderAS <13932583+PythonCoderAS@users.noreply.github.com> Date: Fri, 17 Dec 2021 22:42:09 -0500 Subject: [PATCH] Include the main entry point, duh! --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8e29d04..bb22ac4 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,10 @@ { "name": "array-string-map", - "version": "1.0.0", + "version": "1.0.1", "description": "A Map that internally encodes Arrays to strings so that two Arrays with the same elements will return the same item.", "type": "module", + "main": "arrayStringMap.js", + "types": "arrayStringMap.d.ts", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" },