Greetings folks,I'm trying to use a module on Windows that has many dependencies. Many of these dependencies have dependencies and the depth of node_modules increases pretty quick. Generally this isn't a problem, unless you're using Windows :) Windows (or specifically some of the software we're building on Windows with .NET) doesn't really like file paths longer than 260 characters. Is there a way to build a module where the deep level dependencies are all stored at the root of it's node_modules directory? Or am I stuck using the hierarchical model?Thanks!