I'd like to add the --force and --verbose flags to my package.json config so when I run graphidocs it'll pass those flags in for me. Is there a way to do this?
I've tried key/value with a string and an array, I've also tried passing the flags in other areas like endpoint and data.
package.json
"graphidocs": {
"endpoint": "https://fakerql.com/graphql",
"output": "./dist",
"force": true,
"verbose": true
}