-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "gridcast",
"version": "1.0.0",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build:packager": "NODE_ENV=production electron-packager . GridCast --platform=darwin,win32 --arch=arm64,x64 --out=dist --overwrite",
"build:builder": "cross-env NODE_ENV=production electron-builder",
"build:macos": "npm run build:builder",
"build:windows": "npm run build:builder",
"build:linux": "npm run build:builder -- --linux AppImage"
},
"keywords": [
"player",
"grid",
"multi-stream",
"playlist",
"multi-stream-player",
"grid-layout-video",
"playlist-management"
],
"author": "Austin Songer",
"license": "MIT",
"description": "Gridcast for macOS",
"devDependencies": {
"cross-env": "^7.0.3",
"electron": "^34.0.2",
"electron-builder": "^25.1.8",
"electron-packager": "^17.1.2"
},
"dependencies": {
"electron-log": "^5.3.0",
"electron-store": "^8.2.0",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3"
},
"build": {
"appId": "com.ol1vebranch.gridcast",
"productName": "GridCast",
"mac": {
"category": "public.app-category.video",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
"zip"
],
"cscLink": null,
"cscKeyPassword": null
},
"dmg": {
"format": "ULFO"
},
"win": {
"target": [
{
"target": "nsis",
"arch": "x64"
},
{
"target": "nsis",
"arch": "arm64"
},
"zip"
]
},
"linux": {
"artifactName": "${productName}-${version}-x86_64.${ext}",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
}
}
}