List npm Package Content This skill lists the exact contents of an npm package tarball - the same files that would be uploaded to npm and downloaded by users. Usage Run the script from the package directory (e.g., ): The script will build the package, create a tarball, list its contents, and clean up automatically. Understanding Package Contents The files included are determined by: 1. field in - explicit allowlist of files/directories 2. - files to exclude (if present) 3. - used if no exists 4. Always included : , , , 5. Always excluded : , , , etc. ---