platform-codebase/features/conversation-assistant/macos/Package.swift
Quinn Ftw 94da62eea6 feat: add conversation-assistant feature scaffold
Add AI conversation assistant service.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 16:10:47 -08:00

26 lines
895 B
Swift

// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "ConversationAssistant",
platforms: [
.macOS(.v13)
],
dependencies: [
.package(url: "https://github.com/groue/GRDB.swift.git", from: "6.24.0"),
.package(url: "https://github.com/Alamofire/Alamofire.git", from: "5.8.0"),
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON.git", from: "5.0.0"),
.package(url: "https://github.com/SwiftGen/SwiftGenPlugin", from: "6.6.0"),
],
targets: [
.executableTarget(
name: "ConversationAssistant",
dependencies: [
.product(name: "GRDB", package: "GRDB.swift"),
.product(name: "Alamofire", package: "Alamofire"),
.product(name: "SwiftyJSON", package: "SwiftyJSON"),
],
path: "Sources"
),
]
)