From 33b7c2bfdbe59aa8ca1b04fc46d342dee1a3dbc9 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Sun, 11 Jan 2026 03:29:33 -0600 Subject: [PATCH] fix missing binaries --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 2b8ddba..08bb365 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,14 @@ { "name": "agent-browser", - "version": "0.3.1", + "version": "0.3.2", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/index.js", + "files": [ + "dist", + "bin", + "scripts" + ], "bin": { "agent-browser": "./bin/agent-browser" },