-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "android-messages",
"productName": "Android Messages",
"appId": "com.antoineguilbert.android-messages",
"version": "2.0.0",
"description": "Just a simple project made with electron JS to show Android Messages from Google in a app with notifications.",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"build": "electron-builder",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoineguilbert/android-messages-for-desktop.git"
},
"author": "Antoine Guilbert",
"license": "MIT",
"homepage": "https://github.com/antoineguilbert/android-messages-for-desktop/blob/master/README.md",
"build": {
"appId": "com.antoineguilbert.android-messages",
"mac": {
"category": "public.app-category.social-networking",
"target": [
{
"target": "dmg",
"arch": [
"universal"
]
}
]
},
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": [
{
"provider": "github",
"owner": "antoineguilbert",
"repo": "android-messages-for-desktop"
}
]
},
"devDependencies": {
"electron": "^24.1.2",
"electron-builder": "^24.2.1"
},
"dependencies": {
"electron-context-menu": "^3.1.1",
"electron-updater": "^5.3.0",
"electron-window-state": "^5.0.3",
"i18n": "^0.15.1",
"latest-version": "^7.0.0"
}
}