A good starting point would be to visit the official resource for Unturned modding documentation. The most relevant article would be the one on the game data properties for Blueprints, but if you're brand new to modding you'll likely want to familiarize yourself with other concepts as well (like creating an item).
I recommend referencing any of the vanilla game data files that have blueprints, which can be found along the ...\Steam\steamapps\common\Unturned\Bundles\Items
file path.
The gist of what you're wanting to do is fairly simple. Note that you can't add new crafting recipes without having them be part of an item's game data. The (very summarized) steps would generally look like this:
- Create a new item. It doesn't nee...