Look up the latest version of any package using deps.dev API. Use this skill when checking package versions, updating dependencies, adding new packages to a project, or verifying current library versions.
Resources
1Install
npx skillscat add trancong12102/ccc/deps-dev Install via the SkillsCat registry.
SKILL.md
Package Version Lookup
Query deps.dev to get the latest stable version of open source packages.
Usage
Use the Python script at scripts/deps-dev.py.
Get Latest Version
# npm package
python scripts/deps-dev.py package --system npm --package express
# Scoped npm package
python scripts/deps-dev.py package --system npm --package "@types/node"
# PyPI package
python scripts/deps-dev.py package --system pypi --package requests
# Go module
python scripts/deps-dev.py package --system go --package "github.com/gin-gonic/gin"
# Cargo crate
python scripts/deps-dev.py package --system cargo --package serde
# Show recent versions
python scripts/deps-dev.py package --system npm --package express --all-versionsGet Specific Version Details
python scripts/deps-dev.py version --system npm --package express --version 5.0.0Supported Ecosystems
| Ecosystem | System ID |
|---|---|
| npm | npm |
| PyPI | pypi |
| Go | go |
| Cargo | cargo |
| Maven | maven |
| NuGet | nuget |
| RubyGems | rubygems |
Ecosystem Detection
Identify the ecosystem from project files:
package.json→ npmrequirements.txt,pyproject.toml→ pypigo.mod→ goCargo.toml→ cargopom.xml,build.gradle→ maven*.csproj→ nugetGemfile→ rubygems
Rules
- Use
--format jsonfor structured output when needed - The script handles URL encoding automatically
- Use
--all-versionsto see recent version history