ваше сообщение коммита

This commit is contained in:
2025-07-09 01:18:58 +03:00
parent c18b674364
commit 81dced1f11
54 changed files with 15732 additions and 214 deletions

33
webssh-agent/package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "webssh-agent",
"version": "1.0.0",
"description": "Local SSH tunnel agent for automatic web publishing",
"main": "agent.js",
"scripts": {
"start": "node agent.js",
"dev": "nodemon agent.js",
"install-service": "node install-service.js"
},
"keywords": [
"ssh",
"tunnel",
"nginx",
"ssl",
"web",
"publishing"
],
"author": "DApp Business",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"fs-extra": "^11.1.1",
"chalk": "^4.1.2"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=16.0.0"
}
}