-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "whatsapp-electron",
"version": "1.1.4",
"description": "DagMoller's WhatsApp Electron Multi-Account App",
"author": "Diego Aguirre (DagMoller)",
"license": "ISC",
"keywords": [
"whatsapp",
"electron",
"multi-account"
],
"main": "./src/index.js",
"scripts": {
"start": "electron ./src",
"clean": "rm -rf ./dist",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:linux": "electron-builder --linux --x64",
"dist:windows": "electron-builder --windows --x64"
},
"build": {
"linux": {
"appId": "WhatsApp Electron",
"icon": "./assets/whatsapp-icon-512x512.png",
"category": "Network",
"target": [
"AppImage",
"tar.xz"
],
"asarUnpack": [
"**/assets/*.svg",
"**/assets/*.png"
]
},
"win": {
"appId": "WhatsApp Electron",
"icon": "./assets/whatsapp-icon-512x512.png",
"target": [
"portable",
"zip"
],
"asarUnpack": [
"**/assets/*.svg",
"**/assets/*.png"
]
}
},
"dependencies": {
"electron-is-dev": "^2.0.0",
"electron-store": "^8.2.0"
},
"devDependencies": {
"electron": "^29.3.1",
"electron-builder": "^24.13.3"
}
}