From 38e7ffaffd657f4ad9d6bb4230d5041b6d843ac5 Mon Sep 17 00:00:00 2001 From: Amolith Date: Sat, 7 Feb 2026 17:54:36 -0700 Subject: [PATCH] build(npm): prepare package for publishing Remove private flag and add publishing metadata: description, license, files whitelist, and prepublishOnly build script. --- package.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9ca8f16af8ff8c2ffd44db1001db14e490a793d1..e2a9d234873fb8829efd3ecb026f281ce766c0d4 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,25 @@ { "name": "rumilo", "version": "0.1.0", - "private": true, + "description": "CLI that dispatches AI research subagents for web and git repository exploration", + "author": "", + "license": "MIT", "type": "module", "bin": { "rumilo": "./dist/index.js" }, + "files": [ + "dist/", + "README.md" + ], "scripts": { "dev": "bun src/cli/index.ts", "build": "bun build src/cli/index.ts --outdir dist --target=node", "start": "bun dist/cli/index.js", "lint": "bun run --silent typecheck", "test": "bun test", - "typecheck": "tsc --noEmit" + "typecheck": "tsc --noEmit", + "prepublishOnly": "bun run build" }, "dependencies": { "@mariozechner/pi-agent-core": "^0.52.8",