generated from sindresorhus/electron-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "whatsapp-caller",
"productName": "WhatsApp Caller",
"version": "0.2.0",
"description": "Electron app to use tel: links with WhatsApp",
"license": "MIT",
"repository": "lucasff/electron-whatsapp-caller",
"author": {
"name": "Lucas Freitas",
"email": "[email protected]",
"url": "https://lucasfreitas.me"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "xo",
"test": "npm run lint",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --macos --linux --windows",
"prettier": "prettier ",
"release": "np"
},
"dependencies": {
"electron-context-menu": "^3.0.0",
"electron-debug": "^3.2.0",
"electron-store": "^8.0.1",
"electron-unhandled": "^4.0.1",
"electron-updater": "^5.0.1",
"electron-util": "^0.17.2",
"libphonenumber-js": "^1.10.13",
"rage-edit": "^1.2.0"
},
"devDependencies": {
"electron": "^21.2.0",
"electron-builder": "^23.6.0",
"np": "^7.6.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"xo": "^0.52.4"
},
"xo": {
"envs": [
"node",
"browser"
]
},
"np": {
"publish": false,
"releaseDraft": false
},
"build": {
"appId": "me.lucasfreitas.WhatsAppCaller",
"mac": {
"category": "public.app-category.social-networking",
"darkModeSupport": true
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Network;Chat"
}
}
}