Files
ms365-electron/package.json
Agampreet Singh ee1aee9cbf v0.4.0
Added logger, shows dialog when download is completed, and shows a right click menu just like in a browser

v0.4.0

Added logger, shows dialog when download is completed, and shows a right click menu just like in a browser

Fix build.sh

Update build.sh
2021-11-11 12:24:00 +05:30

89 lines
2.2 KiB
JSON

{
"name": "ms-office-electron",
"version": "0.4.0",
"description": "An Unofficial Microsoft Office Online Desktop Client. Free of Cost.",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/agam778/MS-Office-Electron.git"
},
"build": {
"extraFiles": [
"icon.png",
"license.txt",
"icon2.png"
],
"appId": "com.agampreet.ms-office-electron",
"productName": "MS-Office-Electron",
"linux": {
"category": "Office",
"desktop": {
"Comment": "An Unofficial Microsoft Office Online Desktop Client. Free of Cost.",
"Name": "MS Office - Electron",
"StartupNotify": "true",
"Terminal": "false",
"Type": "Application",
"Categories": "Office;"
},
"icon": "icon.png",
"artifactName": "ms-office-electron-setup-${version}-${arch}.${ext}",
"executableName": "MS-Office-Electron",
"maintainer": "Agampreet Singh <agam778@zohomail.in>",
"target": [
"deb",
"rpm",
"AppImage"
]
},
"deb": {
"compression": "bzip2"
},
"mac": {
"category": "public.app-category.office",
"target": [
"dmg"
],
"icon": "icon.icns"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"license": "license.txt",
"artifactName": "ms-office-electron-setup-${version}-${arch}.${ext}"
},
"win": {
"target": [
"nsis"
],
"icon": "icon.ico"
},
"directories": {
"output": "release"
}
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": {
"name": "Agampreet Singh",
"email": "agam778@zohomail.in",
"url": "https://agam778.is-a.dev/"
},
"license": "MIT",
"devDependencies": {
"electron": "^15.x.x",
"electron-builder": "^22.x.x"
},
"dependencies": {
"about-window": "^1.x.x",
"electron-context-menu": "^3.x.x",
"electron-dl": "^3.x.x",
"electron-log": "^4.4.1",
"electron-updater": "^4.x.x",
"is-online": "^9.x.x"
}
}