#!/usr/bin/env bun const {cli} = require('./dist/index'); // Just like "remotion", but it uses Bun cli() .then(() => process.exit(0)) .catch((err) => { console.error(err); process.exit(1); });