mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 02:31:45 +00:00
Snyk has created this PR to upgrade filenamify from 4.2.0 to 4.3.0. See this package in npm: See this project in Snyk: https://app.snyk.io/org/th-ch/project/81809c53-bb7b-46b9-a0d7-806d45d74ac6?utm_source=github&utm_medium=upgrade-pr
119 lines
3.2 KiB
JSON
119 lines
3.2 KiB
JSON
{
|
|
"name": "youtube-music",
|
|
"productName": "YouTube Music",
|
|
"version": "1.12.1",
|
|
"description": "YouTube Music Desktop App - including custom plugins",
|
|
"license": "MIT",
|
|
"repository": "th-ch/youtube-music",
|
|
"author": {
|
|
"name": "th-ch",
|
|
"email": "th-ch@users.noreply.github.com",
|
|
"url": "https://github.com/th-ch/youtube-music"
|
|
},
|
|
"build": {
|
|
"appId": "com.github.th-ch.youtube-music",
|
|
"productName": "YouTube Music",
|
|
"mac": {
|
|
"identity": null,
|
|
"icon": "assets/generated/icons/mac/icon.icns"
|
|
},
|
|
"win": {
|
|
"icon": "assets/generated/icons/win/icon.ico",
|
|
"target": [
|
|
"nsis",
|
|
"portable"
|
|
]
|
|
},
|
|
"nsis": {
|
|
"runAfterFinish": false
|
|
},
|
|
"linux": {
|
|
"icon": "assets/generated/icons/png",
|
|
"category": "AudioVideo",
|
|
"target": [
|
|
"AppImage",
|
|
"snap",
|
|
"freebsd",
|
|
"deb",
|
|
"rpm"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"start": "electron .",
|
|
"start:debug": "ELECTRON_ENABLE_LOGGING=1 electron .",
|
|
"icon": "rimraf assets/generated && electron-icon-maker --input=assets/youtube-music.png --output=assets/generated",
|
|
"generate:package": "node utils/generate-package-json.js",
|
|
"postinstall": "yarn run icon && yarn run plugins",
|
|
"clean": "rimraf dist",
|
|
"build": "yarn run clean && electron-builder --win --mac --linux",
|
|
"build:linux": "yarn run clean && electron-builder --linux",
|
|
"build:mac": "yarn run clean && electron-builder --mac",
|
|
"build:win": "yarn run clean && electron-builder --win",
|
|
"plugins": "yarn run plugin:adblocker && yarn run plugin:autoconfirm",
|
|
"plugin:adblocker": "rimraf plugins/adblocker/ad-blocker-engine.bin && node plugins/adblocker/blocker.js",
|
|
"plugin:autoconfirm": "yarn run generate:package YoutubeNonStop",
|
|
"release:linux": "yarn run clean && electron-builder --linux -p always -c.snap.publish=github",
|
|
"release:mac": "yarn run clean && electron-builder --mac -p always",
|
|
"release:win": "yarn run clean && electron-builder --win -p always"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.16.1",
|
|
"npm": "Please use yarn and not npm"
|
|
},
|
|
"dependencies": {
|
|
"@cliqz/adblocker-electron": "^1.20.4",
|
|
"@ffmpeg/core": "^0.8.5",
|
|
"@ffmpeg/ffmpeg": "^0.9.7",
|
|
"YoutubeNonStop": "git://github.com/lawfx/YoutubeNonStop.git#v0.9.0",
|
|
"async-mutex": "^0.3.1",
|
|
"browser-id3-writer": "^4.4.0",
|
|
"chokidar": "^3.5.1",
|
|
"custom-electron-titlebar": "^3.2.6",
|
|
"discord-rpc": "^3.2.0",
|
|
"electron-debug": "^3.2.0",
|
|
"electron-is": "^3.0.0",
|
|
"electron-localshortcut": "^3.2.1",
|
|
"electron-store": "^7.0.3",
|
|
"electron-unhandled": "^3.0.2",
|
|
"electron-updater": "^4.3.8",
|
|
"filenamify": "^4.3.0",
|
|
"md5": "^2.3.0",
|
|
"node-fetch": "^2.6.1",
|
|
"node-notifier": "^9.0.1",
|
|
"ytdl-core": "^4.5.0",
|
|
"ytpl": "^2.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^12.0.7",
|
|
"electron-builder": "^22.10.5",
|
|
"electron-devtools-installer": "^3.1.1",
|
|
"electron-icon-maker": "0.0.5",
|
|
"get-port": "^5.1.1",
|
|
"jest": "^26.6.3",
|
|
"rimraf": "^3.0.2",
|
|
"spectron": "^14.0.0",
|
|
"xo": "^0.38.2"
|
|
},
|
|
"resolutions": {
|
|
"yargs-parser": "18.1.3"
|
|
},
|
|
"xo": {
|
|
"envs": [
|
|
"node",
|
|
"browser"
|
|
],
|
|
"rules": {
|
|
"quotes": [
|
|
"error",
|
|
"double",
|
|
{
|
|
"avoidEscape": true,
|
|
"allowTemplateLiterals": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|