File size: 349 Bytes
996891a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | {
"name": "shellular-web",
"version": "1.0.0",
"description": "Web UI for Shellular — scan QR code to connect your VPS remotely",
"type": "module",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "node --watch app.js"
},
"dependencies": {
"express": "^4.19.2"
},
"engines": {
"node": ">=20"
}
}
|