SOLVED! See my self-answer below.
I'm building two Metro-style apps using Javascript and HTML, which will have different presentation layers but a lot of similar functionality under the hood. Thanks to the ability to call C# methods from Javascript, I can factor a lot of the "common" functionality into a C# WinMd library that can then be referenced by both top-level apps.
However, there are some utility-type functions that are purely Javascript that I would like to reuse. There doesn't appear to be a way to create a "WinMD" using Javascript (only C# or C++).
In a .NET world, I would usually just package whatever file as a resource and load it from a common assembly. Is there a way I could add a "common" .js file to a WinMD as a resource, and access it through some app-aware URL (i.e. ms-appx: or ms-resource: or something like that)?