The package includes all centrality indices implemented in igraph and additionally all that are made available in the netrankr package. All indices can be found in the function group centrality_*().
tidygraphs harmonizes many other available functions in igraph to make them easier accessible. The best way to check what is available is to look at the function groups node_*() and edge_*(). Some simple examples are shown below.
# the node id of the Medici is 9flo_tidy %>%activate("nodes") %>%mutate(dist2Medici =node_distance_to(nodes =9)) %>%activate("edges") %>%mutate(edge2Medici =edge_is_incident(9)) %>%ggraph("stress") +geom_edge_link0(aes(edge_color = edge2Medici)) +geom_node_point(aes(fill = dist2Medici), size =9, shape =21) +theme_graph()