-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 2.34 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "dbptk-desktop",
"description": "Database Preservation Toolkit",
"version": "2.10.0",
"dbvtkVersion": "2.10.0",
"author": "Luis Faria <[email protected]>",
"main": "./app/app.js",
"build": {
"appId": "com.database-preservation.gui",
"artifactName": "${name}-${version}.${ext}",
"files": [
"**/*",
"!resources/jre/*",
"!dist/*"
],
"asarUnpack": [
"resources/war/dbvtk.war"
],
"directories": {
"buildResources": "buildResources"
},
"mac": {
"files": [
"resources/jre/mac/${arch}/**/*"
],
"category": "public.app-category.utilities",
"asarUnpack": [
"resources/jre/mac/${arch}"
],
"icon": "icon.icns"
},
"linux": {
"files": [
"resources/jre/linux/${arch}/**/*",
"buildResources/*"
],
"target": [
"AppImage",
"snap"
],
"asarUnpack": [
"resources/jre/linux/${arch}"
],
"icon": "icon.png"
},
"snap": {
"plugs": [
"desktop",
"desktop-legacy",
"wayland",
"unity7",
"browser-support",
"cups-control",
"gsettings",
"home",
"network",
"opengl",
"removable-media",
"optical-drive"
]
},
"win": {
"files": [
"resources/jre/windows/${arch}/**/*"
],
"target": [
{
"target": "nsis",
"arch": [
"ia32",
"x64"
]
}
],
"asarUnpack": [
"resources/jre/windows/${arch}"
],
"icon": "icon.ico"
},
"publish": [
{
"provider": "github",
"owner": "keeps",
"repo": "dbptk-desktop"
}
]
},
"scripts": {
"start": "./node_modules/.bin/electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-lw": "electron-builder -lw",
"preinstall": "bash build.sh",
"snap": "electron-builder --linux snap"
},
"license": "LGPL-3.0-or-later",
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^23.0.3",
"electron-packager": "^17.1.2"
},
"dependencies": {
"electron-log": "^4.4.7",
"electron-settings": "^4.0.2",
"electron-updater": "^5.0.1",
"tmp": "^0.2.1",
"tree-kill": "^1.2.2",
"wait-on": "^7.2.0"
}
}