-
-
Notifications
You must be signed in to change notification settings - Fork 335
Expand file tree
/
Copy pathpackage.json
More file actions
175 lines (175 loc) · 5.35 KB
/
package.json
File metadata and controls
175 lines (175 loc) · 5.35 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "teams-for-linux",
"version": "2.8.1",
"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": "ismaelmartinez@gmail.com",
"url": "https://github.com/IsmaelMartinez/"
},
"license": "GPL-3.0-or-later",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "eslint **/*.js",
"test:unit": "node --test 'tests/unit/*.test.js'",
"test:e2e": "playwright test",
"test:authenticated": "playwright test --config playwright.authenticated.config.js",
"cross-distro": "cd tests/cross-distro && ./run.sh",
"cross-distro:list": "cd tests/cross-distro && ./run.sh --list",
"cross-distro:smoke": "cd tests/cross-distro && ./scripts/smoke-check.sh",
"prestart": "npm ci",
"start": "electron ./app --trace-warnings",
"start:dev": "electron ./app --trace-warnings --no-sandbox",
"generate-release-info": "node scripts/generateReleaseInfo.js",
"generate-ipc-docs": "node scripts/generateIpcDocs.js",
"prebuild": "npm run generate-release-info",
"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:linux:snap:arm64": "electron-builder --arm64 -l snap",
"dist:mac:x64": "electron-builder --mac --x64",
"dist:mac:arm64": "electron-builder --mac --arm64",
"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.4",
"electron-log": "^5.4.3",
"electron-store": "11.0.2",
"electron-updater": "^6.8.3",
"electron-window-state": "5.0.3",
"mqtt": "^5.15.1",
"yargs": "^18.0.0"
},
"devDependencies": {
"@electron/fuses": "^2.1.1",
"@eslint/js": "^10.0.1",
"electron": "41.2.1",
"@playwright/test": "1.59.1",
"electron-builder": "^26.8.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"http-server": "^14.1.1",
"xml2js": "^0.6.2"
},
"overrides": {
"follow-redirects": "^1.16.0"
},
"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.",
"executableArgs": [
"--ozone-platform=x11"
],
"desktop": {
"entry": {
"Name": "Teams for Linux",
"Comment": "Unofficial client for Microsoft Teams for Linux"
}
},
"target": [
"rpm",
"deb",
"tar.gz",
"AppImage"
],
"publish": {
"provider": "github",
"releaseType": "draft"
},
"releaseInfo": {
"releaseNotesFile": "release-info.json"
}
},
"rpm": {
"depends": [
"gtk3",
"libnotify",
"nss",
"libXScrnSaver",
"(libXtst or libXtst6)",
"xdg-utils",
"at-spi2-core",
"(libuuid or libuuid1)"
],
"fpm": [
"--rpm-rpmbuild-define=_build_id_links none",
"--rpm-digest=sha256"
]
},
"snap": {
"summary": "Teams for Linux",
"confinement": "strict",
"grade": "stable",
"base": "core22",
"executableArgs": [
"--ozone-platform=x11"
],
"plugs": [
"default",
"audio-record",
"camera",
"hardware-observe",
"network-bind",
"network-manager-observe",
"removable-media",
"screen-inhibit-control",
"system-observe",
"upower-observe"
],
"publish": [
"snapStore"
]
},
"mac": {
"category": "public.app-category.productivity",
"extendInfo": {
"NSCameraUsageDescription": "We need camera access for video calls.",
"NSMicrophoneUsageDescription": "We need microphone access for audio."
},
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"afterPack": "scripts/afterpack.js"
}
}