vibetunnel/Package.swift
Peter Steinberger 702b623d7f Fix settings window not appearing from menu bar
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.
2025-06-15 23:54:17 +02:00

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"
)
]
)