From 905729dd8b7667c0e3dd07bbae5ca32b5a8f3d57 Mon Sep 17 00:00:00 2001 From: Roger Chappel Date: Tue, 9 Jun 2026 16:52:20 +1000 Subject: [PATCH 1/2] fix: align published package surface --- package.json | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 88b78be..dd68d81 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,24 @@ { - "name": "bargekit", + "name": "@bargekit/core", "version": "0.1.0", "description": "Local-first turn-taking primitives for interruptible voice agents.", "type": "module", "main": "./src/index.js", + "bin": { + "bargekit": "./src/cli.js" + }, "exports": { - ".": "./src/index.js" + ".": "./src/index.js", + "./web": "./src/web.js", + "./fixtures": "./src/fixtures.js", + "./integrations": "./src/integrations.js", + "./tuning": "./src/tuning.js" }, "files": [ "src", "demo", + "examples", "README.md", - "LICENSE", "LICENSE" ], "scripts": { @@ -20,7 +27,7 @@ "typecheck": "tsc --project tsconfig.json", "build": "node scripts/build.mjs", "package:smoke": "npm pack --dry-run", - "release:check": "npm test && npm run package:smoke", + "release:check": "npm run check && npm test && npm run typecheck && npm run build && npm run smoke && npm run package:smoke", "smoke": "node test/fixtures.test.js" }, "keywords": [ From 10c08e743350ca885641f269d5a57a136cd3e32d Mon Sep 17 00:00:00 2001 From: Roger Chappel Date: Tue, 9 Jun 2026 16:52:20 +1000 Subject: [PATCH 2/2] docs: include release check verification --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 499b0f0..989ebe4 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,7 @@ npm run check npm test npm run typecheck npm run build +npm run release:check bash scripts/validate.sh ```