forked from ivelkov/teams-for-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "teams-for-linux",
"version": "0.0.8",
"description": "Unofficial client for Microsoft Teams for Linux",
"homepage": "https://github.com/ivelkov/teams-for-linux",
"keywords": [
"Teams",
"Microsoft Teams"
],
"repository": {
"type": "git",
"url": "git+ssh://github.com/ivelkov/teams-for-linux"
},
"author": "Ivelin Velkov <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"start": "electron ./app",
"start-debug": "WEB_DEBUG=1 electron --disable-http-cache ./app",
"pack": "build --dir",
"dist": "build"
},
"devDependencies": {
"electron": "^1.8.4",
"electron-builder": "^20.8.2"
},
"build": {
"appId": "teams-for-linux",
"asar": false,
"linux": {
"category": "Network;Chat",
"packageCategory": "net",
"executableName": "teams",
"synopsis": "Microsoft Teams for Linux",
"description": "Unofficial Microsoft Teams client for Linux using Electron. It uses the Web App\n and wraps it as a standalone application using Electron.",
"desktop": {
"Name": "Microsoft Teams for Linux",
"Comment": "Unofficial client for Microsoft Teams for Linux",
"StartupWMClass": "teams-for-linux"
},
"target": [
"rpm",
"deb",
"pacman",
"tar.gz"
]
}
},
"dependencies": {}
}