first commit

This commit is contained in:
MCHost
2025-06-23 22:59:27 -04:00
commit b7c2fa6d19
18 changed files with 7675 additions and 0 deletions

59
package.json Normal file
View File

@ -0,0 +1,59 @@
{
"name": "sftp-browser",
"version": "1.0.0",
"description": "A web-based SFTP file browser that makes managing your server files easy!",
"main": "server.js",
"scripts": {
"startserver": "node server.js",
"startapp": "electron app.js",
"package": "electron-builder -lw"
},
"build": {
"appId": "org.simplecyber.sftp-browser",
"productName": "SFTP-Browser",
"files": [
"web/**/*",
"*.js",
"*.json"
],
"linux": {
"target": [
"deb"
],
"category": "Network",
"icon": "web/icon.png"
},
"win": {
"target": [
"zip"
],
"icon": "web/icon.png"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/CyberGen49/sftp-browser.git"
},
"author": "Kayla <kayla@cybah.me> (https://cybah.me)",
"license": "ISC",
"bugs": {
"url": "https://github.com/CyberGen49/sftp-browser/issues"
},
"homepage": "https://github.com/CyberGen49/sftp-browser#readme",
"dependencies": {
"archiver": "^6.0.1",
"body-parser": "^1.20.2",
"cyber-express-logger": "^1.0.5",
"dayjs": "^1.11.10",
"electron-squirrel-startup": "^1.0.0",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-ws": "^5.0.2",
"mime": "^3.0.0",
"ssh2-sftp-client": "^9.1.0",
"web-resources": "^2.3.0"
},
"devDependencies": {
"electron": "^26.2.4"
}
}