-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
34 lines (30 loc) · 1.08 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
// swift-tools-version: 5.9
import PackageDescription
#if TUIST
import ProjectDescription
import ProjectDescriptionHelpers
let watchCompatibility: SettingsDictionary = ["TARGETED_DEVICE_FAMILY": "1,4"]
let packageSettings = PackageSettings(
productTypes: [
"TelemetryClient": .framework,
"SwiftUIIntrospect": .framework,
],
baseSettings: Shared.settings,
targetSettings: [
"BigInt": watchCompatibility,
"PDF417": watchCompatibility,
"QRCodeGenerator": watchCompatibility,
"TelemetryClient": watchCompatibility,
]
)
#endif
let package = Package(
name: "Dependencies",
dependencies: [
.package(url: "[email protected]:TelemetryDeck/SwiftClient.git", from: "1.0.0"),
.package(url: "[email protected]:siteline/swiftui-introspect.git", from: "1.3.0"),
.package(url: "[email protected]:fwcd/swift-qrcode-generator.git", from: "2.0.2"),
.package(url: "[email protected]:RevenueCat/purchases-ios-spm.git", from: "5.0.0"),
.package(url: "[email protected]:cocoatype/PDF417.git", branch: "trunk"),
]
)