-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.42 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
{
"name": "icloud-mail",
"version": "1.2.0",
"description": "An Unofficial desktop app for iCloud Mail",
"main": "main.js",
"homepage": "https://apps.himelrana.com/icloud-mail",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"asar": true,
"appId": "com.himelrana.icloud-mail",
"directories": {
"buildResources": "."
},
"files": [
"*",
"node_modules/**/*",
"package.json",
"icon.png"
],
"linux": {
"target": [
"snap",
"deb"
],
"icon": "./icon.png",
"category": "Network;TextTools;Office;GTK;GNOME"
},
"snap": {
"confinement": "strict",
"grade": "stable",
"summary": "Linux Client for iCloud Mail",
"plugs": [
"desktop",
"desktop-legacy",
"home",
"x11",
"unity7",
"browser-support",
"network",
"gsettings",
"opengl"
]
},
"deb": {
"icon": "./icon.png",
"category": "Network;TextTools;Office;GTK;GNOME"
}
},
"keywords": [],
"author": {
"name": "Himel",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"electron": "^30.0.1",
"electron-builder": "^24.13.3"
},
"dependencies": {
"electron-context-menu": "^3.6.1"
}
}