# `GSFont.dependencies`

*Instance Property*

External dependencies required by the font.

## Declaration

```swift
var dependencies: [String : String] { get set }
```

```objc
@property (nonatomic, strong) NSDictionary<NSString *,NSString *> * dependencies;
```

```python
dependencies() -> dict[str, str]
setDependencies_(dependencies: dict[str, str])
```

## Discussion

The key is the dependency class name. The value is the display name shown for the dependency.

## See Also

### Dependencies

- [`GSFont addDependency:displayName:`](/Core/GlyphsCore/GSFont/addDependency:displayName:) — Adds or replaces an external dependency.
- [`GSFont removeDependency:`](/Core/GlyphsCore/GSFont/removeDependency:) — Removes an external dependency.

