mirror of
https://github.com/A-Star100/simpliplay-desktop.git
synced 2025-09-17 22:29:38 +00:00

Addons can do anything, from changing the look and feel of the app, adding new features, and even add references to your favorite characters!
112 lines
2.4 KiB
JSON
112 lines
2.4 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"
|
|
},
|
|
"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."
|
|
},
|
|
"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.2.4",
|
|
"electron-builder": "^26.0.12"
|
|
}
|
|
}
|