Sentry/package.json
Gregory Ballantine 64a588c60b
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed
Added project homepage to Electron build config
2022-05-25 16:30:14 -04:00

57 lines
1.3 KiB
JSON

{
"name": "sentry",
"version": "0.1.0",
"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/metaunix/sentry",
"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",
"homepage": "https://git.metaunix.net/metaunix/sentry",
"copyright": "Copyright © 2022 ${author}",
"win": {
"target": "msi",
"icon": "build/icon.png"
},
"linux": {
"target": [
"deb",
"rpm"
],
"icon": "build/icon.png"
},
"deb": {
"category": "internet"
},
"rpm": {
"packageCategory": "internet"
}
}
}