forked from mimbrero/whatsapp-desktop-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 798 Bytes
/
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
{
"name": "whatsapp-desktop-linux",
"version": "1.2.3-2",
"description": "WhatsApp Desktop for Linux (unofficial)",
"main": "dist/index.js",
"scripts": {
"dist": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"start": "npm run dist && electron .",
"build": "npm run dist && electron-builder"
},
"author": "Alberto Mimbrero",
"license": "MIT",
"dependencies": {
"electron-store": "^8.1.0"
},
"devDependencies": {
"electron": "^21.0.1",
"electron-builder": "^23.3.3",
"typescript": "^4.8.4"
},
"build": {
"appId": "io.github.mimbrero.WhatsAppDesktop",
"directories": {
"output": "./build"
},
"files": [
"dist",
"package.json"
],
"extraFiles": [
"data"
]
}
}