I am currently in the process of packaging my electron application, which consists of two npm directories nested within each other. The inner directory contains my electron app and relies on scripts located in the outer directory. In my internal package.json file, I specify the electron-packager scripts for my electron app. I have a specific inquiry regarding the source file for the package, as I have designated it as '.' to represent the current directory. My concern is whether this includes files from the outer directory as well. Although my app is functioning properly at the moment, I am unsure if there could be potential issues if I am not handling this correctly. If using '.' is not the correct approach, how can I instruct electron-packager to include files outside of the current directory? Alternatively, does electron-packager automatically detect and incorporate all necessary files and scripts regardless of their location during the packaging process?