FreeDATA/gui/package.json

91 lines
1.8 KiB
JSON
Raw Normal View History

2021-07-17 07:03:40 +00:00
{
"name": "FreeDATA",
"version": "0.0.1-alpha.23",
"description": "FreeDATA ",
2021-07-17 07:03:40 +00:00
"main": "main.js",
"scripts": {
"start": "electron .",
2022-02-25 09:00:18 +00:00
"test": "echo \"Error: no test specified\" && exit 1"
2021-07-17 07:03:40 +00:00
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
2021-07-17 07:03:40 +00:00
"repository": {
"type": "git",
"url": "https://github.com/DJ2LS/FreeDATA.git"
2021-07-17 07:03:40 +00:00
},
"keywords": [
"TNC",
"GUI",
2021-08-10 18:22:57 +00:00
"FreeDATA",
2021-07-17 07:03:40 +00:00
"codec2"
],
"author": "DJ2LS",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/DJ2LS/FreeDATA/issues"
2021-07-17 07:03:40 +00:00
},
"homepage": "https://freedata.app",
2021-07-17 07:03:40 +00:00
"dependencies": {
2021-08-08 17:37:53 +00:00
"bootstrap": "^5.1.0",
"bootstrap-icons": "^1.8.1",
"bootswatch": "^5.1.3",
2021-09-04 18:33:03 +00:00
"chart.js": "^3.5.1",
"chartjs-plugin-annotation": "^1.0.2",
"electron-db": "^0.15.7",
"electron-log": "^4.4.6",
2022-02-25 08:28:42 +00:00
"electron-updater": "^5.0.0",
"lowdb": "^3.0.0",
"qth-locator": "^2.1.0",
"stormdb": "^0.5.2"
2021-08-08 17:29:18 +00:00
},
2021-08-08 15:12:57 +00:00
"devDependencies": {
"electron": "^17.0.0",
"electron-builder": "^22.14.13"
},
"build": {
"productName": "FreeDATA",
"appId": "app.freedata",
"directories": {
"buildResources": "src/img",
"output": "dist"
},
"dmg": {
"icon": "src/img/icon.png",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"icon": "src/img/icon.png",
"target": [
"nsis"
]
},
"linux": {
"icon": "src/img/icon.png",
"target": [
"AppImage"
],
"category": "Development"
},
"publish": {
2022-02-25 09:29:38 +00:00
"provider": "github",
"releaseType": "release"
2022-02-25 09:29:38 +00:00
},
"extraResources": [
"./tnc/**"
]
}
2021-07-17 07:03:40 +00:00
}