-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
47 lines (42 loc) · 2.03 KB
/
Copy pathPackage.swift
File metadata and controls
47 lines (42 loc) · 2.03 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
// swift-tools-version: 6.2
import PackageDescription
let package = Package(
name: "FlineDevKit",
platforms: [.iOS(.v18), .macOS(.v15), .tvOS(.v18), .visionOS(.v2), .watchOS(.v10)],
products: [.library(name: "FlineDevKit", targets: ["FlineDevKit"])],
dependencies: [
// Apple
.package(url: "https://github.com/apple/swift-collections.git", from: "1.3.0"),
// FlineDev
.package(url: "https://github.com/FlineDev/ErrorKit.git", branch: "main"),
.package(url: "https://github.com/FlineDev/FreemiumKit.git", from: "1.18.3"),
.package(url: "https://github.com/FlineDev/HandySwift.git", branch: "main"),
.package(url: "https://github.com/FlineDev/HandySwiftUI.git", branch: "main"),
.package(url: "https://github.com/FlineDev/LinksKit.git", branch: "main"),
.package(url: "https://github.com/FlineDev/ReviewKit.git", branch: "main"),
.package(url: "https://github.com/FlineDev/TranslateKit.git", branch: "main"),
// 3rd-Party
.package(url: "https://github.com/pointfreeco/swift-identified-collections.git", from: "1.1.1"),
.package(url: "https://github.com/TelemetryDeck/SwiftSDK.git", from: "2.11.0"),
],
targets: [
.target(
name: "FlineDevKit",
dependencies: [
// Apple
.product(name: "OrderedCollections", package: "swift-collections"),
// FlineDev
.product(name: "ErrorKit", package: "ErrorKit"),
.product(name: "FreemiumKit", package: "FreemiumKit"),
.product(name: "HandySwift", package: "HandySwift"),
.product(name: "HandySwiftUI", package: "HandySwiftUI"),
.product(name: "LinksKit", package: "LinksKit"),
.product(name: "ReviewKit", package: "ReviewKit"),
.product(name: "TranslateKit", package: "TranslateKit"),
// 3rd-Party
.product(name: "IdentifiedCollections", package: "swift-identified-collections"),
.product(name: "TelemetryDeck", package: "SwiftSDK"),
]
),
]
)