From d05b738c7669f10644c00f565c606266e5504182 Mon Sep 17 00:00:00 2001 From: diegomarzaa Date: Mon, 5 Jan 2026 19:12:53 +0100 Subject: [PATCH] fix: add tn-fzf to package.json bin for global installation The tn-fzf script was present in bin/ but not registered in package.json, so it wasn't being linked globally when running 'npm link'. This fix adds tn-fzf to the bin section so users get both commands: - tn: Main CLI interface - tn-fzf: Interactive fzf-based task browser --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 7c38897..bf91257 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,8 @@ "description": "Command-line interface for TaskNotes with interactive mode and real-time NLP preview", "main": "bin/tn", "bin": { - "tn": "./bin/tn" + "tn": "./bin/tn", + "tn-fzf": "./bin/tn-fzf" }, "scripts": { "start": "node bin/tn",