get scss from design tokens json file using style dictionary

I want to get the scss rules for design tokens from a json file provided by the design team.
I used style dictionary and managed to get the base design tokens, but there are few tokens that use entire objects as value.

This is an example of design token (received from the design team) that I want to transform to scss:

{
"fontFamilies": {
    "inter": {
      "value": "Inter",
      "type": "fontFamilies"
    }
  },
 "fontWeights": {
    "inter-0": {
      "value": "Regular",
      "type": "fontWeights"
    },
  },
"fontSize": {
    "10": {
      "value": "72",
      "type": "fontSizes"
    }
  },
"Display-2xl": {
    "Regular": {
      "value": {
        "fontFamily": "{fontFamilies.inter.value}",
        "fontWeight": "{fontWeights.inter-0.value}",
        "fontSize": "$fontSize.10",
      },
      "type": "typography"
    },
}

Note: the simple tokens are successfully transformed.
Style dictionary output looks like this:

$font-families-inter: Inter;
$font-weights-inter-0: Regular;
$font-size-10: 72;
$display-2xl-regular: [object Object];

Is it possible to use style dictionary and output these rules for tokens like display-2xl-regular?