36 lines
976 B
JSON
36 lines
976 B
JSON
{
|
|
"name": "wireguard-gui",
|
|
"version": "1.0.0",
|
|
"description": "Wireguard configurations GUI",
|
|
"homepage": "https://github.com/jjsalinas/wireguard-gui#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/jjsalinas/wireguard-gui/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jjsalinas/wireguard-gui.git"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Jose Jimenez",
|
|
"type": "commonjs",
|
|
"main": "src/main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"test": "test",
|
|
"build": "electron-builder",
|
|
"format": "prettier --write \"./**/*.{js,json,css,md,html}\"",
|
|
"format:check": "prettier --check \"src/**/*.{js,json,css,md,html}\""
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^40.6.0",
|
|
"electron-builder": "^26.8.1",
|
|
"prettier": "^3.8.1"
|
|
},
|
|
"build": {
|
|
"appId": "io.github.jjsalinas.wireguard-gui",
|
|
"mac": { "target": "dmg" },
|
|
"win": { "target": "nsis" },
|
|
"linux": { "target": "AppImage" }
|
|
}
|
|
}
|