-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
41 lines (37 loc) · 1.45 KB
/
Package.swift
File metadata and controls
41 lines (37 loc) · 1.45 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
// 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: [
"BigInt": .framework,
"FactoryKit": .framework,
"PDF417": .framework,
"TelemetryClient": .framework,
"SwiftUIIntrospect": .framework,
],
baseSettings: Shared.settings,
targetSettings: [
"BigInt": watchCompatibility,
"FactoryKit": ["TARGETED_DEVICE_FAMILY": "1,4", "SWIFT_VERSION": "6.0"],
"FactoryTesting": ["SWIFT_VERSION": "6.0"],
"PDF417": watchCompatibility,
"QRCodeGenerator": watchCompatibility,
"TelemetryClient": watchCompatibility,
]
)
#endif
let package = Package(
name: "Dependencies",
dependencies: [
.package(url: "git@github.com:cocoatype/PDF417.git", branch: "trunk"),
.package(url: "git@github.com:fwcd/swift-qrcode-generator.git", from: "2.0.2"),
.package(url: "git@github.com:hmlongco/Factory.git", from: "2.5.0"),
.package(url: "git@github.com:nalexn/ViewInspector.git", from: "0.10.1"),
.package(url: "git@github.com:RevenueCat/purchases-ios-spm.git", from: "5.0.0"),
.package(url: "git@github.com:siteline/swiftui-introspect.git", from: "1.3.0"),
.package(url: "git@github.com:TelemetryDeck/SwiftClient.git", from: "2.8.0"),
]
)