forked from bsharper/atv-desktop-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.91 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
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
{
"name": "atv-desktop-remote",
"version": "1.3.0",
"description": "Control an Apple TV from your desktop",
"license": "MIT",
"author": "bsharper (https://github.com/bsharper/atv-desktop-remote)",
"maintainers": [
"Jason Lewallen <[email protected]>"
],
"homepage": "https://github.com/jklewa/atv-desktop-remote",
"repository": "github:jklewa/atv-desktop-remote",
"bugs": "https://github.com/jklewa/atv-desktop-remote/issues",
"main": "app/main.js",
"scripts": {
"prebuild": "node build/create_python_embed.js",
"build": "electron-builder -c.mac.identity=null",
"postinstall": "electron-builder install-app-deps",
"prestart": "node build/create_python_embed.js",
"start": "electron app"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"electron": "^33.0.0",
"electron-builder": "^24.6.4",
"prettier-package-json": "^2.8.0"
},
"build": {
"productName": "ATV Remote",
"appId": "com.electron.atvDesktopRemote",
"mac": {
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
},
"dmg": {
"writeUpdateInfo": false,
"sign": false
},
"win": {
"target": [
"nsis"
]
},
"nsis": {
"differentialPackage": false
},
"linux": {
"target": [
"AppImage"
],
"category": "Utility",
"maintainer": "Jason Lewallen <[email protected]>"
},
"publish": [
{
"provider": "github",
"publishAutoUpdate": false,
"vPrefixedTagName": true
}
],
"extraFiles": [
"server/wsserver.py"
]
},
"productName": "ATV Remote"
}