gpt4 book ai didi

javascript - 将 Homebrew 软件依赖项添加到 npm 包

转载 作者:搜寻专家 更新时间:2023-11-01 00:39:58 25 4
gpt4 key购买 nike

我想将 Homebrew 软件依赖项添加到我尝试创建的 npm 包中,我正在使用 drafter-HEAD。有没有人知道如何做到这一点?

最佳答案

有几件事要想到。您可以将依赖项指向 GitHub 存储库(如果有的话)。

{
"name": "my-project-name",
"version": "0.0.1",
"description": "My Description Here",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "The Best Developer Ever",
"license": "MIT",
"dependencies": {
"express" : "github:expressjs/express",
"anyRepo" : "github:userName/projectName"
}
}

您还可以在 package.json 文件中创建自定义命令。可以将其称为 brew(这与实际的命令行工具不同),您可以在那里运行脚本

{
"name": "my-project-name",
"version": "0.0.1",
"description": "My Description Here",
"main": "main.js",
"scripts": {
"brew" : "sudo brew install package-name(s)-here",
"any-name-here" : "echo Any command can go here"
},
"author": "The Best Developer Ever",
"license": "MIT",
"dependencies": {
"express" : "github:expressjs/express",
}
}

然后你会运行

npm run brew

并且该命令中的任何脚本都将运行(也就是安装 Homebrew 软件依赖项)。我相信这应该是您正在寻找的东西。

-- 娟

编辑 ------------------------------------ ---------------------------------------------- ------------------------------

对不起,我不小心给错了命令。你应该运行 npm run brew NOT npm brew

关于javascript - 将 Homebrew 软件依赖项添加到 npm 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38230444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com