forked from mahmoudbahaa/outlook-for-linux
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 3.84 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "outlook-for-linux",
"productName": "outlook-for-linux",
"version": "1.4.1",
"main": "app/index.js",
"description": "Unofficial client for Microsoft Outlook for Linux",
"homepage": "https://github.com/mahmoudbahaa/outlook-for-linux",
"keywords": [
"Outlook",
"Microsoft Outlook"
],
"repository": {
"type": "git",
"url": "git+ssh://github.com/mahmoudbahaa/outlook-for-linux"
},
"author": {
"name": "Mahmoud Bahaa",
"email": "mahmoud.bahaa.eg@gmail.com",
"url": "https://github.com/mahmoudbahaa/"
},
"license": "GPL-3.0-or-later",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "eslint **/*.js",
"start": "yarn install && electron ./app --remote-debugging-port=9222",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:linux": "electron-builder --linux",
"dist:linux:local": "yarn run dist:linux",
"dist:linux:targz": "electron-builder --x64 --armv7l --arm64 -l tar.gz",
"dist:linux:deb": "electron-builder --x64 --armv7l --arm64 -l deb",
"dist:linux:rpm": "electron-builder --x64 --armv7l --arm64 -l rpm",
"dist:linux:appimage": "electron-builder --x64 --armv7l --arm64 -l AppImage",
"dist:linux:snap": "electron-builder -l snap",
"dist:linux:snap:armv7l": "electron-builder --armv7l -l snap",
"dist:mac": "electron-builder --mac",
"dist:windows": "electron-builder --windows --x64",
"dist:linux:x64": "electron-builder --x64 -l tar.gz deb rpm AppImage",
"dist:linux:arm64": "electron-builder --arm64 -l tar.gz deb rpm AppImage",
"dist:linux:arm": "electron-builder --armv7l -l tar.gz deb rpm AppImage",
"release": "electron-builder"
},
"dependencies": {
"@homebridge/dbus-native": "0.7.8",
"electron-is-dev": "2.0.0",
"electron-store": "8.1.0",
"electron-window-state": "5.0.3",
"lucid-log": "^0.0.3",
"node-sound": "^0.0.8",
"yargs": "17.7.2"
},
"devDependencies": {
"electron": "43.2.0",
"electron-builder": "26.7.0",
"eslint": "8.51.0",
"yarn": "1.22.22"
},
"build": {
"appId": "outlook-for-linux",
"productName": "outlook-for-linux",
"extraMetadata": {
"version": "1.4.1"
},
"protocols": {
"name": "msoutlook",
"schemes": [
"msoutlook",
"mailto"
]
},
"extraResources": [
{
"from": "app/assets/sounds",
"to": "assets/sounds"
}
],
"linux": {
"category": "Chat;Network;Office",
"packageCategory": "net",
"executableName": "outlook-for-linux",
"synopsis": "Outlook for Linux",
"description": "Unofficial Microsoft Outlook client for Linux using Electron. It uses the Web App and wraps it as a standalone application using Electron.",
"desktop": {
"entry": {
"Name": "Microsoft Outlook",
"Comment": "Unofficial Microsoft Outlook client for Linux",
"StartupWMClass": "outlook-for-linux",
"Icon": "outlook-for-linux",
"Type": "Application",
"MimeType": "x-scheme-handler/mailto;x-scheme-handler/msoutlook;"
}
},
"target": [
"rpm",
"deb",
"tar.gz",
"AppImage"
],
"publish": {
"provider": "github",
"releaseType": "draft"
}
},
"rpm": {
"fpm": [
"--rpm-rpmbuild-define=_build_id_links none"
]
},
"snap": {
"summary": "Outlook for Linux",
"confinement": "strict",
"grade": "stable",
"environment": {
"DISABLE_WAYLAND": 1
},
"plugs": [
"default",
"wayland",
"hardware-observe",
"network-bind",
"network-manager-observe",
"system-observe"
],
"publish": [
"snapStore"
]
},
"mac": {
"category": "public.app-category.productivity"
}
}
}