Files
akartonplanning/package.json
2025-09-25 11:22:46 +02:00

88 lines
2.1 KiB
JSON

{
"name": "ms-365-electron",
"version": "2.1.0",
"type": "module",
"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": "agam778@zohomail.in",
"url": "https://agam778.is-a.dev/"
},
"build": {
"extraFiles": [
"LICENSE"
],
"appId": "com.daanselen.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": "Daan Selen <dselen@nerthus.nl>",
"target": [
"deb"
]
},
"directories": {
"output": "release"
}
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"license": "MIT",
"devDependencies": {
"electron": "^38.1.2",
"electron-builder": "^26.0.12",
"eslint": "^9.36.0",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2"
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.26.6",
"@xhayper/discord-rpc": "^1.0.21",
"axios": "^1.4.0",
"check-internet-connected": "^2.0.6",
"cross-fetch": "^4.1.0",
"electron-context-menu": "^4.0.0",
"electron-dl": "^4.0.0",
"electron-log": "^5.4.3",
"electron-prompt": "^1.7.0",
"electron-store": "^10.1.0",
"electron-updater": "^6.6.2",
"node-gyp": "^11.4.2"
},
"packageManager": "yarn@4.7.0"
}