How do I know if a framework supports Apple Silicon?

Hello, I was given a framework who the author claims that it supports Apple Silicon but how can I tell for sure? I opened the info.plist file in there but don't see anything that indicates if its for Intel or not. Should there be?
Oh, I think I just answered my own question. I used lipo from Terminal like this:
% lipo AppleConnectClient -info

and got this response:
Architectures in the fat file: AppleConnectClient are: x86_64 arm64 arm64e

How do I know if a framework supports Apple Silicon?
 
 
Q