mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-09 11:55:53 +00:00
Replace deprecated showSettingsWindow: selector with NSApp.openSettings() to properly show the Settings window when clicking "Settings..." in the menu bar. This aligns with the correct SwiftUI pattern used in VibeMeter.
32 lines
773 B
Swift
32 lines
773 B
Swift
// swift-tools-version: 6.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "VibeTunnel",
|
|
platforms: [
|
|
.macOS(.v14),
|
|
.iOS(.v17)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "VibeTunnel",
|
|
targets: ["VibeTunnel"]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/realm/SwiftLint.git", from: "0.57.0"),
|
|
.package(url: "https://github.com/nicklockwood/SwiftFormat.git", from: "0.55.0")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "VibeTunnel",
|
|
dependencies: [],
|
|
path: "VibeTunnel"
|
|
),
|
|
.testTarget(
|
|
name: "VibeTunnelTests",
|
|
dependencies: ["VibeTunnel"],
|
|
path: "VibeTunnelTests"
|
|
)
|
|
]
|
|
)
|