I have a large JSON file that contains bigints with their full values--not rounded like JavaScript loves to do by default. We have a workaround to deal with the bigints in Node.js, but I'm trying to use jq (the command-line tool) to clean up our data. However, when I ran jq on our JSON file, it rounded all of our bigints.
Is there a way to use jq so that it doesn't round the bigints or is there perhaps another command-line tool that works on a Mac that I may use instead?