{
  "name": "svps",
  "version": "2.3.0",
  "type": "module",
  "main": "./lib/index.js",
  "bin": {
    "svps": "bin/index.js"
  },
  "dependencies": {
    "@types/ssh2": "^1.15.0",
    "ssh2": "^1.15.0"
  },
  "devDependencies": {
    "@types/node": "^20.11.30",
    "@typescript-eslint/eslint-plugin": "^7.3.1",
    "@typescript-eslint/parser": "^7.3.1",
    "eslint": "^8.57.0",
    "eslint-import-resolver-typescript": "^3.6.1",
    "eslint-plugin-import": "^2.29.1",
    "packages-update": "^1.2.1",
    "poku": "^1.9.2",
    "prettier": "^3.2.5",
    "typescript": "^5.4.2"
  },
  "scripts": {
    "build": "rm -rf ./bin ./lib ./tests && npx tsc",
    "build:examples": "npx tsc -p examples/tsconfig.json",
    "patch": "npm run update; npm audit fix; npm version patch --no-git-tag-version",
    "minor": "npm run update; npm audit fix; npm version minor --no-git-tag-version",
    "major": "npm run update; npm audit fix; npm version major --no-git-tag-version",
    "update": "npx npu; npm i --ignore-scripts",
    "eslint:checker": "npx eslint . --ext .js,.ts",
    "eslint:fix": "npx eslint . --fix",
    "prettier:checker": "npx prettier --check .",
    "prettier:fix": "npx prettier --write .github/workflows/*.yml .",
    "docker:reset": "docker rm --force test-svps >/dev/null 2>&1 || true",
    "docker:run": "docker run -d --name test-svps --privileged -p ${PORT:-22}:${PORT:-22} -e PORT=${PORT:-22} --restart always wellwelwel/vps:latest",
    "tests:docker": "npm run docker:reset; npm run docker:run",
    "tests:create": "cd ./tests && echo '{ \"type\": \"module\" }' | cat > ./package.json",
    "tests:connection": "cd ./tests && node ./basic-connection.test.js",
    "tests:mount": "cd ./tests && node ./mount.test.js",
    "tests:commands": "cd ./tests && node ./commands.test.js",
    "tests:upload": "cd ./tests && node ./upload.test.js",
    "tests:virtual-hosts": "cd ./tests && node ./virtual-hosts.test.js",
    "tests:reset": "npm run docker:reset",
    "pretests": "npm run build && npm run build:examples && npm run eslint:checker && npm run prettier:checker && npm run tests:docker",
    "tests": "npm run tests:create && npm run tests:connection && npm run tests:mount && npm run tests:commands && npm run tests:upload && npm run tests:virtual-hosts",
    "posttests": "npm run tests:reset"
  },
  "author": "https://github.com/wellwelwel",
  "license": "MIT",
  "description": "🚀 An easier tool to automate your Ubuntu Server setup and domain forwarding",
  "engines": {
    "node": ">=14.5.0",
    "npm": ">=7.0.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wellwelwel/svps.git"
  },
  "bugs": {
    "url": "https://github.com/wellwelwel/svps/issues"
  },
  "homepage": "https://github.com/wellwelwel/svps#readme",
  "keywords": [
    "vps",
    "kvm",
    "setup",
    "ssh",
    "sftp",
    "ssh2",
    "ubuntu",
    "server",
    "virtual",
    "host",
    "hosts",
    "hosting",
    "proxy",
    "forward",
    "domain",
    "domains",
    "rdp",
    "remote",
    "desktop",
    "protocol",
    "devops",
    "cronjob",
    "crontab",
    "apache",
    "ufw",
    "vsftpd",
    "mysql",
    "php",
    "docker"
  ],
  "files": [
    "bin",
    "lib",
    "resources"
  ]
}
