{ "dependencies": { "electron-updater": "^5.0.5", "ffmpeg-static": "^5.0.2", "ytdl-core": "^4.11.0" }, "name": "ytdownloader", "version": "1.7.0", "main": "main.js", "scripts": { "start": "electron .", "watch":"nodemon --exec electron .", "debug":"electron --inspect=5858 .", "windows": "rm -rf ./node_modules && electron-builder -w", "linux": "rm -rf ./node_modules && electron-builder -l", "mac": "rm -rf ./node_modules && electron-builder -m", "publish-linux": "rm -rf ./node_modules && electron-builder -l --publish=always", "publish-windows": "rm -rf ./node_modules && electron-builder -w --publish=always" }, "author": { "name": "Andrew", "email": "aandrew.me@pm.me" }, "publish": { "provider": "github", "owner": "aandrew-me", "repo": "ytDownloader", "private": false }, "license": "MIT", "description": "Download videos and audios from YouTube", "devDependencies": { "electron": "19.0.9", "electron-builder": "^23.1.0" }, "build": { "productName": "YTDownloader", "appId": "org.andrew.ytdownloader", "files": [ "./resources/**/*", "*.js", "./html/**/*", "./resources/**/*", "./public/**/*", "package.json", "./assets/**/*", "./src/**/*" ], "mac": { "category": "Utility", "target": [ "dmg" ] }, "dmg": { "contents": [ { "x": 130, "y": 220 }, { "x": 410, "y": 220, "type": "link", "path": "/Applications" } ], "sign": false }, "asar": false, "directories": { "buildResources": "resources", "output": "release" }, "linux": { "target": [ "Appimage", "deb", "flatpak" ], "category": "Utility" }, "win": { "target": "nsis" }, "nsis": { "allowToChangeInstallationDirectory": true, "oneClick": false } } }