You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhance package-dependencies tool with library count tracking
- Added a new interface for tracking specific library counts in package-dependencies.ts.
- Implemented logic to count occurrences of 'struts', 'commons', 'log4j', and 'cryptix' in target classes.
- Updated Markdown output to include a section for specific library counts, detailing the number of dependencies for each library.
- Logged library counts to the console for better visibility during execution.
- Updated .gitignore to include package-dependencies.md.
markdownContent+='This document lists all base packages that the project depends on.\n\n';
188
223
224
+
// Add section for specific library counts
225
+
markdownContent+='## Specific Library Counts\n\n';
226
+
markdownContent+='These counts represent the number of dependencies where the `targetClass` field in the JSONL data contains each specific library name. This helps quantify how many times your application code depends on classes from these libraries, which is useful for identifying vulnerability exposure.\n\n';
0 commit comments