fix(publish): add repository.url to all packages for npm provenance

npm's sigstore provenance verification requires package.json
repository.url to match the GitHub repo. Without it, publish
fails with E422 "expected to match https://github.com/heygen-com/hyperframes".
This commit is contained in:
James
2026-03-27 22:07:55 +00:00
parent 42cca2c909
commit 8d7c33a4aa
6 changed files with 31 additions and 0 deletions
+4
View File
@@ -1,6 +1,10 @@
{
"name": "hyperframes-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/heygen-com/hyperframes"
},
"workspaces": [
"packages/*"
],
+5
View File
@@ -2,6 +2,11 @@
"name": "@hyperframes/cli",
"version": "0.1.7",
"description": "HyperFrames CLI — create, preview, and render HTML video compositions",
"repository": {
"type": "git",
"url": "https://github.com/heygen-com/hyperframes",
"directory": "packages/cli"
},
"bin": {
"hyperframes": "./dist/cli.js"
},
+6
View File
@@ -1,6 +1,12 @@
{
"name": "@hyperframes/core",
"version": "0.1.7",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/heygen-com/hyperframes",
"directory": "packages/core"
},
"files": [
"dist",
"docs",
+5
View File
@@ -2,6 +2,11 @@
"name": "@hyperframes/engine",
"version": "0.1.7",
"description": "Seekable web page to video rendering engine (Puppeteer + FFmpeg)",
"repository": {
"type": "git",
"url": "https://github.com/heygen-com/hyperframes",
"directory": "packages/engine"
},
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
+5
View File
@@ -2,6 +2,11 @@
"name": "@hyperframes/producer",
"version": "0.1.7",
"description": "HTML-to-video rendering engine using Chrome's BeginFrame API",
"repository": {
"type": "git",
"url": "https://github.com/heygen-com/hyperframes",
"directory": "packages/producer"
},
"files": [
"dist/"
],
+6
View File
@@ -1,6 +1,12 @@
{
"name": "@hyperframes/studio",
"version": "0.1.7",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/heygen-com/hyperframes",
"directory": "packages/studio"
},
"files": [
"src",
"dist"