Files
ms365-electron/package.json

87 lines
2.0 KiB
JSON
Raw Normal View History

{
"name": "ms-365-electron",
2023-03-26 11:30:42 +05:30
"version": "0.9.0",
"description": "Unofficial Microsoft 365 Web Desktop Wrapper made with Electron",
"main": "app/main.js",
"repository": {
"type": "git",
2023-02-15 19:19:00 +05:30
"url": "https://github.com/agam778/MS-365-Electron.git"
},
"author": {
"name": "Agampreet Singh",
"email": "agam778@zohomail.in",
2022-09-24 20:36:46 +05:30
"url": "https://agam778.is-a.dev/"
},
"build": {
"extraFiles": [
"/assets/icons",
"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"
],
2022-10-07 17:31:10 +05:30
"icon": "./assets/icons/win/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"license": "LICENSE"
},
"linux": {
"category": "Office",
2022-10-07 17:31:10 +05:30
"icon": "./assets/icons/png",
"executableName": "ms-365-electron",
"maintainer": "Agampreet Singh <agam778@zohomail.in>",
"target": [
2022-05-14 15:10:28 +05:30
"snap",
"deb",
"rpm",
2022-05-14 16:06:40 +05:30
"AppImage",
"tar.gz"
]
},
"directories": {
"output": "release"
}
},
"scripts": {
"start": "electron .",
2022-05-20 16:33:53 +05:30
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"license": "MIT",
"devDependencies": {
2023-06-09 18:09:31 +05:30
"electron": "^23.3.6",
"electron-builder": "^23.6.0",
2023-06-09 18:09:31 +05:30
"eslint": "^8.42.0"
},
"dependencies": {
"@xhayper/discord-rpc": "^1.0.17",
2023-06-09 18:09:31 +05:30
"axios": "^1.4.0",
2022-09-24 20:43:41 +05:30
"check-internet-connected": "^2.0.6",
2022-12-08 18:45:20 +05:30
"electron-context-menu": "^3.6.1",
"electron-dl": "^3.5.0",
2023-06-09 18:09:31 +05:30
"electron-log": "^5.0.0-beta.24",
"electron-store": "^8.1.0",
"electron-updater": "^5.3.0",
2023-02-15 19:17:58 +05:30
"node-gyp": "^9.3.1"
2023-02-23 15:33:57 +05:30
},
"packageManager": "yarn@3.6.0"
}