mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
839 B
36 lines
839 B
{
|
|
"release": "12",
|
|
"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 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": "GPL",
|
|
"dependencies": {
|
|
"bcryptjs": "^2.4.3",
|
|
"debug": "^4.3.4",
|
|
"express-session": "^1.18.0",
|
|
"ip": "^2.0.1",
|
|
"h3": "^1.11.1",
|
|
"qrcode": "^1.5.3",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"eslint-config-athom": "^3.1.3",
|
|
"tailwindcss": "^3.4.1"
|
|
},
|
|
"nodemonConfig": {
|
|
"ignore": [
|
|
"www/*"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": "18"
|
|
}
|
|
}
|
|
|