Wrong export with package.json

Hello team! I am running issues in next v13. It has wrong export within packaje.json import Tracker from "@openreplay/tracker/cjs"; When I used this with context it doesn’t have start function

The default export should be same there, but it also exports tracker singleton instance (instead of class), otherwise you can use regular import (without cjs) and dynamically import component.

With singleton it looks like this:

import { tracker } from '@openreplay/tracker'; tracker.configure({ options });

then import it in any other file where you need to use its methods via import { tracker } from '@openreplay/tracker'; and thats it.