Sentry/package.json
Gregory Ballantine 6e6fa2b757
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Started the base Electron project
2022-05-25 14:28:19 -04:00

56 lines
1.2 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-win": "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",
"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"
}
}
}