Compile Only dependencies in Package.swift

I am new to Swift Package Manager and I have a case where I want to use a third party .xcframework provided in my own package which will be finally consumed in my application.

I want to make sure the third party .xcframework has to be provided by application and my package should only have its dependancy for compile time only and not include / embed in my own package?

Is there a way we can achieve this using Swift Package Manager?