-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
32 lines (29 loc) · 997 Bytes
/
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
// swift-tools-version:5.7
import PackageDescription
#if TUIST
import ProjectDescription
import ProjectDescriptionHelpers
let packageSetting = PackageSettings(
productTypes: [
"GRDB": .framework
],
baseSettings: .settings(
configurations: [
.debug(name: .dev),
.debug(name: .stage),
.release(name: .prod)
]
)
)
#endif
let package = Package(
name: "TodayWhatPackage",
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", from: "1.7.0"),
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON", from: "5.0.0"),
.package(url: "https://github.com/groue/GRDB.swift.git", from: "6.24.2"),
.package(url: "https://github.com/sindresorhus/LaunchAtLogin.git", from: "5.0.0"),
.package(url: "https://github.com/firebase/firebase-ios-sdk", from: "10.20.0"),
.package(url: "https://github.com/kean/Nuke.git", from: "12.4.0")
]
)