{
  "name": "filefive",
  "description": "A SFTP/FTP client and dual-panel file manager for macOS and Linux",
  "version": "1.4.1",
  "license": "GPL-3.0",
  "author": "Max Miroshnikov",
  "bin": {
    "f5": "dist/index.js"
  },
  "main": "dist/index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/miroshnikov/filefive.git"
  },
  "homepage": "https://github.com/miroshnikov/filefive#readme",
  "bugs": {
    "url": "https://github.com/miroshnikov/filefive/issues"
  },
  "keywords": [
    "sftp-client",
    "file-manager",
    "dual-panel",
    "macos-app",
    "linux-app"
  ],
  "files": [
    "dist/",
    "bin/"
  ],
  "scripts": {
    "dev": "NODE_ENV=development nodemon src/index.ts",
    "build": "tsc -p .",
    "start": "node dist/index.js",
    "test": "jest tests",
    "lint": "eslint",
    "publish": "tsc -p . && npm publish"
  },
  "dependencies": {
    "chalk": "^5.4.1",
    "commander": "^13.1.0",
    "express": "^4.21.2",
    "ftp": "^0.3.10",
    "multer": "^1.4.5-lts.1",
    "open": "^10.1.0",
    "ramda": "^0.30.1",
    "rxjs": "^7.8.1",
    "ssh2": "^1.16.0",
    "trash": "^9.0.0",
    "whatwg-url": "^14.1.0",
    "ws": "^8.18.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.22.0",
    "@types/express": "^5.0.0",
    "@types/ftp": "^0.3.36",
    "@types/jest": "^29.5.14",
    "@types/multer": "^1.4.12",
    "@types/node": "^22.12.0",
    "@types/ramda": "^0.30.2",
    "@types/ssh2": "^1.15.4",
    "@types/whatwg-url": "^13.0.0",
    "@types/ws": "^8.5.14",
    "eslint": "^9.22.0",
    "jest": "^29.7.0",
    "nodemon": "^3.1.9",
    "ts-jest": "^29.3.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.2",
    "typescript-eslint": "^8.26.1"
  },
  "nodemonConfig": {
    "ignore": [
      "frontend/**"
    ]
  }
}
