you need to login with npm:
npm login
Every command needs to run on a scoped package. This is achived with the flag --workspace/-w.
npm add -w @dyssolsoft/<package> <dependency>
Note that all packages in this repository should be scoped to dyssolsoft.
In the future there should be a command on every package to publish themself.
Example loggerjs package should execute tsc -d before publishing.
But right we don't have this mechanism.
To bump a package version use
npm version -w @dyssolsoft/<package> <patch/minor/major>
To publish a package use
npm publish --access public -w @dyssolsoft/<package> <patch/minor/major>
Go to the repo you want to update the dependency.
npm info @dyssolsoft/<package>
npm update @dyssolsoft/<package>