Hi, I'm new to node red and one thing I've noticed was that missing nodes do not hint to their actual packages in some situations.
For instance, if I create a package locally and provide the required prefix of "node-red-contrib-example-of-missing" in the package.json name field, this is not used in any way further through the node and I end up with an ambiguous missing node if I remove this package in the future, my flow just refers to it as a missing package:
Flows stopped due to missing node types.
* ExampleOfMissing
If ExampleOfMissing was a generic title then it would be extremely difficult to know what node package that actually was. Is there additional property I can use to hint of the true/full package name should it go missing?
I guess the consideration here is that providing a 3rd party with the node-red json object means that when they import it I also need to provide them with a list of packages they need to go off and install, without this information they would not be able to identify the missing packages by simply clicking on them and finding the package name.
I hope this makes sense, it's probably just something I've missed