23 lines
749 B
JSON
23 lines
749 B
JSON
{
|
|
"name": "video",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Scripted Playwright recording of the dashboard for the homepage hero and social ads.",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"bootstrap-admin": "tsc && node dist/pb-admin.js",
|
|
"setup-auth": "tsc && node dist/auth.js",
|
|
"record": "tsc && node dist/record.js",
|
|
"record:vertical": "tsc && ASPECT=9x16 node dist/record.js",
|
|
"encode": "ffmpeg -y -i output/recording.webm -c:v libx264 -pix_fmt yuv420p -crf 14 -preset fast -movflags +faststart output/recording.mp4",
|
|
"render": "./render.sh"
|
|
},
|
|
"dependencies": {
|
|
"playwright": "^1.49.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|