-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.53 KB
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
{
"name": "whatsapp-linux",
"version": "0.1.4",
"description": "WhatsApp Web wrapper for Linux desktops",
"main": "src/main.js",
"license": "MIT",
"author": "done6666 <done6666@users.noreply.github.com>",
"desktopName": "whatsapp-linux.desktop",
"repository": {
"type": "git",
"url": "https://github.com/done6666/whatsapp-linux.git"
},
"homepage": "https://github.com/done6666/whatsapp-linux#readme",
"bugs": "https://github.com/done6666/whatsapp-linux/issues",
"scripts": {
"start": "electron .",
"dist": "electron-builder --linux deb rpm AppImage flatpak",
"dist:deb": "electron-builder --linux deb",
"dist:rpm": "electron-builder --linux rpm",
"dist:appimage": "electron-builder --linux AppImage",
"dist:flatpak": "electron-builder --linux flatpak",
"dist:arm64": "electron-builder --linux deb rpm AppImage flatpak --arm64"
},
"build": {
"appId": "com.github.done6666.whatsapp-linux",
"productName": "WhatsApp Linux",
"directories": {
"output": "release"
},
"files": [
"src/**/*",
"assets/**/*",
"build/icon.png"
],
"linux": {
"target": [
"deb",
"rpm",
"AppImage",
"flatpak"
],
"category": "Network;InstantMessaging",
"icon": "build/icon.png",
"syncDesktopName": true,
"artifactName": "${name}-${version}-${arch}.${ext}",
"publish": {
"provider": "github"
}
}
},
"devDependencies": {
"electron": "^43.2.0",
"electron-builder": "^26.15.3"
}
}