json_cleaner 0.1.4

A CLI tool to clean JSON files by removing null and empty values.
{
  "activity": {
    "last_login": "2025-07-25T10:30:00Z",
    "recent_actions": [
      {
        "timestamp": "2025-07-25T10:30:00Z",
        "type": "login"
      },
      {
        "timestamp": "2025-07-24T18:00:00Z",
        "type": "update_profile"
      },
      {
        "timestamp": "2025-07-20T14:15:00Z",
        "type": "create_project"
      }
    ]
  },
  "projects": [
    {
      "contributors": [
        "alexdoe",
        "jane_smith"
      ],
      "description": "A platform for sustainable textiles.",
      "name": "EcoWeave",
      "status": "active",
      "tags": [
        "sustainability",
        "textiles",
        "platform"
      ]
    },
    {
      "description": "App for finding travel partners.",
      "name": "TravelBuddy",
      "status": "archived"
    }
  ],
  "user": {
    "id": 12345,
    "profile": {
      "bio": "Passionate developer and traveler.",
      "full_name": "Alex Devit",
      "nickname": "Alex",
      "social": {
        "github": "alexdoe",
        "linkedin": ""
      },
      "website": ""
    },
    "settings": {
      "languages": [
        "en",
        "fr",
        "es"
      ],
      "notifications": {
        "email": true,
        "sms": false
      },
      "privacy": {
        "profile_visible": true,
        "searchable": false
      },
      "theme": "dark"
    },
    "username": "anonymous_user"
  }
}