new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Bun · Package manager · all subjects

info

6 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

bun info basic usage

The `bun info` command displays package metadata from the npm registry. Basic syntax is `bun info <package-name>`, which prints the package's latest version, description, homepage, dependencies, and other metadata.

bun info specific version

To view information about a specific version of a package, use `bun info <package-name>@<version>`. For example, `bun info react@18.0.0`.

bun info specific properties

To print specific properties from package metadata, pass the property name as an argument: `bun info <package-name> <property>`. Properties can be nested using dot notation, for example `bun info react dependencies` or `bun info react repository.url`.

bun info --json flag

The `--json` flag outputs package metadata in JSON format. Usage: `bun info <package-name> --json`.

bun pm view alias

`bun pm view` is an alias for `bun info`. For example, `bun pm view react` is equivalent to `bun info react`.

bun info examples

Usage examples include: `bun info is-number` to view basic package information; `bun info is-number@7.0.0` to view a specific version; `bun info is-number versions` to view all available versions; `bun info express dependencies` to view package dependencies; `bun info lodash homepage` to view package homepage; `bun info react --json` to get JSON output.

Give your agent this brain