问题描述
我正在尝试将软件包发布到npm注册表。但是当我按下命令npm publish
时,我得到了这个错误。
npm WARN prepublish-on-install As of npm@5,`prepublish` scripts are deprecated.
npm WARN prepublish-on-install Use `prepare` for build steps and `prepublishOnly` for upload-only.
npm WARN prepublish-on-install See the deprecation note in `npm help scripts` for more information.
> [email protected] prepublish .
> npm run build
> [email protected] build /home/suraj/Projects/bitandbang
> node build.js
npm notice
npm notice ? [email protected]
npm notice === Tarball Contents ===
npm notice 1.1kB LICENSE
npm notice 3.6kB bin/output
npm notice 233B bin/card.js
npm notice 996B package.json
npm notice 293B README.md
npm notice === Tarball Details ===
npm notice name: imojha
npm notice version: 1.0.0
npm notice package size: 2.3 kB
npm notice unpacked size: 6.2 kB
npm notice shasum: bb283ae5fe8aed311771f369866c13e24f1eb937
npm notice integrity: sha512-Nzc+Ysmf4RgSi[...]XoT+OGYHNHoSQ==
npm notice total files: 5
npm notice
npm ERR! code E404
npm ERR! 404 Not Found - PUT https://npm.registry.github.com/imojha
npm ERR! 404
npm ERR! 404 '[email protected]' is not in the npm 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.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/suraj/.npm/_logs/2020-10-24T14_54_01_996Z-debug.log
我已经成功运行npm login
。然后我正在执行npm publish
。
我已经从GitHub克隆了此仓库,并发布到了npm。这实际上是关于创建自己名字的npx卡,例如npx用户名。我也一样。
我试图给它一个不同的包名,但是没有成功。所以,有人可以告诉我我在做什么错吗?这是package.json文件。
{
"name": "suraj-ojha","version": "1.0.0","description": "A personal card for Suraj Ojha (@suraj)","main": "/bin/card.js","bin": {
"bitandbang": "./bin/card.js"
},"repository": {
"type": "git","url": "[email protected]:Suraez/npxcard.git"
},"homepage": "https://bnb.im","scripts": {
"prepublish": "npm run build","build": "node build.js","dev": "npm run build && node ./bin/card.js","lint": "standard","test": "echo \"Error: no test specified\" && exit 1"
},"keywords": [
"card","npm","npm card","npx","npx card","business card"
],"author": "suraj Ojha","license": "MIT","files": [
"bin/card.js","bin/output"
],"devDependencies": {
"boxen": "^2.1.0","chalk": "^2.4.1","standard": "^12.0.1"
},"bugs": {
"url": "https://github.com/bnb/bitandbang/issues"
},"dependencies": {},"publishConfig": {
"registry": "https://npm.registry.github.com/"
}
}
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)