I assume you are writing a single page application. There are a few methods of doing this.
A good method that I would recommend is called lazy loading of the JavaScript such that the file is only loaded when you actually want to make calls to the contents of the files. To look into this a bit more, I recommend looking at: https://developer.mozilla.org/en-US/docs/Web/Performance/Lazy_loading.
If you have WebAssembly copies of the libraries, since you are using Blazor, you should be able to lazily load these using Blazor. See https://learn.microsoft.com/en-us/aspnet/core/blazor/webassembly-lazy-load-assemblies?view=aspnetcore-5.0 for more information.
The older methods of doing this as you'll see from these previous posts was to use jQuery. This is not recommended practice anymore however. jQuery offers a getScript
method see https://api.jquery.com/jquery.getscript/ for the documentation or Dynamically load JS inside JS as an area where this has been discussed.