Files
akartonplanning/package.json

92 lines
2.3 KiB
JSON
Raw Normal View History

{
"resolutions": {
"@electron/node-gyp": "https://github.com/electron/node-gyp.git"
},
"name": "ms-365-electron",
2025-09-25 14:04:44 +02:00
"version": "2.1.1",
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",
"url": "https://github.com/DaanSelen/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.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"
],
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": "Daan Selen <dselen@nerthus.nl>",
"target": [
"deb"
]
},
"directories": {
"output": "release"
}
},
"scripts": {
"start": "electron .",
2025-09-25 11:25:05 +02:00
"build": "electron-builder",
2022-05-20 16:33:53 +05:30
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"license": "MIT",
"devDependencies": {
"electron": "^38.1.2",
"electron-builder": "^26.0.20",
"eslint": "^9.36.0",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2"
},
"dependencies": {
2025-09-25 12:33:42 +02:00
"@ghostery/adblocker-electron": "^2.11.6",
"@xhayper/discord-rpc": "^1.3.0",
"axios": "^1.12.2",
2022-09-24 20:43:41 +05:30
"check-internet-connected": "^2.0.6",
"cross-fetch": "^4.1.0",
"electron-context-menu": "^4.1.1",
"electron-dl": "^4.0.0",
"electron-log": "^5.4.3",
"electron-prompt": "^1.7.0",
"electron-store": "^10.1.0",
"electron-updater": "^6.6.8",
"node-gyp": "^11.4.2"
2023-02-23 15:33:57 +05:30
},
"packageManager": "yarn@1.22.22"
}