When using just the Carousel functionality in JavaScript, which dependencies need to be included excluding `bootstrap.js` but including necessary code for Carousel (`carousel.js`, ...)?
As per the docs, the setup code is:
var myCarousel = document.querySelector('#myCarousel')
var carousel = new bootstrap.Carousel(myCarousel)
The error message 'Uncaught ReferenceError: bootstrap is not defined' indicates that the Bootstrap 5 part is missing.
I have searched through Bootstrap's official documentation and other sources but could not find this information.