{
  "name": "ezpm2gui",
  "version": "1.11.1",
  "main": "dist/server/index.js",
  "bin": {
    "ezpm2gui": "bin/ezpm2gui.js",
    "ezpm2gui-generate-ecosystem": "bin/generate-ecosystem.js"
  },
  "scripts": {
    "start": "node dist/server/index.js",
    "dev": "concurrently --kill-others-on-fail --names \"server,client\" --prefix-colors \"cyan,green\" \"npm run dev:server\" \"npm run dev:client\"",
    "dev:server": "nodemon --exec ts-node src/server/index.ts",
    "dev:client": "cd src/client && npm run dev",
    "build": "node scripts/build.js",
    "mobile": "node scripts/deploy-mobile.js",
    "mobile:dev": "node scripts/deploy-mobile.js dev",
    "mobile:android": "node scripts/deploy-mobile.js android --debug --install",
    "mobile:android:release": "node scripts/deploy-mobile.js android --release",
    "mobile:debug": "powershell -ExecutionPolicy Bypass -File scripts/Debug-Mobile.ps1",
    "mobile:debug:dump": "powershell -ExecutionPolicy Bypass -File scripts/Debug-Mobile.ps1 -Dump",
    "mobile:ps": "powershell -ExecutionPolicy Bypass -File scripts/Deploy-Mobile.ps1",
    "mobile:ps:release": "powershell -ExecutionPolicy Bypass -File scripts/Deploy-Mobile.ps1 -Mode release -Install -Launch",
    "mobile:ps:debug": "powershell -ExecutionPolicy Bypass -File scripts/Deploy-Mobile.ps1 -Mode debug -Install -Launch",
    "mobile:ios": "node scripts/deploy-mobile.js ios",
    "mobile:ios:release": "node scripts/deploy-mobile.js ios --release",
    "build:server": "tsc",
    "build:client": "cd src/client && npm run build",
    "build:bin": "tsc --project tsconfig.bin.json",
    "prepare": "npm run build",
    "test": "ts-node tests/unit/server-selection.test.ts && ts-node tests/unit/theme.test.ts && ts-node tests/unit/app-version.test.ts",
    "postinstall": "node scripts/postinstall.js"
  },
  "keywords": [
    "pm2",
    "gui",
    "monitor",
    "process-manager",
    "dashboard"
  ],
  "author": "Chandan Bhagat",
  "license": "AGPL-3.0-or-later",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thechandanbhagat/ezpm2gui.git"
  },
  "description": "A modern web-based GUI for PM2 process manager",
  "files": [
    "dist/",
    "bin/",
    "src/client/build/",
    "scripts/postinstall.js"
  ],
  "dependencies": {
    "@tailwindcss/postcss": "^4.1.14",
    "@types/better-sqlite3": "^7.6.13",
    "@types/node-cron": "^3.0.11",
    "axios": "^1.9.0",
    "better-sqlite3": "^12.9.0",
    "chart.js": "^4.4.9",
    "cron-parser": "^5.4.0",
    "dotenv": "^16.5.0",
    "express": "^4.18.3",
    "node-cron": "^4.2.1",
    "pm2": "^6.0.5",
    "react": "^19.1.0",
    "react-dom": "^19.1.0",
    "react-scripts": "^5.0.1",
    "socket.io": "^4.8.1",
    "ssh2": "^1.16.0",
    "uuid": "^11.0.5"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/node": "^22.15.17",
    "@types/react": "^19.1.4",
    "@types/react-dom": "^19.1.5",
    "@types/socket.io": "^3.0.2",
    "@types/ssh2": "^1.15.5",
    "@types/uuid": "^10.0.0",
    "concurrently": "^9.1.2",
    "cross-env": "^10.1.0",
    "nodemon": "^3.1.10",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.3"
  }
}
