I published a package via Github's package manager, and it seemed to work. It appears on the repo's web page and on my profile page. When I run
npm install @franklinharvey/time-remaining@1.0.0
locally it works, but when I try it in a new environment such as Replit or CodeSandbox it does not appear. It also does not appear on npmjs.com
Here are some config files
.npmrc
registry=https://npm.pkg.github.com/franklinharvey
.yarnrc
"@franklinharvey:time-remaining" "https://npm.pkg.github.com"
package.json (partial)
"name": "@franklinharvey/time-remaining",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"url": "git@github.com:franklinharvey/time-remaining.git"
}
.npmignore
.gitignore
src/
*.log
*.tsbuildinfo
package-lock.json
yarn.lock
coverage
node_modules