perfect-postcode/video/package.json

22 lines
694 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",
"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 16 -preset slow -movflags +faststart output/recording.mp4",
"render": "./render.sh"
},
"dependencies": {
"playwright": "^1.49.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}