# Script de limpeza de dependências não utilizadas # Execute este arquivo no PowerShell Write-Host "🧹 Limpando dependências não utilizadas..." -ForegroundColor Cyan # Remover pacotes não utilizados Write-Host "`n📦 Removendo @lumi.new/sdk..." -ForegroundColor Yellow pnpm remove @lumi.new/sdk Write-Host "`n📦 Removendo node-fetch..." -ForegroundColor Yellow pnpm remove node-fetch Write-Host "`n📦 Removendo react-toastify..." -ForegroundColor Yellow pnpm remove react-toastify Write-Host "`n✅ Limpeza concluída!" -ForegroundColor Green Write-Host "📊 Verificando tamanho de node_modules..." -ForegroundColor Cyan $size = (Get-ChildItem "node_modules" -Recurse -File -ErrorAction SilentlyContinue | Measure-Object -Property Length -Sum).Sum / 1MB Write-Host "Tamanho atual: $([math]::Round($size, 2)) MB" -ForegroundColor White