scopedepends
Scopedepends is a term used in some software packaging and build systems to describe dependencies that are relevant only within a particular scope or phase of a project’s lifecycle. Unlike global or runtime dependencies, scopedepends are declared to apply only when building, testing, or running in a chosen context. This allows finer-grained control over what must be available at each stage and can reduce unnecessary installations.
Scopedepends are typically declared in a package manifest or build configuration under a dedicated section or
Interaction with other dependency types
Scopedepends often coexist with standard dependencies (depends) and with test or development dependencies. They help distinguish
Limitations and considerations
Not all package managers implement scopedepends, and the concept may differ in terminology or scope granularity
Depends, build-depends, test-depends, scope-aware packaging, dependency resolution.