介绍
包是由 package.json
文件描述的文件夹树。
包由包含 package.json
文件的文件夹和所有子文件夹组成,直到包含另一个 package.json
文件的下一个文件夹或名为 node_modules
的文件夹。
此页面为编写 package.json
文件的包作者提供指导,以及 Node.js 定义的 package.json
字段的参考。
A package is a folder tree described by a package.json
file. The package
consists of the folder containing the package.json
file and all subfolders
until the next folder containing another package.json
file, or a folder
named node_modules
.
This page provides guidance for package authors writing package.json
files
along with a reference for the package.json
fields defined by Node.js.