mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-01 19:42:03 +00:00
`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) <noreply@anthropic.com>
21 lines
664 B
JSON
21 lines
664 B
JSON
{
|
|
"name": "hyperframes-monorepo",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "pnpm studio",
|
|
"build": "pnpm -r build",
|
|
"build:producer": "pnpm --filter @hyperframes/producer build",
|
|
"studio": "pnpm --filter @hyperframes/studio dev",
|
|
"build:hyperframes-runtime": "pnpm --filter @hyperframes/core build:hyperframes-runtime",
|
|
"build:hyperframes-runtime:modular": "pnpm --filter @hyperframes/core build:hyperframes-runtime:modular",
|
|
"set-version": "tsx scripts/set-version.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.0.10",
|
|
"concurrently": "^8.2.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|