-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
42 lines (41 loc) · 923 Bytes
/
Copy pathelectron-builder.json
File metadata and controls
42 lines (41 loc) · 923 Bytes
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
{
"appId": "com.netflix.linux",
"productName": "Netflix",
"electronDownload": {
"mirror": "https://github.com/castlabs/electron-releases/releases/download/v"
},
"linux": {
"target": ["pacman", "AppImage", "deb"],
"category": "Video;AudioVideo;Player",
"icon": "assets/icons/icon.png",
"maintainer": "u61d",
"executableArgs": ["--no-sandbox", "--disable-gpu-sandbox"],
"desktop": {
"entry": {
"Name": "Netflix",
"Comment": "Watch Netflix on Linux",
"Keywords": "netflix;streaming;video"
}
}
},
"pacman": {
"depends": ["gtk3", "nss", "alsa-lib"]
},
"deb": {
"depends": ["libgtk-3-0", "libnss3", "libasound2"]
},
"files": [
"src/**/*",
"assets/**/*",
"package.json",
"README.md",
"LICENSE"
],
"extraResources": [
{
"from": "assets/",
"to": "assets/",
"filter": ["**/*"]
}
]
}