forked from IsmaelMartinez/teams-for-linux
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.97 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "outlook-for-linux",
"version": "0.0.1",
"main": "app/index.js",
"description": "Unofficial Linux client for Microsoft Outlook",
"homepage": "https://github.com/randykinne/outlook-for-linux",
"keywords": [
"Outlook",
"Microsoft Outlook"
],
"repository": {
"type": "git",
"url": "git+ssh://github.com/randykinne/outlook-for-linux"
},
"author": {
"name": "Randy Kinne",
"email": "[email protected]",
"url": "https://github.com/randykinne/"
},
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "eslint **/*.js",
"start": "yarn install && electron ./app",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:linux": "electron-builder --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 -p always",
"dist:linux:snap:armv7l": "electron-builder --x64 --armv7l -l snap -p always",
"release": "electron-builder"
},
"dependencies": {
"electron-dl": "ismaelmartinez/electron-dl",
"electron-editor-context-menu": "1.1.1",
"electron-native-notification": "1.2.1",
"electron-window-state": "5.0.3",
"spellchecker": "3.7.0",
"yargs": "14.0.0"
},
"devDependencies": {
"electron": "4.2.8",
"electron-builder": "22.5.1",
"eslint": "5.16.0",
"yarn": "1.22.4"
},
"build": {
"appId": "teams-for-linux",
"asarUnpack": [
"node_modules/spellchecker/vendor/hunspell_dictionaries"
],
"protocols": {
"name": "msteams",
"schemes": [
"msteams"
]
},
"linux": {
"category": "Chat;Network;Office",
"packageCategory": "net",
"executableName": "outlook-for-linux",
"synopsis": "Microsoft 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": {
"Name": "Microsoft Outlook for Linux",
"Comment": "Unofficial Linux client for Microsoft Outlook",
"StartupWMClass": "outlook-for-linux"
},
"target": [
"rpm",
"deb",
"tar.gz",
"AppImage"
],
"publish": {
"provider": "github",
"releaseType": "draft"
}
},
"snap": {
"summary": "Outlook for Linux",
"confinement": "strict",
"grade": "stable",
"environment": {
"DISABLE_WAYLAND": 1
},
"plugs": [
"default",
"camera",
"screen-inhibit-control",
"wayland",
"upower-observe"
],
"publish": {
"provider": "snapStore",
"releaseType": "edge"
}
}
}
}