How do I handle a really large array?

I want to build a word game using the scrabble dictionary.

I found a nice NPM module that provides the dictionary and some nice handy query functions. I want to convert this to a meteor package, or rewrite it my project, however, the dictionary exists as a HUGE array.

Loading the array directly into a variable crashes the build…

Will I need to do something cunning to load the dictionary into a db on startup? Or is there a way to load from a static file?

Thanks!