skills/bun-pm-cli-info/SKILL.md
Display package metadata from the npm registry
npx skillsauth add jarle/bun-skills Bun bun infoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Display package metadata from the npm registry
bun info displays package metadata from the npm registry.
bun info react
This will display information about the react package, including its latest version, description, homepage, dependencies, and more.
To view information about a specific version:
bun info [email protected]
You can also query specific properties from the package metadata:
bun info react version
bun info react dependencies
bun info react repository.url
To get the output in JSON format, use the --json flag:
bun info react --json
bun pm view is an alias for bun info:
bun pm view react # equivalent to: bun info react
# View basic package information
bun info is-number
# View a specific version
bun info [email protected]
# View all available versions
bun info is-number versions
# View package dependencies
bun info express dependencies
# View package homepage
bun info lodash homepage
# Get JSON output
bun info react --json
development
Using TypeScript with Bun, including type definitions and compiler options
development
Learn how to write tests using Bun's Jest-compatible API with support for async tests, timeouts, and various test modifiers
testing
Learn how to use snapshot testing in Bun to save and compare output between test runs
testing
Learn about Bun test's runtime integration, environment variables, timeouts, and error handling