* Russian translation * Add Prometheus metrics [Feat]: Simple Stats API #1285 * Revert "Add Prometheus metrics" This reverts commit a998f6be8a0c54a5daffe70a0fc3d8b9ed53a960. * Add Prometheus metrics [Feat]: Simple Stats API #1285 * Fix short link. Generate One Time Link (#1301) Co-authored-by: Vadim Babadzhanyan <vadim.babadzhanyan@my.games> * fix one time links (#1304) Closes #1302 Co-authored-by: Bernd Storath <999999bst@gmail.com> * fixup: issue templates due to labels reorg Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com> * Separate port for prometheus metrics Add Prometheus metrics [Feat]: Simple Stats API #1285 * Separate port for prometheus metrics Add Prometheus metrics [Feat]: Simple Stats API #1285 * Fix port in Readme Separate port for prometheus metrics Add Prometheus metrics [Feat]: Simple Stats API #1285 * Add Prometheus port in Service Separate port for prometheus metrics Add Prometheus metrics [Feat]: Simple Stats API #1285 * Revert "Add Prometheus port in Service" This reverts commit a7376abcf1fe2b729ab05ba0d49977ab5a2642ea. * Revert "Fix port in Readme" This reverts commit 9760bde2f2dc4428b0bf0b27d91bbded1c2ad05d. * Revert "Separate port for prometheus metrics" This reverts commit 58f5b6806e20c7704ff04247f384d30c2845a34e. * Revert "Separate port for prometheus metrics" This reverts commit 6d246ea4bda265f8b8b9e99acb336aeb26c9fa17. * Add Prometheus metrics with Basic Auth [Feat]: Simple Stats API #1285 * Disable by default [Feat]: Simple Stats API #1285 * [Feat]: Simple Stats API #1285 * Update README.md --------- Co-authored-by: Vadim Babadzhanyan <vadim.babadzhanyan@my.games> Co-authored-by: Bernd Storath <bernd.storath@offizium.de> Co-authored-by: Philip H <47042125+pheiduck@users.noreply.github.com>
41 lines
950 B
JSON
41 lines
950 B
JSON
{
|
|
"release": {
|
|
"version": "14"
|
|
},
|
|
"name": "wg-easy",
|
|
"version": "1.0.1",
|
|
"description": "The easiest way to run WireGuard VPN + Web-based Admin UI.",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"serve": "DEBUG=Server,WireGuard npx nodemon server.js",
|
|
"serve-with-password": "PASSWORD=wg npm run serve",
|
|
"lint": "eslint .",
|
|
"buildcss": "npx tailwindcss -i ./www/src/css/app.css -o ./www/css/app.css"
|
|
},
|
|
"author": "Emile Nijssen",
|
|
"license": "CC BY-NC-SA 4.0",
|
|
"dependencies": {
|
|
"basic-auth": "^2.0.1",
|
|
"bcryptjs": "^2.4.3",
|
|
"crc-32": "^1.2.2",
|
|
"debug": "^4.3.6",
|
|
"express-session": "^1.18.0",
|
|
"h3": "^1.12.0",
|
|
"qrcode": "^1.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/forms": "^0.5.7",
|
|
"eslint-config-athom": "^3.1.3",
|
|
"nodemon": "^3.1.4",
|
|
"tailwindcss": "^3.4.10"
|
|
},
|
|
"nodemonConfig": {
|
|
"ignore": [
|
|
"www/*"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|