mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-10 14:50:58 +03:00
103 lines
2.4 KiB
JSON
103 lines
2.4 KiB
JSON
{
|
|
"name": "backend",
|
|
"version": "1.0.0",
|
|
"description": "backend for YoutubeDL-Material",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "pm2-runtime --raw pm2.config.js",
|
|
"debug": "set YTDL_MODE=debug && node app.js",
|
|
"electron": "electron main.js",
|
|
"pack": "electron-builder --dir",
|
|
"build": "electron-builder"
|
|
},
|
|
"build": {
|
|
"appId": "youtubedl.material",
|
|
"productName": "YoutubeDL-Material GUI",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.utilities",
|
|
"icon": "../src/assets/images/logo_512px.png",
|
|
"target": "dmg"
|
|
},
|
|
"win": {
|
|
"target": "nsis",
|
|
"icon": "../src/favicon.ico"
|
|
},
|
|
"files": [
|
|
"!audio/*",
|
|
"!video/*",
|
|
"!users/*",
|
|
"!subscriptions/*",
|
|
"!appdata/*",
|
|
"*.js",
|
|
"authentication/auth.js",
|
|
"main.js",
|
|
"public/**/*",
|
|
"ffmpeg*",
|
|
"ffprobe*"
|
|
],
|
|
"asar": false
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": ""
|
|
},
|
|
"author": "Isaac Grynsztein",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": ""
|
|
},
|
|
"homepage": "",
|
|
"dependencies": {
|
|
"app-root-path": "^3.1.0",
|
|
"archiver": "^5.3.1",
|
|
"async": "^3.2.3",
|
|
"async-mutex": "^0.3.1",
|
|
"axios": "^0.21.2",
|
|
"bcryptjs": "^2.4.0",
|
|
"compression": "^1.7.4",
|
|
"config": "^3.2.3",
|
|
"electron-root-path": "^1.1.0",
|
|
"express": "^4.17.3",
|
|
"feed": "^4.2.2",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"fs-extra": "^9.0.0",
|
|
"gotify": "^1.1.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"lodash": "^4.17.21",
|
|
"lowdb": "^1.0.0",
|
|
"md5": "^2.2.1",
|
|
"mocha": "^9.2.2",
|
|
"moment": "^2.29.4",
|
|
"mongodb": "^3.6.9",
|
|
"multer": "1.4.5-lts.1",
|
|
"node-fetch": "^2.6.7",
|
|
"node-id3": "^0.1.14",
|
|
"node-schedule": "^2.1.0",
|
|
"node-telegram-bot-api": "^0.61.0",
|
|
"passport": "^0.4.1",
|
|
"passport-http": "^0.3.0",
|
|
"passport-jwt": "^4.0.1",
|
|
"passport-ldapauth": "^3.0.1",
|
|
"passport-local": "^1.0.0",
|
|
"progress": "^2.0.3",
|
|
"ps-node": "^0.1.6",
|
|
"read-last-lines": "^1.7.2",
|
|
"rxjs": "^7.3.0",
|
|
"shortid": "^2.2.15",
|
|
"unzipper": "^0.10.10",
|
|
"uuidv4": "^6.0.6",
|
|
"winston": "^3.7.2",
|
|
"xmlbuilder2": "^3.0.2",
|
|
"youtube-dl": "^3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^24.1.2",
|
|
"electron-builder": "^23.6.0",
|
|
"electron-packager": "^17.1.1"
|
|
}
|
|
}
|