constcmdExists=require('command-exists')module.exports={key:'git',title:'Git',description:'Distributed version control system. Required for the Git storage module.',isInstalled:false,asyncisCompatible(){returntrue},asynccheck(){try{awaitcmdExists('git')this.isInstalled=true}catch(err){this.isInstalled=false}returnthis.isInstalled}}