Adding vagrant-amiga support is easy. Just add a file to the root of your project names dependecies.json, containing the dependecies your project has. then make sure your project is buildable from the vagrant-amiga environment.
The dependecies.json should ideally contain only Url's, like below:
[ {"Url": "http://os4depot.net/share/library/misc/unilibdev.lha"}, {"Url": "http://os4depot.net/share/development/library/misc/expat.lha"} ]
This relies on the global dependecies.json file containing all your depencies with SdkInstall instructions.
The aim is that all os4depot SDK archives has instructions in the global file.
When you find a dependency without a global SdkInstall instruction, please create your own and share your instructions here in the forum or by email.
If you have any unusual, perhaps third party dependecies only for your project, you can add SdkInstall incstruction to your project's depencey file, like below:
[ {"Url": "http://os4depot.net/share/library/misc/unilibdev.lha"}, {"Url": "http://os4depot.net/share/development/library/misc/expat.lha"} { "Url": "http://superduperserver/files/superduper.lha", "SdkInstall": [ { "From": "*/SDK/Documentation/*", "To": "Documentation"}, { "From": "*/SDK/Local/*", "To": "local"}, { "From": "*/SDK/Include/*", "To": "include"} ] } ]