style: apply oxfmt baseline formatting across all source files (#25)

## Summary
- Run `oxfmt .` across the entire codebase to establish formatted baseline
- 299 files changed — mechanical formatting only, no logic changes
- Double quotes, semicolons, 2-space indent, trailing commas, 100 print width

Part 3/4 of [VA-851](https://linear.app/heygen/issue/VA-851/pre-migration-configure-eslint-prettier-and-conventional-commits)

## Test plan
- [x] `pnpm format:check` — all 426 files pass
- [x] `pnpm -r typecheck` — all packages pass
- [x] `pnpm build` — all packages build
- [x] All 348 tests pass
This commit is contained in:
Vance Ingalls
2026-03-23 17:15:14 -07:00
committed by GitHub
parent 323ff8f860
commit 20be2ea1c2
299 changed files with 27750 additions and 16792 deletions
+8 -8
View File
@@ -2,6 +2,9 @@
"name": "@hyperframes/producer",
"version": "0.1.1",
"description": "HTML-to-video rendering engine using Chrome's BeginFrame API",
"files": [
"dist/"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -14,16 +17,10 @@
"import": "./dist/public-server.js"
}
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "pnpm -w build:hyperframes-runtime:modular && node build.mjs",
"typecheck": "tsc --noEmit",
@@ -42,8 +39,6 @@
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@hyperframes/core": "workspace:^",
"@hyperframes/engine": "workspace:^",
"@fontsource/archivo-black": "^5.2.8",
"@fontsource/eb-garamond": "^5.2.7",
"@fontsource/ibm-plex-mono": "^5.2.7",
@@ -56,6 +51,8 @@
"@fontsource/outfit": "^5.2.8",
"@fontsource/space-mono": "^5.2.9",
"@hono/node-server": "^1.13.0",
"@hyperframes/core": "workspace:^",
"@hyperframes/engine": "workspace:^",
"hono": "^4.6.0",
"linkedom": "^0.18.12",
"puppeteer": "^24.0.0",
@@ -66,5 +63,8 @@
"esbuild": "^0.27.2",
"tsx": "^4.7.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=22"
}
}