This repository has been archived by the owner on Aug 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.35 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
{
"name": "linux-teams",
"productName": "linux-teams",
"version": "2.1.0",
"description": "An unofficial Microsoft Teams application for Linux",
"license": "MIT",
"main": "app/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"clean": "rm -rf dist",
"prebuild": "npm run -s clean",
"build": "electron-builder --linux",
"pack": "electron-builder --dir",
"start": "electron .",
"lint": "eslint ./app",
"format": "prettier --write \"./**/*.{hmtl,css,js,json,md}\""
},
"dependencies": {
"electron-context-menu": "~0.13.0",
"electron-store": "^4.0.0",
"electron-window-state": "^5.0.3",
"semver": "^6.3.0"
},
"devDependencies": {
"electron": "^6.0.1",
"electron-builder": "^21.1.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
},
"build": {
"appId": "com.github.arslivinski.linux-teams",
"linux": {
"category": "Network;InstantMessaging",
"packageCategory": "net",
"executableName": "linux-teams",
"synopsis": "Microsoft Teams Client",
"description": "An unofficial Microsoft Teams application for Linux",
"desktop": {
"Name": "Linux Teams",
"Comment": "An unofficial Microsoft Teams application for Linux",
"StartupWMClass": "linux-teams",
"Type": "Application",
"Terminal": false
},
"target": [
"AppImage",
"deb",
"rpm",
"tar.gz"
]
}
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2019
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
]
},
"prettier": {
"endOfLine": "lf",
"trailingComma": "all"
},
"author": {
"name": "Anderson Slivinski",
"email": "[email protected]",
"url": "https://github.com/arslivinski"
},
"homepage": "https://github.com/arslivinski/xteams#readme",
"bugs": {
"url": "https://github.com/arslivinski/xteams/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arslivinski/xteams.git"
},
"keywords": [
"Microsoft Teams",
"MS Teams",
"Teams",
"client",
"Linux",
"Ubuntu",
"Fedora",
"Electron"
]
}