Create Deploy-Token (Access-Token) for particular private repo and use it in dependency as following:
{
"dependencies": {
"package-name": "git+https://<username>:<access_token>@github.com/username/repository#{branch|tag}"
}
}
For Example:
{
"dependencies": {
"demo-lib": "git+https://<username>:<access_token>@gitlab.com/username/demo-lib#1.2.4",
"demo-util": "git+https://<username>:<access_token>@gitlab.com/username/demo-util#prod",
"demo-dep": "git+https://<access_token>:[email protected]/username/demo-dep#master"
}
}
Or you can add SSH key of of git client and use following:
{
"dependencies": {
"package-name": "git+ssh://[email protected]:username/repository.git#{branch|tag}"
}
}
In 2024 that url will generate a deprecation warning:
git+ssh://[email protected]:username/repository.git#{branch|tag}
You must replace colon with slash. Working line is exactly like that:
"package/name": "git+ssh://[email protected]/username/project-name.git#branch-or-commithash-or-tag"
Happy coding!!