-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
45 lines (40 loc) · 1.56 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
40
41
42
43
44
45
// swift-tools-version: 5.9
//
// Copyright © 2023 Md. Mahmudul Hasan Shohag. All rights reserved.
//
import PackageDescription
#if TUIST
import ProjectDescription
import ProjectDescriptionHelpers
let packageSettings = PackageSettings(
productTypes: [ // default is .staticFramework,
"SwiftMacros": .framework,
"Alamofire": .framework,
"Moya": .framework,
"CombineMoya": .framework,
"Kingfisher": .framework,
"DGCharts": .framework,
"Lottie": .framework,
"Shimmer": .framework,
"RealmSwift": .framework,
"MarkdownUI": .framework,
],
baseSettings: Settings.settings(
configurations: BuildEnvironment.getConfigurations(for: .target)
)
)
#endif
let package = Package(
name: "PackageName",
dependencies: [
.package(path: "packages/SwiftMacros"),
.package(url: "https://github.com/Alamofire/Alamofire", from: "5.0.0"),
.package(url: "https://github.com/Moya/Moya", from: "15.0.0"),
.package(url: "https://github.com/onevcat/Kingfisher", from: "7.0.0"),
.package(url: "https://github.com/danielgindi/Charts", from: "5.0.0"),
.package(url: "https://github.com/airbnb/lottie-ios", from: "4.3.0"),
.package(url: "https://github.com/markiv/SwiftUI-Shimmer", from: "1.4.2"),
.package(url: "https://github.com/realm/realm-swift", from: "10.52.3"),
.package(url: "https://github.com/gonzalezreal/swift-markdown-ui", from: "2.4.0")
]
)