dep-scan
dep-scan copied to clipboard
Question about direct and transitive dependencies
Let's imagine a situation where we import a transitive dependency from the main dependency: import {transitive_dep} from {direct_dep}.
In the main dependency, we have transitive dependency export allowed: export {transitive_dep}
In this case, will depscan mark the used {transitive_dev} dependency in our code as a direct dependency or also a transitive one?