add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/npm-ls.md Normal file
View File

@@ -0,0 +1,24 @@
# npm ls
> 将已安装的包打印到 `stdout`。
> 更多信息:<https://docs.npmjs.com/cli/commands/npm-ls>。
- 将所有直接依赖的版本打印到 `stdout`
`npm ls`
- 将所有已安装的包(包括对等依赖)打印出来:
`npm ls --all`
- 打印带有扩展信息的依赖:
`npm ls --long`
- 以可解析格式打印依赖:
`npm ls --parseable`
- 以 JSON 格式打印依赖:
`npm ls --json`