From 93811163d4aaba7d7a95793c19ca97baeebad721 Mon Sep 17 00:00:00 2001 From: Mikkel Jakobsen Date: Wed, 4 Sep 2024 12:59:16 +0200 Subject: [PATCH] Trying to correct path to main entry point --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index da757fa..73fac62 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "json-to-zod-plus", "version": "1.0.1", "description": "Converts JSON objects or files into simple Zod schemas.", - "main": "index.js", + "main": "./dist/index.js", "scripts": { "build": "rimraf ./dist && tsc && copyfiles package.json ./dist && copyfiles LICENSE ./dist && copyfiles readme.md ./dist" },