-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "Office365WebDesktop",
"version": "0.7.1",
"description": "It is a simple desktop application for Office365 of the web version for linux",
"main": "./src/main.js",
"scripts": {
"start": "electron .",
"distLinux": "electron-builder --linux snap",
"distWin": "electron-builder --win portable"
},
"repository": "https://github.com/rafgui12/office365webdesktop.git",
"keywords": [
"Office",
"desktopApp",
"start",
"WebApp",
"Word",
"Excel",
"Power Point",
"Office365",
"Linux"
],
"author": {
"name": "Rafael Angulo Ealo",
"email": "info@rafgui.com"
},
"license": "MIT",
"build": {
"appId": "com.rafgui.${name}",
"asar": true,
"copyright": "MIT ©2021 Rafgui012.",
"linux": {
"category": "Office;Productivity",
"packageCategory": "Office;Productivity",
"description": "It is a simple desktop application for Office365 of the web version for linux",
"synopsis": "Office365 Desktop WebViewApp",
"icon": "./src/images/icon.icns",
"target": [
"dir",
"snap"
],
"maintainer": "Rafgui012 <info@rafgui.com>",
"artifactName": "${name}-${version}-${arch}.${ext}"
},
"win": {
"target": "nsis",
"icon": "./src/images/icon.ico",
"publisherName": "Rafgui012 <info@rafgui.com>",
"artifactName": "${name}-${version}-${arch}.${ext}"
}
},
"snap": {
"confinement": "strict",
"grade": "beta"
},
"devDependencies": {
"electron": "^22.0.0",
"electron-builder": "^22.10.3"
},
"dependencies": {
"@anujdatar/appconfig": "^2.2.0",
"electron-context-menu": "^3.6.1"
}
}