| 1 | { |
| 2 | "name": "@html-video/adapter-remotion", |
| 3 | "version": "0.1.0", |
| 4 | "description": "Remotion adapter for html-video meta-layer — deterministic frame-by-frame rendering, the second real engine. Phase 1 bridges existing HTML/CSS/GSAP frames onto Remotion's timeline; Phase 2 (separate RFC) adds native React-tsx templates.", |
| 5 | "license": "Apache-2.0", |
| 6 | "type": "module", |
| 7 | "main": "./dist/index.js", |
| 8 | "types": "./dist/index.d.ts", |
| 9 | "exports": { |
| 10 | ".": { |
| 11 | "import": "./dist/index.js", |
| 12 | "types": "./dist/index.d.ts" |
| 13 | } |
| 14 | }, |
| 15 | "files": ["dist", "bridge", "README.md"], |
| 16 | "scripts": { |
| 17 | "build": "tsc -p tsconfig.json", |
| 18 | "typecheck": "tsc -p tsconfig.json --noEmit", |
| 19 | "test": "npm run build && node --test \"test/**/*.test.mjs\"" |
| 20 | }, |
| 21 | "dependencies": { |
| 22 | "@html-video/core": "workspace:*" |
| 23 | }, |
| 24 | "peerDependencies": { |
| 25 | "remotion": "^4.0.0", |
| 26 | "@remotion/bundler": "^4.0.0", |
| 27 | "@remotion/renderer": "^4.0.0", |
| 28 | "react": "^18 || ^19", |
| 29 | "react-dom": "^18 || ^19" |
| 30 | }, |
| 31 | "peerDependenciesMeta": { |
| 32 | "remotion": { "optional": true }, |
| 33 | "@remotion/bundler": { "optional": true }, |
| 34 | "@remotion/renderer": { "optional": true }, |
| 35 | "react": { "optional": true }, |
| 36 | "react-dom": { "optional": true } |
| 37 | }, |
| 38 | "devDependencies": { |
| 39 | "typescript": "^5.7.2" |
| 40 | } |
| 41 | } |
| 42 |