I solved it!
The recipe was not being readed, basically;
All I had to do is set the Items in the Json as Arrays
Before:
"item": {
"minecraft:blue_dye"
}
After:
"item": [
{
"minecraft:blue_dye"
}
]
That's all, I added compatibility with JEI to verify and everything works, thanks anyways!