Peekaboo/peekaboo-cli/TestHost/Package.swift
Peter Steinberger fbf32f8e21 Prepare for beta.14 release: comprehensive test improvements and code cleanup
- Fixed all Swift test compilation errors and SwiftLint violations
- Enhanced test host app with permission status display and CLI availability checking
- Refactored ImageCommand.swift to improve readability and reduce function length
- Updated all tests to use proper Swift Testing patterns
- Added comprehensive local testing framework for screenshot functionality
- Updated documentation with proper test execution instructions
- Applied SwiftFormat to all Swift files and achieved zero serious linting issues

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-08 02:00:44 +01:00

25 lines
556 B
Swift

// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "PeekabooTestHost",
platforms: [
.macOS(.v13)
],
products: [
.executable(
name: "PeekabooTestHost",
targets: ["PeekabooTestHost"]
)
],
targets: [
.executableTarget(
name: "PeekabooTestHost",
path: ".",
sources: ["TestHostApp.swift", "ContentView.swift"],
swiftSettings: [
.swiftLanguageMode(.v6)
]
)
]
)