-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPackage.swift
More file actions
44 lines (43 loc) · 1.79 KB
/
Copy pathPackage.swift
File metadata and controls
44 lines (43 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "Skwad",
platforms: [
.macOS(.v14)
],
dependencies: [
.package(url: "https://github.com/migueldeicaza/SwiftTerm.git", from: "1.2.0"),
.package(url: "https://github.com/modelcontextprotocol/swift-sdk", from: "0.10.2"),
.package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "2.0.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.0"),
.package(url: "https://github.com/sparkle-project/Sparkle", from: "2.6.0"),
.package(url: "https://github.com/nalexn/ViewInspector.git", from: "0.10.0"),
.package(url: "https://github.com/gonzalezreal/swift-markdown-ui", from: "2.4.0"),
.package(url: "https://github.com/lzell/AIProxySwift", from: "0.145.1"),
.package(url: "https://github.com/lukilabs/beautiful-mermaid-swift", from: "0.1.0"),
],
targets: [
.executableTarget(
name: "Skwad",
dependencies: [
"SwiftTerm",
.product(name: "MCP", package: "swift-sdk"),
.product(name: "Hummingbird", package: "hummingbird"),
.product(name: "Logging", package: "swift-log"),
.product(name: "Sparkle", package: "Sparkle"),
.product(name: "MarkdownUI", package: "swift-markdown-ui"),
.product(name: "AIProxy", package: "AIProxySwift"),
.product(name: "BeautifulMermaid", package: "beautiful-mermaid-swift"),
],
path: "Skwad"
),
.testTarget(
name: "SkwadTests",
dependencies: [
"Skwad",
"ViewInspector",
],
path: "SkwadTests"
)
]
)