-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathPackage.swift
More file actions
75 lines (73 loc) · 1.64 KB
/
Package.swift
File metadata and controls
75 lines (73 loc) · 1.64 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "CodMate",
defaultLocalization: "en",
platforms: [.macOS(.v13)],
products: [
.executable(
name: "CodMate",
targets: ["CodMate"]
),
.executable(
name: "notify",
targets: ["notify"]
),
],
dependencies: [
// Ghostty GPU-accelerated terminal
.package(path: "ghostty"),
// MCP Swift SDK for real MCP client connections
.package(url: "https://github.com/modelcontextprotocol/swift-sdk.git", from: "0.10.2"),
],
targets: [
.executableTarget(
name: "CodMate",
dependencies: [
.product(name: "GhosttyKit", package: "ghostty"),
.product(name: "MCP", package: "swift-sdk"),
],
path: ".",
exclude: [
"ghostty",
"notify",
"build",
".build",
"scripts",
"docs",
"payload",
"Tests",
"AGENTS.md",
"LICENSE",
"NOTICE",
"README.md",
"THIRD-PARTY-NOTICES.md",
"Makefile",
"screenshot.png",
"PrivacyInfo.xcprivacy",
"assets/Assets.xcassets",
"assets/Info.plist",
"assets/CodMate.entitlements",
"assets/CodMate-Notify.entitlements",
"Ghostty-header.h",
],
sources: [
"CodMateApp.swift",
"models",
"services",
"utils",
"views",
]
),
.executableTarget(
name: "notify",
path: "notify",
sources: ["NotifyMain.swift"]
),
.testTarget(
name: "CodMateTests",
dependencies: ["CodMate"]
),
],
swiftLanguageModes: [.v5]
)