mirror of
https://github.com/A-Star100/simpliplay-desktop.git
synced 2025-09-18 14:42:16 +00:00

Fix update system bug (2.0.4.3 instead of 2.0.4.4 as internal version number) and use Electron 37.3.0 for ARM64 Linux builds as well
120 lines
2.7 KiB
JSON
120 lines
2.7 KiB
JSON
{
|
|
"name": "SimpliPlay",
|
|
"version": "2.0.4",
|
|
"description": "SimpliPlay - The mission to make media playback accessible on every device, anywhere, anytime.",
|
|
"main": "./main.js",
|
|
"scripts": {
|
|
"test": "echo Hello World from SimpliPlay!!!",
|
|
"start": "electron-forge start",
|
|
"package": "electron-builder --dir",
|
|
"make": "electron-builder"
|
|
},
|
|
"author": "Anirudh Sevugan",
|
|
"build": {
|
|
"npmRebuild": false,
|
|
"appId": "com.anirudhsevugan.simpliPlay",
|
|
"productName": "SimpliPlay",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"snap": {
|
|
"confinement": "strict",
|
|
"grade": "stable",
|
|
"summary": "A cross-platform, simple media player.",
|
|
"description": "The mission to make media playback accessible on every platform, anywhere, anytime.",
|
|
"base": "core22"
|
|
},
|
|
"mac": {
|
|
"target": [
|
|
"dmg"
|
|
],
|
|
"icon": "icon.icns"
|
|
},
|
|
"win": {
|
|
"target": "nsis",
|
|
"icon": "icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": ["snap", "AppImage"],
|
|
"icon": "icon.png",
|
|
"executableName": "SimpliPlay",
|
|
"synopsis": "The mission to make media playback accessible anywhere, anytime.",
|
|
"artifactName": "SimpliPlay-${arch}-linux.${ext}"
|
|
},
|
|
"fileAssociations": [
|
|
{
|
|
"ext": "mp4",
|
|
"name": "MP4 Video",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "webm",
|
|
"name": "WebM Video",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "m4v",
|
|
"name": "M4V Video",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "m4a",
|
|
"name": "M4A Audio",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "ogv",
|
|
"name": "OGV Video",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "mp3",
|
|
"name": "MP3 Audio",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "aac",
|
|
"name": "AAC Audio",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "wav",
|
|
"name": "WAV Audio",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "ogg",
|
|
"name": "OGG Audio",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "flac",
|
|
"name": "FLAC Audio",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "mkv",
|
|
"name": "MKV Video",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "mov",
|
|
"name": "QuickTime Movie",
|
|
"role": "Viewer"
|
|
}
|
|
]
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"installerIcon": "icon.ico",
|
|
"uninstallerIcon": "icon.ico",
|
|
"uninstallDisplayName": "simpliplay-uninstaller",
|
|
"license": "LICENSE.md",
|
|
"allowToChangeInstallationDirectory": true
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^37.3.0",
|
|
"electron-builder": "^26.0.12"
|
|
}
|
|
}
|