To add for instance a directory scripts to the distribution package:
Add to the project a folder scripts
On top of the build.sbt, add:
import NativePackagerHelper._
In build.sbt, add a mapping to the new directory:
mappings in Universal ++= directory("scripts")
B...