feat: initial commit - ServerManager Pro v2.0.0

This commit is contained in:
2025-11-26 23:21:44 +03:00
commit af51c68d7f
39 changed files with 23191 additions and 0 deletions
+104
View File
@@ -0,0 +1,104 @@
{
"name": "servermanager-pro",
"version": "2.0.0",
"description": "Professional Server Management Tool for Linux & Windows",
"main": "public/electron.js",
"homepage": "./",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron . --no-sandbox --disable-setuid-sandbox",
"electron-dev": "concurrently \"npm start\" \"wait-on http://localhost:3000 && electron . --no-sandbox --disable-setuid-sandbox\"",
"dist": "npm run build && electron-builder",
"dist:linux": "npm run build && electron-builder --linux deb",
"dist:windows": "npm run build && electron-builder --win",
"dist:all": "npm run build && electron-builder -lw"
},
"dependencies": {
"concurrently": "^7.6.0",
"electron-is-dev": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"wait-on": "^7.2.0"
},
"devDependencies": {
"electron": "^22.0.0",
"electron-builder": "^23.6.0"
},
"build": {
"appId": "com.servermanager.pro",
"productName": "ServerManager Pro",
"directories": {
"output": "dist"
},
"files": [
"build/**/*",
"public/electron.js",
"public/preload.js",
"public/icon.png"
],
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
},
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
}
],
"category": "Development",
"desktop": {
"Name": "ServerManager Pro",
"Comment": "Professional Server Management Tool",
"Categories": "Development;"
},
"icon": "public/icon.png"
},
"win": {
"target": "nsis",
"icon": "public/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"author": {
"name": "ServerManager Team",
"email": "support@servermanager.com"
},
"keywords": [
"server",
"management",
"ssh",
"network",
"monitoring",
"linux",
"windows"
],
"license": "MIT",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}