Npm publish is just hung?

I am trying to publish a package that I made. For some reason it is just hung. There is no error or anything. Just a cursor and nothing. I have tried doing an npm login and also npm adduser both have me logged in successfully. So I did npm publish --verbose and here is the output.

PS D:DevelopmentProjectsscrollpropackage> npm publish --verbose
npm verb cli C:Program Filesnodejsnode.exe C:Program Filesnodejsnode_modulesnpmbinnpm-cli.js
npm info using [email protected]
npm info using [email protected]
npm verb title npm publish
npm verb argv "publish" "--loglevel" "verbose"
npm verb logfile logs-max:10 dir:C:UsersWamoAppDataLocalnpm-cache_logs2023-04-18T03_59_42_589Z-
npm verb logfile C:UsersWamoAppDataLocalnpm-cache_logs2023-04-18T03_59_42_589Z-debug-0.log
npm verb publish [ '.' ]

and here is the contents of the log file:

0 verbose cli C:Program Filesnodejsnode.exe C:Program Filesnodejsnode_modulesnpmbinnpm-cli.js
1 info using [email protected]
2 info using [email protected]
3 timing npm:load:whichnode Completed in 1ms
4 timing config:load:defaults Completed in 1ms
5 timing config:load:file:C:Program Filesnodejsnode_modulesnpmnpmrc Completed in 1ms
6 timing config:load:builtin Completed in 1ms
7 timing config:load:cli Completed in 1ms
8 timing config:load:env Completed in 1ms
9 timing config:load:file:D:DevelopmentProjectsscrollpropackage.npmrc Completed in 1ms
10 timing config:load:project Completed in 1ms
11 timing config:load:file:C:UsersWamo.npmrc Completed in 0ms
12 timing config:load:user Completed in 0ms
13 timing config:load:file:C:UsersWamoAppDataRoamingnpmetcnpmrc Completed in 0ms
14 timing config:load:global Completed in 0ms
15 timing config:load:setEnvs Completed in 1ms
16 timing config:load Completed in 6ms
17 timing npm:load:configload Completed in 6ms
18 timing npm:load:mkdirpcache Completed in 0ms
19 timing npm:load:mkdirplogs Completed in 0ms
20 verbose title npm publish
21 verbose argv "publish" "--loglevel" "verbose"
22 timing npm:load:setTitle Completed in 1ms
23 timing config:load:flatten Completed in 2ms
24 timing npm:load:display Completed in 5ms
25 verbose logfile logs-max:10 dir:C:UsersWamoAppDataLocalnpm-cache_logs2023-04-18T03_59_42_589Z-
26 verbose logfile C:UsersWamoAppDataLocalnpm-cache_logs2023-04-18T03_59_42_589Z-debug-0.log
27 timing npm:load:logFile Completed in 4ms
28 timing npm:load:timers Completed in 0ms
29 timing npm:load:configScope Completed in 0ms
30 timing npm:load Completed in 18ms
31 verbose publish [ '.' ]
32 silly logfile start cleaning logs, removing 2 files
33 silly logfile done cleaning log files

I don’t see any errors here. But then there is still just a cursor after that and nothing happens. The batch job doesn’t end it is just hung there forever. You can check the package files out at the repository here Github Repo. So I figured I would try to publish a package that I have already published and it worked fine. So then I tried to publish just a random package that I created real quick and it worked just fine. So there has to be something little that I am missing here causing it to not work. It is a little bit larger package so I let it sit for about an hour and I still just get a black cursor and nothing happens. Any help here would be much appreciated.