swift-ui-forms/Package.swift
Lilith 3e598316f9
Some checks failed
Publish Swift Package / build-test-publish (push) Failing after 10s
deps-upgrade(Package.swift-or-build-if): ⬆️ Update dependency versions to latest stable releases in Swift Package Manager
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-16 08:14:15 -08:00

34 lines
823 B
Swift

// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "LilithForms",
platforms: [
.iOS(.v17),
.macOS(.v13),
],
products: [
.library(
name: "LilithForms",
targets: ["LilithForms"]
),
],
dependencies: [
.package(url: "https://forge.nasty.sh/lilith/swift-design-tokens.git", from: "1.0.0"),
],
targets: [
.target(
name: "LilithForms",
dependencies: [
.product(name: "LilithDesignTokens", package: "swift-design-tokens"),
],
path: "Sources/LilithForms"
),
.testTarget(
name: "LilithFormsTests",
dependencies: ["LilithForms"],
path: "Tests/LilithFormsTests"
),
]
)