A macOS CLI tool that exports original photos and videos from the macOS Photos library using PhotoKit.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Expose LadderKit as a library product for external consumption

Allows other Swift packages to depend on LadderKit directly,
enabling the upcoming Attic menu bar app to reuse PhotoKit logic
instead of maintaining a separate implementation.

+3
+3
Package.swift
··· 4 4 let package = Package( 5 5 name: "ladder", 6 6 platforms: [.macOS(.v13)], 7 + products: [ 8 + .library(name: "LadderKit", targets: ["LadderKit"]), 9 + ], 7 10 targets: [ 8 11 .target( 9 12 name: "LadderKit",