From 0276255b76db097d8b1d3d7543ba714a14cbc656 Mon Sep 17 00:00:00 2001 From: Vance Ingalls Date: Sun, 22 Mar 2026 22:47:18 -0700 Subject: [PATCH] fix: rename root package to avoid shadowing published CLI (#17) `npx hyperframes init` failed with "could not determine executable to run" because the monorepo root package.json shared the same name as the published npm package. npx resolved the local root (which has no bin field) instead of the published package. Renaming to "hyperframes-monorepo" follows the same convention as remotion-monorepo. Co-authored-by: Claude Opus 4.6 (1M context) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 82dc75f79..451e76418 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "hyperframes", + "name": "hyperframes-monorepo", "private": true, "type": "module", "scripts": {