-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.15 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.15 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
{
"name": "whatsapp-desktop",
"version": "0.5.4",
"repository": "https://github.com/oOthkOo/whatsapp-desktop.git",
"description": "Unofficial WhatsApp Desktop Client for OSX, Linux and Windows. Build with Electron.",
"main": "main.js",
"scripts": {
"dev": "electron --no-sandbox --debug=5858 ./app",
"preinstall": "cd app && yarn",
"gettext": "xgettext app/*.js -j --omit-header -o app/locale/messages.pot && xgettext app/html/*.html -L JavaScript -j --omit-header -o app/locale/messages.pot",
"clean": "./scripts/clean.sh",
"build:win": "./scripts/build-win-x64.sh",
"build:osx": "./scripts/build-darwin-x64.sh",
"build:osxm1": "./scripts/build-darwin-arm64.sh",
"build:linux": "./scripts/build-linux-x64.sh",
"build:linux32": "./scripts/build-linux-x32.sh",
"build:linuxarmv7l": "./scripts/build-linux-armv7l.sh",
"build:all": "./scripts/build-all.sh"
},
"devDependencies": {
"electron": "^17.0.0",
"electron-packager": "15.5.1"
},
"dependencies": {
"process-nextick-args": "^1.0.7",
"util-deprecate": "^1.0.2"
}
}