@hyperframes/producer 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@hyperframes/producer",
3
+ "version": "0.1.0",
4
+ "description": "HTML-to-video rendering engine using Chrome's BeginFrame API",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ },
13
+ "./server": {
14
+ "import": "./dist/public-server.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist/"
19
+ ],
20
+ "publishConfig": {
21
+ "access": "public",
22
+ "registry": "https://registry.npmjs.org/"
23
+ },
24
+ "engines": {
25
+ "node": ">=22"
26
+ },
27
+ "scripts": {
28
+ "build": "pnpm -w build:hyperframes-runtime:modular && node build.mjs",
29
+ "typecheck": "tsc --noEmit",
30
+ "parity:check": "tsx src/parity-harness.ts",
31
+ "parity:fixtures": "tsx src/parity-fixtures.ts",
32
+ "parity:fixtures:ci": "tsx src/parity-fixtures.ts",
33
+ "parity:check:ci": "tsx src/parity-harness.ts --preview-url \"http://127.0.0.1:4173/minimal-wysiwyg.html\" --producer-url \"http://127.0.0.1:4173/minimal-wysiwyg.html?mode=producer\" --checkpoints \"0,0.5,1,1.5\" --allow-mismatch-ratio 0 --emulate-producer-swap true --artifacts-dir \".debug/parity-harness-ci\"",
34
+ "perf:gate": "tsx src/perf-gate.ts",
35
+ "check:runtime-conformance": "tsx src/runtime-conformance.ts",
36
+ "benchmark": "tsx src/benchmark.ts",
37
+ "test": "tsx src/regression-harness.ts",
38
+ "test:update": "tsx src/regression-harness.ts --update",
39
+ "prepublishOnly": "pnpm build"
40
+ },
41
+ "dependencies": {
42
+ "@hyperframes/core": "workspace:*",
43
+ "@hyperframes/engine": "workspace:*",
44
+ "@fontsource/archivo-black": "^5.2.8",
45
+ "@fontsource/eb-garamond": "^5.2.7",
46
+ "@fontsource/ibm-plex-mono": "^5.2.7",
47
+ "@fontsource/inter": "^5.2.8",
48
+ "@fontsource/jetbrains-mono": "^5.2.8",
49
+ "@fontsource/league-gothic": "^5.2.8",
50
+ "@fontsource/montserrat": "^5.2.8",
51
+ "@fontsource/nunito": "^5.2.7",
52
+ "@fontsource/oswald": "^5.2.8",
53
+ "@fontsource/outfit": "^5.2.8",
54
+ "@fontsource/space-mono": "^5.2.9",
55
+ "@hono/node-server": "^1.13.0",
56
+ "hono": "^4.6.0",
57
+ "linkedom": "^0.18.12",
58
+ "puppeteer": "^24.0.0",
59
+ "puppeteer-core": "^24.39.1"
60
+ },
61
+ "devDependencies": {
62
+ "@types/node": "^22.10.1",
63
+ "esbuild": "^0.27.2",
64
+ "tsx": "^4.7.0",
65
+ "typescript": "^5.7.2"
66
+ }
67
+ }