Sort items by date of modification, addition, last use, etc

Try this:
(.\bw list items | ConvertFrom-Json) | Select-Object -Property Name, RevisionDate | Sort-Object -Property RevisionDate -Descending | Select-Object -First 10

Here’s actually what I ended up doing when I found this thread:
(.\bw list items | ConvertFrom-Json) | Select-Object -Property name, type, revisionDate | Sort-Object -Property RevisionDate -Descending | Export-Csv -Path .\output.csv

Added the type (1 = pw, 2 = note, 3 = card, 4 = address/autofill) and piped it out to a CSV.