You have 2 different JS modules you’re working on, and one is dependent on the other. Let’s call the first module user-management, and the others subscriptions, where subscriptions is dependent on user-management . Typically, the package.json of subscriptions would have a dependency like this — dependencies {
...
"@example/user-management" : "0.0.33"
}…