From e89495d1a3043f0101b9644928f6e677d7049db6 Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Fri, 24 Nov 2023 20:09:45 -0800 Subject: [PATCH] Fix package.json issue --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6769423..23daf45 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "canvas-hypertxt", - "version": "1.0.2", + "version": "1.0.3", "description": "The fastest way to layout wrapped text on a HTML5 canvas", "sideEffects": false, "type": "module", @@ -14,7 +14,8 @@ "types": "dist/ts/src/index.d.ts", "exports": { "import": "./dist/js/index.js", - "require": "./dist/cjs/index.cjs" + "require": "./dist/cjs/index.cjs", + "types": "./dist/ts/src/index.d.ts" }, "scripts": { "build": "node build.cjs && tsc -p tsconfig.types.json",