I want to convert this dictionary to expected output in json format
sample_dict = {"app":"Apps","dev":"Dev-Func","test":"Testing"}
output =
{"name":[
{"option":"app", "value":"Apps"},
{"option":"dev", "value":"Dev-Func"},
{"option":"test", "value":"Testing"}
]
}