Add AI conversation assistant service. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
895 B
Swift
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"
|
|
),
|
|
]
|
|
)
|