FreeDATA/gui/package.json

80 lines
1.6 KiB
JSON
Raw Normal View History

2021-07-17 07:03:40 +00:00
{
"name": "FreeDATA",
2021-07-17 07:03:40 +00:00
"version": "0.0.1",
"description": "FreeDATA ",
2021-07-17 07:03:40 +00:00
"main": "main.js",
"scripts": {
"start": "electron .",
2021-08-10 18:24:50 +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",
2021-09-25 11:36:15 +00:00
"url": "git+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",
"bootswatch": "^5.1.3",
2021-09-04 18:33:03 +00:00
"chart.js": "^3.5.1",
"chartjs-plugin-annotation": "^1.0.2",
2021-08-08 17:29:18 +00:00
"qth-locator": "^2.1.0"
},
2021-08-08 15:12:57 +00:00
"devDependencies": {
"electron": "^17.0.0",
"electron-builder": "^22.14.13"
},
"build":{
"productName":"FreeDATA",
"appId":"app.freedata",
"dmg":{
"icon": "./src/icon_cube_border.png",
"contents":[
{
"x":130,
"y":220
},
{
"x":410,
"y":220,
"type":"link",
"path":"/Applications"
}
]
},
"win":{
"icon": "./src/icon_cube_border.png",
"target":[
"nsis",
"msi"
]
},
"linux":{
"icon": "./src/icon_cube_border.png",
"target":[
"AppImage"
],
"category":"Development"
},
"directories":{
"output":"dist"
},
"extraResources": ["./tnc/**"]
}
2021-07-17 07:03:40 +00:00
}