Configuration options of the plugin

Good afternoon.

I need to implement a different set of pod libraries depending on the plugin settings.

For example when enabling authorization in addition and with Google

“plugins”: {
“CapacitorFirebaseAuth”: {
“providers”: [
“phone”,
google.com
]
}

then connect
pod 'CapacitorFirebaseAuth/social‘, :path => ‘…/…/node_modules/capacitor-firebase-auth’

if the set is without Google for example

“plugins”: {
“CapacitorFirebaseAuth”: {
“providers”: [
“phone”
]
}

the standard way
pod 'CapacitorFirebaseAuth‘, :path => ‘…/…/node_modules/capacitor-firebase-auth’

How can this be implemented? Maybe there are some hooks for additional edits to the podfile?