{ "name": "sentry", "version": "0.2.2", "description": "Desktop app to view system information and sensors", "main": "main.js", "scripts": { "start": "electron .", "build-linux": "electron-builder build --linux", "build-windows": "electron-builder build --win", "grunt": "grunt" }, "repository": "https://git.metaunix.net/BitGoblin/sentry", "homepage": "https://git.metaunix.net/BitGoblin/sentry#readme", "keywords": [ "sensors", "cpu", "gpu", "memory" ], "author": "Gregory Ballantine ", "license": "BSD-2-Clause", "devDependencies": { "electron": "^18.2.4", "electron-builder": "^23.0.3", "grunt": "^1.5.3", "grunt-contrib-coffee": "^2.1.0", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-sass": "^2.0.0", "grunt-contrib-watch": "^1.1.0", "grunt-twig-render": "^1.8.3" }, "dependencies": { "systeminformation": "^5.11.15" }, "build": { "appId": "net.bitgoblin.sentry", "copyright": "Copyright © 2022 ${author}", "win": { "target": "nsis", "icon": "build/icon.png" }, "nsis": { "oneClick": false, "perMachine": true, "allowElevation": true, "allowToChangeInstallationDirectory": true, "license": "LICENSE", "artifactName": "${productName}-${version}.${ext}" }, "linux": { "target": [ "deb", "rpm" ], "icon": "build/icon.png" }, "deb": { "category": "internet" }, "rpm": { "packageCategory": "internet" } } }