PyVista functionalities analogue package in Julia

Hello everyone!
I have a big python project that based on PyVista library features: reading stl geometry, finding normals for each cell, finding intersection between polydata object and line
Can anybody help me find Julia packages where some of these features are implemented

Most of PyVista functionality is provided by JuliaGeometry
https://github.com/orgs/JuliaGeometry/repositories?type=all.
With GeometryBasics.jl you can read/write stl, obj, off, ply files, compute normals. MarchingCubes.jl is the Julia version implementation of the corresponding algorithm. More details at the posted link.