Files
akartonplanning/package.json

92 lines
2.2 KiB
JSON
Raw Normal View History

{
"name": "ms-365-electron",
2024-08-20 01:29:56 +05:30
"version": "2.1.0",
2024-05-07 15:43:33 +05:30
"type": "module",
"description": "Unofficial Microsoft 365 Web Desktop Wrapper made with Electron",
2024-05-07 15:43:33 +05:30
"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": [
"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": {
"electron": "^35.0.0",
"electron-builder": "^26.0.12",
"eslint": "^9.0.0",
2024-07-21 17:04:59 +05:30
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2"
},
"dependencies": {
2023-06-10 01:24:08 +05:30
"@cliqz/adblocker-electron": "^1.26.6",
2023-07-27 22:54:32 +05:30
"@xhayper/discord-rpc": "^1.0.21",
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",
"cross-fetch": "^4.0.0",
"electron-context-menu": "^4.0.0",
"electron-dl": "^4.0.0",
2023-07-27 22:54:32 +05:30
"electron-log": "^5.0.0-beta.25",
"electron-prompt": "^1.7.0",
"electron-store": "^10.0.0",
2023-07-27 22:54:32 +05:30
"electron-updater": "^6.1.4",
"node-gyp": "^11.0.0"
2023-02-23 15:33:57 +05:30
},
"packageManager": "yarn@4.7.0"
}