2022-05-25 14:28:19 -04:00
|
|
|
{
|
|
|
|
"name": "sentry",
|
2022-08-24 00:29:48 -04:00
|
|
|
"version": "0.3.0",
|
2022-05-25 14:28:19 -04:00
|
|
|
"description": "Desktop app to view system information and sensors",
|
|
|
|
"main": "main.js",
|
|
|
|
"scripts": {
|
|
|
|
"start": "electron .",
|
|
|
|
"build-linux": "electron-builder build --linux",
|
2022-05-25 16:25:10 -04:00
|
|
|
"build-windows": "electron-builder build --win",
|
2022-05-25 14:28:19 -04:00
|
|
|
"grunt": "grunt"
|
|
|
|
},
|
2022-08-23 19:24:19 -04:00
|
|
|
"repository": "https://git.metaunix.net/BitGoblin/sentry",
|
|
|
|
"homepage": "https://git.metaunix.net/BitGoblin/sentry#readme",
|
2022-05-25 14:28:19 -04:00
|
|
|
"keywords": [
|
|
|
|
"sensors",
|
|
|
|
"cpu",
|
|
|
|
"gpu",
|
|
|
|
"memory"
|
|
|
|
],
|
2022-08-23 19:24:19 -04:00
|
|
|
"author": "Gregory Ballantine <gballantine@bitgoblin.tech>",
|
2022-05-25 14:28:19 -04:00
|
|
|
"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": {
|
2022-08-24 00:29:48 -04:00
|
|
|
"appId": "tech.bitgoblin.sentry",
|
2022-05-25 14:28:19 -04:00
|
|
|
"copyright": "Copyright © 2022 ${author}",
|
|
|
|
"win": {
|
2022-05-25 17:10:00 -04:00
|
|
|
"target": "nsis",
|
2022-05-25 14:28:19 -04:00
|
|
|
"icon": "build/icon.png"
|
|
|
|
},
|
2022-05-25 17:10:00 -04:00
|
|
|
"nsis": {
|
|
|
|
"oneClick": false,
|
|
|
|
"perMachine": true,
|
|
|
|
"allowElevation": true,
|
|
|
|
"allowToChangeInstallationDirectory": true,
|
|
|
|
"license": "LICENSE",
|
|
|
|
"artifactName": "${productName}-${version}.${ext}"
|
|
|
|
},
|
2022-05-25 14:28:19 -04:00
|
|
|
"linux": {
|
|
|
|
"target": [
|
|
|
|
"deb",
|
|
|
|
"rpm"
|
|
|
|
],
|
|
|
|
"icon": "build/icon.png"
|
|
|
|
},
|
|
|
|
"deb": {
|
|
|
|
"category": "internet"
|
|
|
|
},
|
|
|
|
"rpm": {
|
|
|
|
"packageCategory": "internet"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|