-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "gridcast",
"version": "1.0.0",
"description": "GridCast - A multi-stream player using Electron and MPV",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"postinstall": "node -e \"if (process.platform === 'darwin') { require('child_process').execSync('npm install dmg-license'); }\"",
"build:packager": "electron-packager . GridCast --platform=darwin --out=dist --overwrite --arch=all",
"build:macos-dev": "electron-packager . GridCast --platform=darwin --out=dist --overwrite --arch=all",
"build:macos-prod": "electron-builder --mac"
},
"devDependencies": {
"electron": "^34.0.2",
"electron-builder": "^25.1.8",
"electron-packager": "^17.1.2"
},
"build": {
"appId": "com.ol1vebranch.gridcast",
"productName": "GridCast",
"mac": {
"category": "public.app-category.video",
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
"zip"
]
},
"dmg": {
"format": "UDZO"
}
},
"keywords": ["multi-stream-player","grid-layout-video","playlist-management"],
"author": "Austin Songer",
"license": "ISC"
}