forked from IsmaelMartinez/teams-for-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.7 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
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
{
"name": "teams-for-linux",
"version": "1.4.12",
"main": "app/index.js",
"description": "Unofficial client for Microsoft Teams for Linux",
"homepage": "https://github.com/IsmaelMartinez/teams-for-linux",
"keywords": [
"Teams",
"Microsoft Teams"
],
"repository": {
"type": "git",
"url": "git+ssh://github.com/IsmaelMartinez/teams-for-linux"
},
"author": {
"name": "Ismael Martinez",
"email": "[email protected]",
"url": "https://github.com/IsmaelMartinez/"
},
"license": "GPL-3.0-or-later",
"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",
"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": {
"@electron/remote": "^2.1.2",
"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/fuses": "^1.7.0",
"electron": "28.2.1",
"electron-builder": "24.9.1",
"eslint": "8.56.0",
"yarn": "1.22.21"
},
"build": {
"appId": "teams-for-linux",
"asarUnpack": [
"node_modules/spellchecker/vendor/hunspell_dictionaries"
],
"protocols": {
"name": "msteams",
"schemes": [
"msteams"
]
},
"extraResources": [
{
"from": "app/assets/sounds",
"to": "assets/sounds"
}
],
"linux": {
"category": "Chat;Network;Office",
"packageCategory": "net",
"executableName": "teams-for-linux",
"synopsis": "Teams for Linux",
"description": "Unofficial Microsoft Teams client for Linux using Electron. It uses the Web App and wraps it as a standalone application using Electron.",
"desktop": {
"Name": "Teams for Linux",
"Comment": "Unofficial client for Microsoft Teams for Linux",
"StartupWMClass": "teams-for-linux"
},
"target": [
"rpm",
"deb",
"tar.gz",
"AppImage"
],
"publish": {
"provider": "github",
"releaseType": "draft"
}
},
"rpm": {
"fpm": [
"--rpm-rpmbuild-define=_build_id_links none"
]
},
"snap": {
"summary": "Teams for Linux",
"confinement": "strict",
"grade": "stable",
"base": "core22",
"environment": {
"DISABLE_WAYLAND": 1
},
"plugs": [
"default",
"camera",
"screen-inhibit-control",
"wayland",
"upower-observe",
"audio-record",
"hardware-observe",
"network-bind",
"network-manager-observe",
"system-observe"
],
"publish": [
"snapStore"
]
},
"mac": {
"category": "public.app-category.productivity"
},
"afterPack": "scripts/afterpack.js"
}
}