mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-08-02 03:11:45 -04:00
- Created `capture-alert.mjs` to generate alert loop video for the about page claim "Get Notified About Searches." - Added `CountrySpread` widget for a ranked bar display of member distribution by country. - Implemented `StatBand` component for live platform statistics on the about page. - Introduced template rendering script (`render-search-alert.tsx`) for generating search alert email visuals. - Updated documentation and improved workflows for media creation, video rendering, and data integration.
45 lines
2.3 KiB
JSON
45 lines
2.3 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:alert": "node scripts/capture-alert.mjs --theme light",
|
|
"capture:alert:dark": "node scripts/capture-alert.mjs --theme dark",
|
|
"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:alert": "remotion render SearchAlertLight out/compass-search-alert-light.mp4 --crf 30",
|
|
"render:alert:dark": "remotion render SearchAlertDark out/compass-search-alert-dark.mp4 --crf 30",
|
|
"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:alert": "remotion still SearchAlertLight out/compass-alert-poster-light.png --frame=0",
|
|
"still:alert:dark": "remotion still SearchAlertDark out/compass-alert-poster-dark.png --frame=0",
|
|
"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"
|
|
}
|
|
}
|