{
  "name": "@happyvibess/file-organizer",
  "version": "1.2.0",
  "description": "Simple CLI tool to automatically organize your files by type",
  "main": "bin/file-organizer.js",
  "bin": {
    "organize": "./bin/file-organizer.js",
    "o": "./bin/file-organizer.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "test": "jest",
    "start": "node bin/file-organizer.js",
    "lint": "eslint .",
    "format": "prettier --write ."
  },
  "keywords": [
    "file-organizer",
    "cli",
    "file-management",
    "automation",
    "productivity"
  ],
  "author": "happyvibess",
  "license": "MIT",
  "dependencies": {
    "fs-extra": "^10.1.0",
    "chalk": "^4.1.2",
    "commander": "^8.3.0",
    "ora": "^5.4.1",
    "glob": "^8.0.3"
  },
  "devDependencies": {
    "jest": "^27.5.1",
    "eslint": "^8.14.0",
    "prettier": "^2.6.2"
  },
  "engines": {
    "node": ">=14.0.0"
  }
}

