cocottetech/@platform/codebase/@features/ai-copilot/macos-fe/Package.swift
autocommit e8e0195603 feat(ai-copilot): iOS/macOS Cockpit SwiftUI app (cockpit-kit + ios-fe + macos-fe)
Shared CocotteCockpitKit (views/model/LiveCockpitAPI) + iOS TabView shell
(Drops/Assets/Fleet/Activity/Insights) + macOS shell. XcodeGen project.yml.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-07 00:03:19 -07:00

21 lines
539 B
Swift

// swift-tools-version: 5.9
import PackageDescription
// ai-copilot macOS front-end (stream 1) NSApplication host over the shared Kit.
let package = Package(
name: "CocotteCockpitMac",
platforms: [
.macOS(.v14),
],
dependencies: [
.package(path: "../cockpit-kit"),
],
targets: [
.executableTarget(
name: "CocotteCockpit",
dependencies: [.product(name: "CocotteCockpitKit", package: "cockpit-kit")],
path: "Sources/CocotteCockpit"
),
]
)