-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 1.79 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
78
79
80
81
82
83
84
85
{
"name": "OpenTHC",
"version": "420.20.050",
"description": "OpenTHC Desktop Application Integration",
"main": "main.js",
"scripts": {
"start": "npm install && electron ./main.js",
"postinstall": "install-app-deps",
"pack": "build --dir",
"dist": "build"
},
"repository": "https://github.com/openthc/app-electron",
"author": {
"name": "OpenTHC, Inc.",
"email": "code@openthc.com",
"url": "https://openthc.com"
},
"license": "GPL-3.0-only",
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.6.4"
},
"dependencies": {
"electron-nightly": "^29.0.0-nightly.20231013",
"node-getopt": "^0.3.2",
"yarn": "^1.22.19"
},
"build": {
"appId": "com.openthc.app",
"productName": "OpenTHC",
"win": {
"icon": "./icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"nsis": {
"installerIcon": "./icon.ico",
"installerHeaderIcon": "./icon.ico",
"uninstallerIcon": "./icon.ico",
"deleteAppDataOnUninstall": true
},
"mac": {
"icon": "./icon-512.png",
"category": "public.app-category.business",
"target": [
{
"target": "dmg",
"arch": "x64"
},
{
"target": "tar.gz",
"arch": "x64"
}
]
},
"linux": {
"icon": "./icons/256x256.png",
"executableName": "openthc",
"synopsis": "",
"description": "",
"category": "Office",
"target": [
{
"target": "tar.gz",
"arch": [
"x64",
"armv7l"
]
}
]
}
}
}