vibetunnel/mac/Package.swift
Helmut Januschka f3b2022d48
Integrate screencap functionality for remote screen sharing (#209)
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Peter Steinberger <steipete@gmail.com>
2025-07-06 03:31:34 +01:00

49 lines
1.5 KiB
Swift

// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "VibeTunnel",
platforms: [
.macOS(.v14)
],
products: [
.library(
name: "VibeTunnel",
targets: ["VibeTunnel"]
)
],
dependencies: [
.package(url: "https://github.com/realm/SwiftLint.git", from: "0.59.1"),
.package(url: "https://github.com/nicklockwood/SwiftFormat.git", from: "0.56.4"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.3"),
.package(url: "https://github.com/sparkle-project/Sparkle", from: "2.7.1"),
.package(url: "https://github.com/stasel/WebRTC.git", .upToNextMajor(from: "137.0.0"))
],
targets: [
.target(
name: "VibeTunnel",
dependencies: [
.product(name: "Logging", package: "swift-log"),
.product(name: "Sparkle", package: "Sparkle"),
.product(name: "WebRTC", package: "WebRTC")
],
path: "VibeTunnel",
exclude: [
"Info.plist",
"VibeTunnel.entitlements",
"Shared.xcconfig",
"version.xcconfig",
"version.xcconfig.bak",
"sparkle-public-ed-key.txt",
"Assets.xcassets",
"AppIcon.icon",
"VibeTunnelApp.swift"
]
),
.testTarget(
name: "VibeTunnelTests",
dependencies: ["VibeTunnel"],
path: "VibeTunnelTests"
)
]
)