Initial commit

This commit is contained in:
2026-02-15 12:07:37 +01:00
commit b0aeb6232b
8 changed files with 1140 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"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": "main.js",
"scripts": {
"start": "electron .",
"test": "test",
"format": "prettier --write \"./**/*.{js,json,css,md,html}\"",
"format:check": "prettier --check \"src/**/*.{js,json,css,md,html}\""
},
"devDependencies": {
"electron": "^40.4.1",
"prettier": "^3.8.1"
}
}