-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
55 lines (53 loc) · 1.52 KB
/
Package.swift
File metadata and controls
55 lines (53 loc) · 1.52 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
45
46
47
48
49
50
51
52
53
54
55
// swift-tools-version: 6.1
import PackageDescription
let package = Package(
name: "SwiftWork",
platforms: [
.macOS(.v14),
],
products: [
.executable(
name: "SwiftWork",
targets: ["SwiftWork"]
),
],
dependencies: [
// Core SDK for agent capabilities
.package(
url: "https://github.com/terryso/open-agent-sdk-swift",
.upToNextMinor(from: "0.1.0")
),
// Apple's Markdown parsing library
.package(
url: "https://github.com/apple/swift-markdown",
from: "0.5.0"
),
// Code syntax highlighting by John Sundell
.package(
url: "https://github.com/JohnSundell/Splash",
from: "0.9.0"
),
// macOS auto-updater (Phase 4 integration)
.package(
url: "https://github.com/sparkle-project/Sparkle",
from: "2.0.0"
),
],
targets: [
.executableTarget(
name: "SwiftWork",
dependencies: [
.product(name: "OpenAgentSDK", package: "open-agent-sdk-swift"),
.product(name: "Markdown", package: "swift-markdown"),
.product(name: "Splash", package: "Splash"),
.product(name: "Sparkle", package: "Sparkle"),
],
path: "SwiftWork"
),
.testTarget(
name: "SwiftWorkTests",
dependencies: ["SwiftWork"],
path: "SwiftWorkTests"
),
]
)