- Add AppDiscovery provider for running app enumeration - Implement AppDropdownView with auto-launch functionality - Create SignalAction models for 40+ yabai commands - Build ActionBuilderView with nested parameter controls - Add LiveShellPreview for real-time shell command generation - Implement ActionValidator for conflict detection - Add migration parser for existing raw action strings - Include feature flag for safe rollout - Maintain full backward compatibility
31 lines
394 B
Swift
31 lines
394 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AnimationDemo",
|
|
platforms: [
|
|
.macOS(.v12)
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "AnimationDemo",
|
|
dependencies: [],
|
|
resources: [
|
|
.copy("Shaders/Shaders.metal")
|
|
]
|
|
)
|
|
]
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|