Files
ms365-electron/package.json
Agampreet Singh 720de58591 Update version to 0.7.3
- Update Dependencies
- Switch to "check-internet-connected" module for checking if user is online/offline
- Show message box when error occurs on RPC connection
- Update LICENSE and copyright
- Update useragents
2022-10-07 17:28:02 +05:30

83 lines
2.0 KiB
JSON

{
"name": "ms-office-electron",
"version": "0.7.3",
"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"
},
"author": {
"name": "Agampreet Singh",
"email": "agam778@zohomail.in",
"url": "https://agam778.is-a.dev/"
},
"build": {
"extraFiles": [
"/assets",
"LICENSE"
],
"appId": "com.agampreet.ms-office-electron",
"productName": "MS-Office-Electron",
"artifactName": "MS-Office-Electron-Setup-v${version}-${os}-${arch}.${ext}",
"mac": {
"identity": "null",
"category": "public.app-category.office",
"target": [
"dmg"
],
"icon": "./assets/generated/icons/mac/icon.icns"
},
"win": {
"target": [
"nsis"
],
"icon": "./assets/generated/icons/win/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"license": "LICENSE"
},
"linux": {
"category": "Office",
"icon": "./assets/generated/icons/png",
"executableName": "ms-office-electron",
"maintainer": "Agampreet Singh <agam778@zohomail.in>",
"target": [
"snap",
"deb",
"rpm",
"AppImage",
"tar.gz"
]
},
"directories": {
"output": "release"
}
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"license": "MIT",
"devDependencies": {
"electron": "^21.1.0",
"electron-builder": "^23.3.3",
"eslint": "^8.24.0"
},
"dependencies": {
"about-window": "^1.15.2",
"axios": "^1.1.0",
"check-internet-connected": "^2.0.6",
"discord-rpc": "^4.0.1",
"electron-context-menu": "^3.5.0",
"electron-dl": "^3.3.1",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
"electron-updater": "^5.2.1"
}
}