Sentry/package.json

65 lines
1.5 KiB
JSON
Raw Normal View History

2022-05-25 14:28:19 -04:00
{
"name": "sentry",
2022-05-26 13:06:29 -04:00
"version": "0.1.1",
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",
"build-windows": "electron-builder build --win",
2022-05-25 14:28:19 -04:00
"grunt": "grunt"
},
"repository": "https://git.metaunix.net/metaunix/sentry",
"homepage": "https://git.metaunix.net/metaunix/sentry#readme",
2022-05-25 14:28:19 -04:00
"keywords": [
"sensors",
"cpu",
"gpu",
"memory"
],
"author": "Gregory Ballantine <gballantine@metaunix.net>",
"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.metaunix.sentry",
"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"
}
}
}