From 3da0fbcccb83f806495b8cf473b78923ecab8ac7 Mon Sep 17 00:00:00 2001 From: Justin Valentini Date: Tue, 6 Jan 2026 09:27:15 -0500 Subject: [PATCH] docs: add npm and bun installation instructions to README Add separate installation sections for npm and bun package managers to allow users to install @jvalentini/worklog from GitHub Packages registry. --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f08c5e3..d297799 100644 --- a/README.md +++ b/README.md @@ -278,11 +278,21 @@ Start with [Example 1: Basic Daily Standup](examples/01-basic-usage.md) to learn curl -fsSL https://raw.githubusercontent.com/jvalentini/worklog/main/install.sh | bash ``` -Options: -- `--no-config` - Skip setup wizard -- `--version v1.0.0` - Install specific version + Options: + - `--no-config` - Skip setup wizard + - `--version v1.0.0` - Install specific version -### From Source + ### Install via npm + ```bash + npm install -g @jvalentini/worklog + ``` + + ### Install via Bun + ```bash + bun add -g @jvalentini/worklog + ``` + + ### From Source ```bash git clone http://github.com/jvalentini/worklog.git cd worklog