forked from agam778/MS-365-Electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.13 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
{
"name": "ms-365-electron",
"version": "1.0.0",
"description": "Unofficial Microsoft 365 Web Desktop Wrapper made with Electron",
"main": "app/main.js",
"repository": {
"type": "git",
"url": "https://github.com/agam778/MS-365-Electron.git"
},
"author": {
"name": "Agampreet Singh",
"email": "[email protected]",
"url": "https://agam778.is-a.dev/"
},
"build": {
"extraFiles": [
"LICENSE"
],
"appId": "com.agampreet.ms-365-electron",
"productName": "MS-365-Electron",
"artifactName": "MS-365-Electron-v${version}-${os}-${arch}.${ext}",
"mac": {
"identity": "null",
"category": "public.app-category.office",
"target": [
"dmg"
],
"icon": "./assets/icons/mac/icon.icns",
"files": [
"!node_modules/**/*.{mk,a,o,h}"
]
},
"win": {
"target": [
"nsis"
],
"icon": "./assets/icons/win/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"license": "LICENSE"
},
"linux": {
"category": "Office",
"icon": "./assets/icons/png",
"executableName": "ms-365-electron",
"maintainer": "Agampreet Singh <[email protected]>",
"target": [
"snap",
"deb",
"rpm",
"AppImage",
"tar.gz"
]
},
"directories": {
"output": "release"
}
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"license": "MIT",
"devDependencies": {
"electron": "^26.0.0",
"electron-builder": "^24.6.3",
"eslint": "^8.45.0"
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.26.6",
"@xhayper/discord-rpc": "^1.0.21",
"about-window": "^1.15.2",
"axios": "^1.4.0",
"check-internet-connected": "^2.0.6",
"cross-fetch": "^4.0.0",
"electron-context-menu": "^3.6.1",
"electron-dl": "^3.5.0",
"electron-log": "^5.0.0-beta.25",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.4",
"node-gyp": "^9.4.0"
},
"packageManager": "[email protected]"
}