Uncertain of the process for installing a package from the GitHub registry that relies on dependencies from the public npm registry.
Attempted solution:
npm_config_registry=https://npm.pkg.github.com npx @octopol/development
This method failed due to some dependencies being located on the public npm registry:
npm ERR! code E404
npm ERR! 404 Not Found - GET https://npm.pkg.github.com/@era-ci%2futils - npm package "utils" does not exist under owner "era-ci"
npm ERR! 404
npm ERR! 404 '@era-ci/utils@^2.0.27' is not in this registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
Puzzled by the usage of the github-npm-registry among customers. What crucial detail am I overlooking?