File loading errors after javascript installation with npm

I followed the quick start guide installing the npm package and adding the statements in my root JS file. But I’m seeing 404 errors for supportive sentry files. Looking in my node_modules directory these files indeed don’t exist in the directory “node_modules/@sentry/browser/dist”. (Note, Sentry is trying to load these files. I don’t have imports for them.)

Package.json file:
“dependencies”: {
@sentry/browser”: “^5.9.1”,

Application index.js file:
import * as Sentry from ‘@sentry/browser’;
Sentry.init({ dsn: ‘xxx://xxxx@sentry.io/xxxx’ });

Browser Errors:
http://localhost:8082/js_app/node_modules/@sentry/browser/dist/integrations.js 404 (Not Found)
http://localhost:8082/js_app/node_modules/@sentry/browser/dist/transports.js 404 (Not Found)

There are other files that are not found (404) but this forum will only allow me to include 2 links in a post.

Is there a single bundled file that can be imported via npm? Looking at the package is @sentry/browser/build.bundle.es6.js or @sentry/browser/build.bundle.js what I’m looking for?