CxLLM-SPA-RNDR/Package.swift
CxAI Agent fc6e835c50
Some checks are pending
ci / validate (push) Waiting to run
feat: add Package.swift + CxSPARenderer seed target
Stamps a SwiftPM manifest onto the scaffold so the package can be
consumed by the CxLLM-SDK umbrella and downstream apps. The seed
source exposes a versioned namespace placeholder; real implementation
lands in subsequent phases.
2026-05-16 14:20:28 -05:00

15 lines
375 B
Swift

// swift-tools-version: 5.9
// CxLLM-SPA-RNDR part of CxLLM SDK
import PackageDescription
let package = Package(
name: "CxLLM-SPA-RNDR",
platforms: [.macOS(.v13), .iOS(.v17)],
products: [
.library(name: "CxSPARenderer", targets: ["CxSPARenderer"]),
],
targets: [
.target(name: "CxSPARenderer", path: "Sources/CxSPARenderer"),
]
)