You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ytDownloader/package.json

85 lines
1.6 KiB
JSON

4 years ago
{
"dependencies": {
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"electron-updater": "^5.0.5",
4 years ago
"express": "^4.18.1",
"ffmpeg-static": "^5.0.2",
"socket.io": "^4.5.1",
4 years ago
"ytdl-core": "^4.11.0"
},
"name": "ytdownloader",
4 years ago
"version": "1.5.5",
4 years ago
"main": "main.js",
"scripts": {
"start": "electron .",
"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"
4 years ago
},
"author": {
"name": "Andrew",
"email": "aandrew.me@pm.me"
},
4 years ago
"license": "MIT",
"description": "Download videos and audios from YouTube",
"devDependencies": {
"electron": "19.0.9",
4 years ago
"electron-builder": "^23.1.0"
},
"build": {
"productName": "YTDownloader",
4 years ago
"appId": "org.andrew.ytdownloader",
4 years ago
"files": [
"./resources/**/*",
"*.js",
"./html/**/*",
"./resources/**/*",
"./public/**/*"
],
4 years ago
"mac": {
"category": "Utility",
"target": [
"dmg"
]
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
],
"sign": false
},
"asar": false,
4 years ago
"directories": {
"buildResources": "resources",
"output": "release"
},
"linux": {
"target": [
"AppImage",
4 years ago
"deb",
"flatpak"
4 years ago
],
"category": "Utility"
},
"win": {
"target": "nsis"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
}
}
}