updating-npm-package

Installation
SKILL.md

Updating an npm Package

Use this skill when the user asks to update, upgrade, or bump a specific npm dependency.

Steps

  1. Check the current version — read package.json to find the installed version:

    npm ls <package-name>
    
  2. Find the latest version on npm — fetch the package info:

    npm view <package-name> versions --json
    npm view <package-name> dist-tags --json
    
Installs
148
GitHub Stars
525
First Seen
Apr 12, 2026
updating-npm-package — spencerpauly/awesome-cursor-skills