Files
Compass/media-creator/package.json
MartinBraquet 0136f1f386 Add search demo video generation and integration
- Introduced `capture-search.mjs` script for end-to-end mobile search flow captures.
- Added `SearchDemo` scene as a Remotion composition for the home-page hero clip.
- Integrated dynamic video selection based on theme in `home/search-demo.tsx` component.
- Included `fetch-media.mjs` script for fetching demo assets during build.
- Enabled optional email verification bypass for local captures (`dev-flags.ts`).
- Updated related documentation and scripts for media creation and deployment.
2026-07-22 01:39:45 +02:00

39 lines
1.7 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",
"capture:search": "node scripts/capture-search.mjs --theme light",
"capture:search:dark": "node scripts/capture-search.mjs --theme dark",
"capture:vote": "node scripts/capture-vote.mjs",
"render": "npm run render:post",
"render:carousel": "node scripts/render-carousel.mjs",
"render:post": "remotion render IntroPost out/compass-intro-post.mp4",
"render:search": "remotion render SearchDemoLight out/compass-search-demo-light.mp4 --crf 30",
"render:search:dark": "remotion render SearchDemoDark out/compass-search-demo-dark.mp4 --crf 30",
"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",
"still:search": "remotion still SearchDemoLight out/compass-search-poster-light.png --frame=0",
"still:search:dark": "remotion still SearchDemoDark out/compass-search-poster-dark.png --frame=0",
"studio": "remotion studio",
"typecheck": "tsc --noEmit",
"upgrade": "remotion upgrade",
"upload:media": "bash scripts/upload-media.sh"
},
"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"
}
}