mirror of
https://github.com/A-Star100/simpliplay-desktop.git
synced 2025-09-17 22:29:38 +00:00
106 lines
2.2 KiB
JSON
106 lines
2.2 KiB
JSON
{
|
|
"name": "SimpliPlay Beta",
|
|
"version": "1.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",
|
|
"fileAssociations": [
|
|
{
|
|
"ext": "mov",
|
|
"name": "QuickTime Movie",
|
|
"role": "Viewer"
|
|
}
|
|
]
|
|
},
|
|
"win": {
|
|
"target": "nsis",
|
|
"icon": "icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": "AppImage",
|
|
"icon": "icon.png",
|
|
"executableName": "SimpliPlay Beta",
|
|
"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"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^35.2.1",
|
|
"electron-builder": "^25.1.8"
|
|
}
|
|
}
|