mirror of
https://github.com/A-Star100/simpliplay-desktop.git
synced 2025-09-17 14:19:39 +00:00
130 lines
2.9 KiB
JSON
130 lines
2.9 KiB
JSON
{
|
|
"name": "SimpliPlay",
|
|
"version": "2.1.4",
|
|
"description": "The mission to make media playback accessible on every platform, 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."
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"installerIcon": "icon.ico",
|
|
"uninstallerIcon": "icon.ico",
|
|
"uninstallDisplayName": "simpliplay-uninstaller",
|
|
"allowToChangeInstallationDirectory": true
|
|
},
|
|
"mac": {
|
|
"target": [
|
|
"dmg"
|
|
],
|
|
"icon": "icon.icns",
|
|
"artifactName": "SimpliPlay-${arch}-darwin.${ext}",
|
|
"identity": "-"
|
|
},
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": ["x64", "arm64"]
|
|
}
|
|
],
|
|
"artifactName": "SimpliPlay-${arch}-win-setup.${ext}"
|
|
},
|
|
"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": "opus",
|
|
"name": "Opus Audio",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "mkv",
|
|
"name": "MKV Video",
|
|
"role": "Viewer"
|
|
},
|
|
{
|
|
"ext": "mov",
|
|
"name": "QuickTime Movie",
|
|
"role": "Viewer"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^38.1.0",
|
|
"electron-builder": "^26.0.12"
|
|
}
|
|
}
|