I'm contributing to a 3rd-party JavaScript application, let's call it X. A website owner may place X in their own site, let's call it Y, using a script tag, and X might render some content, respond to events, etc. Think of something like Disqus.
X may depend on libraries such as Handlebars, Underscore.js, etc. I face the problem of resolving these dependencies in a way that does not interfere with Y. If X pulls in Handlebars and Underscore.js for itself, and Y already includes these libraries, things will probably blow up due to there being two versions there which could cause undefined behaviour.
So what is the best way to deal with this kind of situation?