deps-dev
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-versions
Get Specific Version Details
python scripts/deps-dev.py version --system npm --package express --version 5.0.0
Supported 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
More from trancong12102/ccc
brainstorming
Collaboratively explore ideas and design solutions through guided dialogue before implementation. Use this skill when creating features, building components, adding functionality, designing systems, or when the user says \"brainstorm\", \"design this\", \"help me think through\", or \"let's plan\".
8test-driven-development
Guides strict Test-Driven Development (TDD) using the Red-Green-Refactor cycle. Ensures no production code is written without a prior failing test. Use this skill when implementing new features, fixing bugs, or refactoring code to ensure high test coverage and design quality. Triggers on phrases like 'TDD', 'write tests first', 'test-driven', 'red-green-refactor', 'watch it fail', 'test first', or 'behavior driven'.
8vercel-react-best-practices
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
8