parse5
                                
                                
                                
                                    parse5 copied to clipboard
                            
                            
                            
                        Types error
Try to import
import { Node } from 'parse5/dist/tree-adapters/default'
Error: Missing "./dist/tree-adapters/default" export in "parse5" package
                                    
                                    
                                    
                                
are you using typescript?
the default adapter is exported at top-level (and only really accessible there), but its types should be available from the path directly.
maybe try an explicit import type { Node } and see if it works then. Node is only a type so that should be the default anyway, but worth a try
Assuming this is resolved.