1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/npm-owner.md
CanonNi 0e33fcc300
npm-{owner, author}: add page (#14605)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-11-03 19:56:04 +01:00

16 lines
377 B
Markdown

# npm-owner
> Manage ownership of published packages.
> More information: <https://docs.npmjs.com/cli/commands/npm-owner>.
- Add a new user as a maintainer of a package:
`npm owner add {{username}} {{package_name}}`
- Remove a user from a package's owner list:
`npm owner rm {{username}} {{package_name}}`
- List all owners of a package:
`npm owner ls {{package_name}}`