-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
131 lines (131 loc) · 4.05 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "balloon-desktop",
"productName": "Balloon",
"description": "Balloon Desktop Client",
"version": "1.2.2",
"author": "gyselroth GmbH <[email protected]>",
"copyright": "© 2017-2020, gyselroth GmbH",
"homepage": "https://www.gyselroth.com",
"license": "GPL-3.0",
"main": "app/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gyselroth/balloon-client-desktop.git"
},
"build": {
"appId": "com.gyselroth.balloon-desktop",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
"resources/**/*",
"node_modules/fileicon/bin/fileicon"
],
"mac": {
"artifactName": "${os}/${name}-${version}-mac.${ext}"
},
"win": {
"certificateSubjectName": "CN=gyselroth GmbH, O=gyselroth GmbH, L=Zurich, C=CH"
},
"linux": {
"category": "Network"
},
"pkg": {
"allowCurrentUserHome": false
},
"deb": {
"afterInstall": "build/fpm-scripts/postinstall"
},
"nsis": {
"artifactName": "${name}-setup-${version}.${ext}",
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"license": "LICENSE",
"installerSidebar": "build/installerSidebar.bmp",
"uninstallerSidebar": "build/installerSidebar.bmp"
},
"publish": [
{
"provider": "github",
"owner": "gyselroth",
"repo": "balloon-client-desktop"
}
],
"fileAssociations": [
{
"ext": "burl",
"description": "Balloon URL Shortcut",
"mimeType": "application/vnd.balloon.burl"
}
]
},
"bugs": {
"url": "https://github.com/gyselroth/balloon-client-desktop/issues"
},
"scripts": {
"postinstall": "install-app-deps",
"prepack": "gulp build --env=production",
"pack": "build --dir",
"prebuild": "gulp build --env=production",
"build-osx": "npm run prebuild && build --mac pkg zip -p never",
"build-win": "npm run prebuild && build --win --ia32 --x64 -p never",
"build-linux": "npm run prebuild && build --linux deb rpm zip -p never",
"build-linux-deb": "npm run prebuild && build --linux deb -p never",
"prerelease": "gulp build --env=production",
"release-osx": "npm run prerelease && build --mac pkg zip -p always",
"release-win": "npm run prerelease && build --win --ia32 --x64 -p always",
"release-linux": "npm run prerelease && build --linux deb rpm zip -p always",
"prepackdev": "gulp build --env=development",
"packdev": "build --dir",
"prebuilddev": "gulp build --env=development",
"builddev-osx": "npm run prebuilddev && build --mac pkg zip -p never",
"builddev-win": "npm run prebuilddev && build --win --ia32 --x64 -p never",
"builddev-linux": "npm run prebuilddev && build --linux deb -p never",
"start": "gulp start",
"startprod": "gulp start --env=production"
},
"devDependencies": {
"electron": "^2.0.0",
"electron-builder": "20.34.0",
"gulp": "^4.0.2",
"minimist": "~1.2.0"
},
"dependencies": {
"@gyselroth/balloon-node-sync": "0.5.4",
"@gyselroth/icon-collection": "^1.0.9",
"@gyselroth/node-advanced-desktop": "^1.0.5",
"@openid/appauth": "^1.1.2",
"app-migrations": "~0.1.2",
"archiver": "~3.0.0",
"async": "~2.6.1",
"auto-launch": "^5.0.5",
"electron-is-dev": "~1.0.1",
"electron-settings": "~3.2.0",
"electron-traywindow-positioner": "0.0.3",
"electron-updater": "^3.2.0",
"escape-string-regexp": "~1.0.5",
"graceful-fs": "^4.1.15",
"handlebars": "^4.0.12",
"javascript-time-ago": "^1.0.34",
"jquery": "^3.4.1",
"jstree": "^3.3.7",
"keytar": "~4.3.0",
"lodash": "^4.17.13",
"mkdirp": "~0.5.1",
"moment": "~2.22.2",
"nedb": "~1.8.0",
"node-ipc": "^9.1.1",
"object-hash": "^1.3.1",
"prepend-file": "~1.3.1",
"pretty-bytes": "^5.1.0",
"request": "~2.88.0",
"rimraf": "~2.6.2",
"sprintf-js": "^1.1.2",
"sudo-prompt": "^9.0.0",
"systeminformation": "^3.54.0",
"ubuntu-fontface": "~0.1.13",
"winston": "^2.4.4"
}
}