From 2b7752ccf1ea9d7363878ed6c2becd7b17275726 Mon Sep 17 00:00:00 2001 From: Griffen Fargo <3642037+gfargo@users.noreply.github.com> Date: Thu, 14 May 2026 18:58:58 -0400 Subject: [PATCH] chore: exclude dist/test and dist/storybook from npm tarball Tighten the `files` field to list only the public entry points so that compiled test output (~88 kB) and the storybook binary are not shipped to consumers. Co-Authored-By: Claude Sonnet 4.6 --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 511b971..e8618bd 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,9 @@ "test:fix": "yarn lint:fix && ava --update-snapshots" }, "files": [ - "dist" + "dist/index.js", + "dist/index.d.ts", + "dist/enhanced-select-input" ], "dependencies": { "ink": "^6.0.0",