forked from CodeEditApp/CodeEditKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
39 lines (37 loc) · 1.19 KB
/
Package.swift
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
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "CodeEditKit",
platforms: [
.macOS(.v13)
],
products: [
.library(
name: "CodeEditKit",
type: .dynamic,
targets: ["CodeEditKit"])
],
dependencies: [
.package(url: "https://github.com/ChimeHQ/ConcurrencyPlus", from: "0.4.1"),
.package(url: "https://github.com/ChimeHQ/LanguageClient", from: "0.5.0"),
.package(url: "https://github.com/ChimeHQ/ProcessService", from: "0.2.6"),
.package(
url: "https://github.com/lukepistrol/SwiftLintPlugin",
from: "0.2.2"
),
.package(
url: "https://github.com/Flight-School/AnyCodable",
from: "0.6.0"
)
],
targets: [
.target(
name: "CodeEditKit",
dependencies: ["AnyCodable", "ConcurrencyPlus", "LanguageClient", .product(name: "ProcessServiceClient", package: "ProcessService")],
plugins: [.plugin(name: "SwiftLint", package: "SwiftLintPlugin")]
),
.testTarget(
name: "CodeEditKitTests",
dependencies: ["CodeEditKit"])
]
)