Analyze a Libary

Enter a package name and select the package manager to explore its dependency graph.

Version Specifier Guide

^1.2.3

Compatible Updates - no major updates
1.5.0 works
2.0.0 does not work

~1.2.3

Compatible Patch Updates
1.2.9 works
1.3.0 does not work

==2.32.5

Exact Match
Package demands this exact version and will not accept updates

>=1.2.0 or <=1.2.0

>= means 1.2.0 or anything newer
<= means 1.2.0 or anything older

==1.*

* Accept any version in the 1.x series

>=2.5, <4

Install anything from version 2.5 up to, but strictly excluding, version 4

!=3.0.0

Install any version except 3.0.0
Note: Used when a specific version is known to have a bug

~=1.4.5

Use version 1.4.5 or higher
but only up to 1.5.0 (excluding 1.5.0)

Data unavailable or no strict requirement