cocottetech/@platform/codebase/@features/ai-copilot/cockpit-kit/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

27 lines
727 B
Swift

// swift-tools-version: 5.9
import PackageDescription
// Shared, cross-platform cockpit core model + components + design tokens.
// Consumed by both ai-copilot front-ends (ios-fe, macos-fe).
let package = Package(
name: "CocotteCockpitKit",
platforms: [
.macOS(.v14),
.iOS(.v17),
],
products: [
.library(name: "CocotteCockpitKit", targets: ["CocotteCockpitKit"]),
],
targets: [
.target(
name: "CocotteCockpitKit",
path: "Sources/CocotteCockpitKit"
),
.testTarget(
name: "CocotteCockpitKitTests",
dependencies: ["CocotteCockpitKit"],
path: "Tests/CocotteCockpitKitTests"
),
]
)