Cant publish or install npm package locally but same setup works in pipeline

I published npm package via the gitlab CI. Which I cannot install locally I always get not found and i noticed that it has the correct project url but it converts the last / after @jango-agile/ui to @jango-agile%2ui

404 Not Found - GET https://gitlabci.jango.com/api/v4/projects/1337/packages/npm/@jango-agile%2Fui

To further test this i tried to publish the package locally which does not work either. I also get 404 NOT FOUND.

To be safe i echoed my npmrc from the pipeline and replaced the NPM token with a personal access Token

.npmrc content

@jango-agile:registry=https://gitlabci.jango.com/api/v4/projects/1337/packages/npm/
//gitlabci.jango.com/api/v4/projects/1337/packages/npm/:_authToken=<AUTH_TOKE>

Any help on this topic?