Skip to content

Commit 6ccbb56

Browse files
github-actions[bot]miguel-heygen
authored andcommitted
chore: release v0.1.2
1 parent 748a730 commit 6ccbb56

5 files changed

Lines changed: 29 additions & 29 deletions

File tree

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperframes",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "HyperFrames CLI — create, preview, and render HTML video compositions",
55
"bin": {
66
"hyperframes": "./dist/cli.js"

packages/core/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
{
22
"name": "@hyperframes/core",
3-
"version": "0.1.1",
4-
"files": [
5-
"dist",
6-
"docs",
7-
"README.md"
8-
],
3+
"version": "0.1.2",
94
"type": "module",
105
"main": "./src/index.ts",
116
"types": "./src/index.ts",
@@ -24,8 +19,15 @@
2419
},
2520
"./runtime": "./dist/hyperframe.runtime.iife.js"
2621
},
22+
"files": [
23+
"dist",
24+
"docs",
25+
"README.md"
26+
],
2727
"publishConfig": {
2828
"access": "public",
29+
"main": "./dist/index.js",
30+
"types": "./dist/index.d.ts",
2931
"exports": {
3032
".": {
3133
"import": "./dist/index.js",
@@ -40,9 +42,7 @@
4042
"types": "./dist/compiler/index.d.ts"
4143
},
4244
"./runtime": "./dist/hyperframe.runtime.iife.js"
43-
},
44-
"main": "./dist/index.js",
45-
"types": "./dist/index.d.ts"
45+
}
4646
},
4747
"scripts": {
4848
"build": "tsc && pnpm build:hyperframes-runtime",
@@ -66,6 +66,10 @@
6666
"debug:timeline": "tsx scripts/debug-timeline.ts",
6767
"prepublishOnly": "pnpm build"
6868
},
69+
"optionalDependencies": {
70+
"cheerio": "^1.2.0",
71+
"esbuild": "^0.25.12"
72+
},
6973
"devDependencies": {
7074
"@types/jsdom": "^28.0.0",
7175
"@types/node": "^24.10.13",
@@ -74,9 +78,5 @@
7478
"tsx": "^4.21.0",
7579
"typescript": "^5.0.0",
7680
"vitest": "^3.2.4"
77-
},
78-
"optionalDependencies": {
79-
"cheerio": "^1.2.0",
80-
"esbuild": "^0.25.12"
8181
}
8282
}

packages/engine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperframes/engine",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Seekable web page to video rendering engine (Puppeteer + FFmpeg)",
55
"type": "module",
66
"main": "./src/index.ts",

packages/producer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperframes/producer",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "HTML-to-video rendering engine using Chrome's BeginFrame API",
55
"files": [
66
"dist/"

packages/studio/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
{
22
"name": "@hyperframes/studio",
3-
"version": "0.1.1",
4-
"files": [
5-
"src",
6-
"dist"
7-
],
3+
"version": "0.1.2",
84
"type": "module",
9-
"main": "./src/index.ts",
10-
"types": "./src/index.ts",
115
"exports": {
126
".": "./src/index.ts",
137
"./tailwind-preset": "./src/styles/tailwind-preset.ts"
148
},
9+
"main": "./src/index.ts",
10+
"types": "./src/index.ts",
11+
"files": [
12+
"src",
13+
"dist"
14+
],
1515
"scripts": {
1616
"dev": "vite",
1717
"build": "vite build",
1818
"typecheck": "tsc --noEmit"
1919
},
2020
"dependencies": {
21+
"@hyperframes/core": "workspace:*",
2122
"@codemirror/autocomplete": "^6.20.1",
2223
"@codemirror/commands": "^6.10.3",
2324
"@codemirror/lang-css": "^6.3.1",
@@ -28,10 +29,14 @@
2829
"@codemirror/state": "^6.6.0",
2930
"@codemirror/theme-one-dark": "^6.1.2",
3031
"@codemirror/view": "^6.40.0",
31-
"@hyperframes/core": "workspace:*",
3232
"@phosphor-icons/react": "^2.1.10",
3333
"codemirror": "^6.0.1"
3434
},
35+
"peerDependencies": {
36+
"react": "^18.0.0 || ^19.0.0",
37+
"react-dom": "^18.0.0 || ^19.0.0",
38+
"zustand": "^4.0.0 || ^5.0.0"
39+
},
3540
"devDependencies": {
3641
"@types/react": "^19.0.0",
3742
"@types/react-dom": "^19.0.0",
@@ -41,10 +46,5 @@
4146
"tailwindcss": "^3.4.0",
4247
"typescript": "^5.0.0",
4348
"vite": "^5.0.0"
44-
},
45-
"peerDependencies": {
46-
"react": "^18.0.0 || ^19.0.0",
47-
"react-dom": "^18.0.0 || ^19.0.0",
48-
"zustand": "^4.0.0 || ^5.0.0"
4949
}
5050
}

0 commit comments

Comments
 (0)