-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.59 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.59 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
56
57
58
59
60
61
62
63
{
"name": "whatsapp-web-wrapper",
"version": "1.0.1",
"description": "WhatsApp Web wrapper for Linux desktop",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build-linux": "electron-builder --linux AppImage",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"whatsapp",
"electron",
"linux",
"desktop"
],
"author": "codeXpedite",
"repository": {
"type": "git",
"url": "https://github.com/codeXpedite/whatsapp-desktop-linux.git"
},
"bugs": {
"url": "https://github.com/codeXpedite/whatsapp-desktop-linux/issues"
},
"homepage": "https://github.com/codeXpedite/whatsapp-desktop-linux#readme",
"license": "MIT",
"type": "commonjs",
"build": {
"appId": "com.whatsapp.web.wrapper",
"productName": "WhatsApp Web",
"directories": {
"output": "dist"
},
"publish": {
"provider": "github",
"owner": "codeXpedite",
"repo": "whatsapp-desktop-linux"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png",
"category": "Network",
"desktop": {
"entry": {
"Name": "WhatsApp Web",
"Comment": "Native WhatsApp Web desktop application",
"GenericName": "Messaging App",
"Keywords": "whatsapp;messaging;chat;web",
"StartupWMClass": "whatsapp-web-wrapper"
}
}
},
"afterPack": "scripts/after-pack.js"
},
"devDependencies": {
"electron": "^37.2.3",
"electron-builder": "^26.0.12"
},
"dependencies": {
"electron-updater": "^6.6.2"
}
}