So that I could then install the package and use the binary via an import, for example like this:
import bin from "@mypackage/binaries/bin.dll"const lib = Deno.dlopen(bin, …);
import bin from "@mypackage/binaries/bin.dll"const lib = Deno.dlopen(bin, …);
Is this somehow possible? I know there are 3rd party libraries like plug that do something like this, but I am just curious if I could get this to work without something like plug.