-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 1.82 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
{
"name": "talk-electron",
"productName": "NC Talk Electron",
"description": "Talk web embedded app",
"keywords": [
"nextcloud",
"talk",
"spreed",
"electron",
"win7"
],
"icon": "icon.png",
"main": "./main.js",
"version": "0.2.9-alpha",
"author": "drlight17",
"build": {
"appId": "com.electron.talk-electron",
"productName": "NC Talk Electron",
"asar": true,
"asarUnpack": [
"**/node_modules/sharp/**/*",
"**/node_modules/@img/**/*"
],
"nsis": {
"oneClick": true,
"perMachine": true,
"allowElevation": true
},
"msi": {
"oneClick": true,
"perMachine": true
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
},
{
"target": "dmg",
"arch": [
"x64"
]
}
]
},
"win": {
"icon": "icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "zip",
"arch": [
"x64",
"ia32"
]
},
{
"target": "msi",
"arch": [
"x64",
"ia32"
]
}
]
}
},
"scripts": {
"dist": "electron-builder",
"start": "electron ."
},
"dependencies": {
"@electron/packager": "latest",
"@paymoapp/electron-shutdown-handler": "latest",
"desktop-idle": "^1.3.0",
"electron-fetch": "^1.9.1",
"electron-prompt": "latest",
"electron-store": "^8.2.0",
"sharp": "^0.32"
},
"devDependencies": {
"@paymoapp/electron-shutdown-handler": "latest",
"electron": "^22.3.27",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9"
}
}