安装软件包时是否存在任何 npm 选项来禁用安装后脚本?或者重写 package.json 中的任何字段?
不能只禁用postinstall脚本。但是,您可以使用以下方法禁用所有脚本:
postinstall
$ npm install --ignore-scripts
正如评论中提到的delbertooo,这也会禁用依赖项的脚本。