FreeDATA/gui/package.json
dj2ls 4844c1ea19 release test
it seems we need to tag files as soon as possible after a release with a new tag. If we are not doing so, releases will be stuck
2022-02-24 10:53:24 +01:00

93 lines
1.8 KiB
JSON

{
"name": "FreeDATA",
"version": "0.0.1-alpha.10",
"description": "FreeDATA ",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "electron-builder --publish always"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DJ2LS/FreeDATA.git"
},
"keywords": [
"TNC",
"GUI",
"FreeDATA",
"codec2"
],
"author": "DJ2LS",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/DJ2LS/FreeDATA/issues"
},
"homepage": "https://freedata.app",
"dependencies": {
"bootstrap": "^5.1.0",
"bootstrap-icons": "^1.8.1",
"bootswatch": "^5.1.3",
"chart.js": "^3.5.1",
"chartjs-plugin-annotation": "^1.0.2",
"electron-log": "^4.4.6",
"electron-updater": "^5.0.0",
"qth-locator": "^2.1.0"
},
"devDependencies": {
"electron": "^17.0.0",
"electron-builder": "^22.14.13"
},
"build": {
"productName": "FreeDATA",
"appId": "app.freedata",
"directories": {
"output": "dist"
},
"dmg": {
"publish": [
"github"
],
"icon": "./build/icon.png",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"publish": [
"github"
],
"icon": "./build/icon.png",
"target": [
"nsis"
]
},
"linux": {
"publish": [
"github"
],
"icon": "./build/icon.png",
"target": [
"AppImage"
],
"category": "Development"
},
"extraResources": [
"./tnc/**"
]
}
}