list-npm-package-content
npm पैकेज टारबॉल की सामग्री को प्रकाशित करने से पहले जांचें कि कौन सी फाइलें वितरित की जाएंगी। यह उन सटीक फाइलों को सूचीबद्ध करता है जो npm पर अपलोड होंगी, जिससे प्रकाशन से पहले गायब या अवांछित शामिल फाइलों को पकड़ने में मदद मिलती है। package.json में files फील्ड, .npmignore, और .gitignore नियमों का सम्मान करता है ताकि वास्तविक बंडल सामग्री दिखाई जा सके। एक ही कमांड में स्वचालित रूप से पैकेज बनाता है, टारबॉल बनाता है
npx skills add https://github.com/vercel/ai --skill list-npm-package-contentList 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., packages/ai):
bash scripts/list-package-files.sh
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:
filesfield inpackage.json- explicit allowlist of files/directories.npmignore- files to exclude (if present).gitignore- used if no.npmignoreexists- Always included:
package.json,README,LICENSE,CHANGELOG - Always excluded:
.git,node_modules,.npmrc, etc.