Files
Compass/media-creator/package.json
MartinBraquet 03bbe939c6 Add profile tour video generation, including live screenshot capturing and seamless integration with Remotion
- Introduced `capture-profile.mjs` for section-wise profile screenshot capturing.
- Added `ProfileTour` scene showcasing profiles section-by-section.
- Registered `ProfileTourStory` (9:16) and `ProfileTourPost` (4:5) compositions in `Root.tsx`.
- Updated commands for rendering and capturing in `package.json` and README.
2026-07-21 14:13:45 +02:00

31 lines
1.1 KiB
JSON

{
"name": "compass-media-creator",
"version": "0.1.0",
"private": true,
"description": "Standalone Remotion studio for Compass media creation. Intentionally NOT part of the root yarn workspaces — install and run it on its own with npm.",
"license": "MIT",
"scripts": {
"capture:profile": "node scripts/capture-profile.mjs",
"render": "npm run render:post",
"render:carousel": "node scripts/render-carousel.mjs",
"render:post": "remotion render IntroPost out/compass-intro-post.mp4",
"render:story": "remotion render IntroStory out/compass-intro-story.mp4",
"render:tour": "remotion render ProfileTourStory out/compass-profile-tour-story.mp4",
"render:tour:post": "remotion render ProfileTourPost out/compass-profile-tour-post.mp4",
"studio": "remotion studio",
"typecheck": "tsc --noEmit",
"upgrade": "remotion upgrade"
},
"dependencies": {
"@remotion/cli": "4.0.290",
"react": "19.2.3",
"react-dom": "19.2.3",
"remotion": "4.0.290"
},
"devDependencies": {
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"typescript": "5.5.4"
}
}