{ "name": "avif-to-jpeg", "version": "0.0.1", "description": "Command line tool to convert AVIF to JPEG", "dependencies": { "fs": "^0.0.1-security", "path": "^0.12.7", "sharp": "^0.33.0" } } const fs = require("fs").promises; const path = require("path"); const sharp = require("sharp"); const convert = async (inputPath, outputDir) => { const obj = path.parse(inputPath); const outputPath = path.joi