From 288fbf8ada0432ba8059fed14779808a89fe3a84 Mon Sep 17 00:00:00 2001 From: Kubudak90 Date: Sun, 15 Mar 2026 03:55:36 +0300 Subject: [PATCH] fix: add files field to package.json for npm publishing The package was missing a 'files' field, which could cause npm to not include the built dist/ directory when publishing. This ensures the compiled output is properly included in the published package. Fixes #1 --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 13760ff..36c9d15 100644 --- a/package.json +++ b/package.json @@ -36,5 +36,10 @@ "typescript": "^5.7.0", "vite": "^6.0.0", "vitest": "^2.1.0" - } + }, + "files": [ + "dist/", + "LICENSE", + "README.md" + ] }