Plugins currently can't read font size from TextNodes that don't have an inline text style assigned. This blocks typography-related plugins from working with the majority of text in real projects.
What I tested (framer-plugin@3.10.3):
  • node.fontSize returns undefined
  • node.font only contains {family, weight, style, selector}, no size
  • node.inlineTextStyle is null when no style is assigned
  • node.getHTML() throws "ee: Invalid method: INTERNAL_getHTMLForNode"
  • node.getText() returns plain text only
  • Full serialized node has no size field anywhere
For text with a style, size is readable via inlineTextStyle.fontSize. But for unstyled text, which is most text in typical projects, there's no path.
Why it matters:
Typography plugins need this to help users detect, audit, and convert unstyled text into proper text styles. Without size access, plugins can only work with text that's already styled, which defeats the main use case.