Files
letro-ios/compound-ios/Package.swift
2025-11-17 20:28:10 +02:00

39 lines
1.3 KiB
Swift

// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "Compound",
platforms: [.iOS(.v17)],
products: [
.library(name: "Compound", targets: ["Compound"])
],
dependencies: [
.package(url: "https://github.com/element-hq/compound-design-tokens", exact: "6.4.0"),
// .package(path: "../compound-design-tokens"),
.package(url: "https://github.com/siteline/SwiftUI-Introspect", from: "26.0.0"),
.package(url: "https://github.com/SFSafeSymbols/SFSafeSymbols", from: "7.0.0"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing", exact: "1.18.3")
],
targets: [
.target(
name: "Compound",
dependencies: [
.product(name: "CompoundDesignTokens", package: "compound-design-tokens"),
.product(name: "SwiftUIIntrospect", package: "SwiftUI-Introspect"),
.product(name: "SFSafeSymbols", package: "SFSafeSymbols")
]
),
.testTarget(
name: "CompoundTests",
dependencies: [
"Compound",
.product(name: "SnapshotTesting", package: "swift-snapshot-testing")
],
exclude: [
"__Snapshots__"
]
)
]
)