Sentry/package.json
Gregory Ballantine c451237ab9
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
Version bump to v0.3.0
2022-08-24 00:29:48 -04:00

65 lines
1.5 KiB
JSON

{
"name": "sentry",
"version": "0.3.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/BitGoblin/sentry",
"homepage": "https://git.metaunix.net/BitGoblin/sentry#readme",
"keywords": [
"sensors",
"cpu",
"gpu",
"memory"
],
"author": "Gregory Ballantine <gballantine@bitgoblin.tech>",
"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": "tech.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"
}
}
}