Zherow, I think you have missed completely the point of this packer, and of JavaScript as it happens.
Firstly: this packer, as its name suggests, is a packer, not explicitly an obfuscator. There is a big difference. The packer helps reduce the size of some code, by stripping out blanks and comments, and happens to make the resulting source difficult to read, but it does not alter the symbol names. An obfuscator would indeed help in deflating the source, but it would more particularly mangle the names of variables and functions. Besides, an obfuscator needs some smart input, in order to work properly: the developer must specify the external symbols (the names of the variables and functions that must not be changed because they are accessed from outside the obfuscated script).
Second: we are talking JavaScript here, it is not compiled, and it cannot be encrypted. No matter how hard to read, the script will eventually be evaluated in plain explicit text by the browser...
...which means that, by using the proper tools (Firebug in FireFox for instance) or by placing the appropriate alert( ) call instead of the very last eval( ) call, you will read the real code (albeit mangeld/obfuscated, but still, it's some JavaScript and you can debug it and view the variables' contents etc.).
Again, there is no way to prevent anyone to read and/or reuse some JavaScript. If you want to protect your code, don't do JavaScript.
Gabriel.