The install command does not pin a dependency version
Source references: 5The installation command does not specify dependency versions. The same command may download different code later, so what you install can differ from what was checked.
A later install may download different code even though the command and this report have not changed.
This is an active user-facing installation command, not a warning, test, or negated example. It does not specify a `gsap` version, so npm resolves the version available under its normal rules at install time. A later run may obtain different, unaudited code and reduce build reproducibility. The user can ask for a verified pinned version and lockfile, or inspect the resolved dependency in a restricted environment first.
This is an active installation command and `@gsap/react` has no version constraint. Running it at different times may resolve different package or transitive-dependency versions, so the result is not reproducible from this skill alone and may include code outside this review. The user can request a verified exact version and lockfile, or restrict installation and inspect npm's resolved result first.
# Install the GSAP librarynpm install gsap# Install the GSAP React packageShow 4 other places
## Installation```bash# Install the GSAP librarynpm install gsap# Install the GSAP React package# Install the GSAP React packagenpm install @gsap/react```npm install gsap# Install the GSAP React packagenpm install @gsap/react```