forked from IsmaelMartinez/teams-for-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·89 lines (89 loc) · 2.51 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
{
"name": "teams-for-linux",
"productName": "Teams for Linux",
"version": "0.2.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": "[email protected]",
"url": "https://github.com/IsmaelMartinez/"
},
"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:appimage": "electron-builder --linux AppImage",
"dist:linux:snap": "electron-builder --linux snap",
"release": "electron-builder"
},
"dependencies": {
"electron-editor-context-menu": "^1.1.1",
"electron-native-notification": "^1.2.1",
"electron-spell-check-provider": "^1.1.1",
"electron-window-state": "^5.0.3",
"yargs": "^13.2.2"
},
"devDependencies": {
"electron": "^4.2.0",
"electron-builder": "^20.38.5",
"eslint": "^5.15.1",
"yarn": "^1.13.0"
},
"build": {
"appId": "teams-for-linux",
"asarUnpack": ["node_modules/spellchecker/vendor/hunspell_dictionaries"],
"linux": {
"category": "Chat;Network;Office",
"packageCategory": "net",
"executableName": "teams-for-linux",
"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",
"tar.gz",
"snap",
"AppImage",
"pacman"
],
"mimeTypes": [
"application/sip"
],
"publish": {
"provider": "github",
"releaseType": "draft"
}
},
"snap": {
"summary": "Teams for Linux",
"confinement": "strict",
"grade": "stable",
"plugs": [
"default",
"camera",
"screen-inhibit-control",
"wayland",
"upower-observe"
]
}
}
}