← Back to list

lookup-npm-dependencies-version
by pa-y-kunimoto
Realization of Vector Database Application on MySQL 9
⭐ 0🍴 0📅 Jan 9, 2026
SKILL.md
name: lookup-npm-dependencies-version description: Look up the latest stable versions of NPM packages using npm view command. Use when planning a project, updating dependencies, or when the user asks about current package versions for Node.js/TypeScript projects. allowed-tools: Bash(npm view:*)
NPM Dependencies Version Lookup
Look up the latest stable versions of NPM packages using npm view command to get accurate, real-time version information.
Instructions
-
Identify packages to look up:
- Use packages specified by the user
- Or check the current feature's
plan.mdfor technology stack and dependencies
-
Run npm view for each package:
npm view <package-name> version- For multiple packages, run commands in parallel:
npm view express version npm view mysql2 version npm view typescript version- To see more details (description, dependencies, etc.):
npm view <package-name> -
Check peer dependencies if needed:
npm view <package-name> peerDependencies -
Generate version report as a markdown table:
## NPM Dependencies Version Report **Generated**: [DATE] ### Runtime Dependencies | Package | Latest Version | |---------|----------------| | express | 5.0.1 | | mysql2 | 3.11.0 | ### Development Dependencies | Package | Latest Version | |---------|----------------| | typescript | 5.7.2 | | vitest | 2.1.8 | -
Provide installation command:
# Runtime dependencies aikido-npm install express@^5.0.1 mysql2@^3.11.0 # Development dependencies aikido-npm install -D typescript@^5.7.2 vitest@^2.1.8
Useful npm view Commands
| Command | Description |
|---|---|
npm view <pkg> version | Latest stable version |
npm view <pkg> versions | All available versions |
npm view <pkg> dist-tags | Tagged versions (latest, next, beta) |
npm view <pkg> peerDependencies | Peer dependency requirements |
npm view <pkg> engines | Node.js version requirements |
npm view <pkg> deprecated | Check if deprecated |
Version Notation
| Notation | Usage | Example |
|---|---|---|
^ (caret) | Most packages - allows minor/patch updates | ^1.2.3 |
~ (tilde) | Packages with frequent breaking changes | ~1.2.3 |
| Exact | Critical dependencies requiring stability | 1.2.3 |
Example Workflow
# 1. Check latest versions
npm view express version # => 5.0.1
npm view mysql2 version # => 3.11.0
npm view zod version # => 3.24.1
npm view typescript version # => 5.7.2
npm view vitest version # => 2.1.8
# 2. Check Node.js requirements
npm view express engines
npm view mysql2 engines
# 3. Install with specific versions
aikido-npm install express@^5.0.1 mysql2@^3.11.0 zod@^3.24.1
aikido-npm install -D typescript@^5.7.2 vitest@^2.1.8
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon