In a package.json
, some fields define where to find what.
main
is the main entry point in CJS; or fortype: "module"
packages to ESMmodule
is only used by bundlers to resolve ESM, for tree-shaking for CJS+ESM packages, not by Node.jstypes
is only used by TS to resolve typesexports
is only used by modern Node.js, if a package istype: "module"
; patterns are only supported since v14.13.0, v12.20.0