How do I export a specific prefab into Unity package?

I select the prefab then go to Assets, then click on “Select Dependencies” and then I click on “Export Package” but the entire list of every asset in my project shows up, rather than just the dependencies of the prefab I want to export. How do I easily export just this prefab and its dependencies short of manually clicking through every asset in my project?

The video I’ve watched showing me how to do this had only the prefab and its dependencies show up in the export window, so I’m wondering why I can’t do the same.

I figured it out.

All the extra dependencies in the export list were actually scripts (I have an asset package with a lot of scripts in it). Unity apparently intentionally bundles all the scripts in the project as dependencies because one script on your prefab may interact with other scripts. Unchecking the “Include Dependencies” in the export window will deselect all the scripts you don’t need.