Passkey with typescript library simplewebauthn & password manager

I have implemented Passkey in ts with the library https://simplewebauthn.dev/docs/

It saved passkey in my browser Keychain or mac keychain.

But I also want that my password manager (dashlane, 1password,…) save it like for this site https://example.hanko.io/

How can I setup GenerateRegistrationOptions in order to be compatible with Password manager?

I try many combo like the following code. Is it elsewhere in the code?

// see for options https://simplewebauthn.dev/docs/packages/server
      authenticatorSelection: {
        residentKey: "preferred",
        /**
         * Wondering why user verification isn't required? See here:
         *
         * https://passkeys.dev/docs/use-cases/bootstrapping/#a-note-about-user-verification
         */
        userVerification: "preferred",
      }