2024-09-10 04:53:19 +00:00
|
|
|
// swift-tools-version: 6.0
|
2022-12-23 09:41:55 +00:00
|
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "Explore",
|
2023-01-19 17:14:08 +00:00
|
|
|
defaultLocalization: "en",
|
2022-12-23 09:41:55 +00:00
|
|
|
platforms: [
|
2023-09-18 05:01:23 +00:00
|
|
|
.iOS(.v17),
|
2023-12-19 08:51:20 +00:00
|
|
|
.visionOS(.v1),
|
2022-12-23 09:41:55 +00:00
|
|
|
],
|
|
|
|
products: [
|
|
|
|
.library(
|
|
|
|
name: "Explore",
|
2023-01-17 10:36:01 +00:00
|
|
|
targets: ["Explore"]
|
|
|
|
),
|
2022-12-23 09:41:55 +00:00
|
|
|
],
|
|
|
|
dependencies: [
|
2022-12-23 15:21:31 +00:00
|
|
|
.package(name: "Account", path: "../Account"),
|
2022-12-23 09:41:55 +00:00
|
|
|
.package(name: "Network", path: "../Network"),
|
|
|
|
.package(name: "Models", path: "../Models"),
|
|
|
|
.package(name: "Env", path: "../Env"),
|
2024-01-06 18:27:26 +00:00
|
|
|
.package(name: "StatusKit", path: "../StatusKit"),
|
2022-12-25 06:43:02 +00:00
|
|
|
.package(name: "DesignSystem", path: "../DesignSystem"),
|
2022-12-23 09:41:55 +00:00
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "Explore",
|
|
|
|
dependencies: [
|
2022-12-23 15:21:31 +00:00
|
|
|
.product(name: "Account", package: "Account"),
|
2022-12-23 09:41:55 +00:00
|
|
|
.product(name: "Network", package: "Network"),
|
|
|
|
.product(name: "Models", package: "Models"),
|
|
|
|
.product(name: "Env", package: "Env"),
|
2024-01-06 18:27:26 +00:00
|
|
|
.product(name: "StatusKit", package: "StatusKit"),
|
2023-01-17 10:36:01 +00:00
|
|
|
.product(name: "DesignSystem", package: "DesignSystem"),
|
2023-09-15 10:46:15 +00:00
|
|
|
],
|
|
|
|
swiftSettings: [
|
2024-09-10 04:53:19 +00:00
|
|
|
.swiftLanguageMode(.v6),
|
2023-01-17 10:36:01 +00:00
|
|
|
]
|
|
|
|
),
|
2022-12-23 09:41:55 +00:00
|
|
|
]
|
|
|
|
)
|