|
| 1 | +//swift-tools-version:6.2 |
| 2 | +import PackageDescription |
| 3 | + |
| 4 | +let package = Package( |
| 5 | + name: "ICTMDBAllListModule", |
| 6 | + defaultLocalization: "en", |
| 7 | + platforms: [ |
| 8 | + .iOS(.v18) |
| 9 | + ], |
| 10 | + products: [ |
| 11 | + .library( |
| 12 | + name: "ICTMDBAllListModule", |
| 13 | + targets: ["ICTMDBAllListModule"] |
| 14 | + ), |
| 15 | + ], |
| 16 | + dependencies: [ |
| 17 | + .package(url: "https://github.com/SnapKit/SnapKit.git", from: "5.0.1"), |
| 18 | + .package(url: "https://github.com/engingulek/GenericCollectionViewKit",from:"0.0.2"), |
| 19 | + .package(url: "https://github.com/engingulek/ICTMDBModularProtocols", from: "0.0.1"), |
| 20 | + .package(url: "https://github.com/engingulek/ICTMDBNetworkManagerKit", from: "0.0.2"), |
| 21 | + .package(url: "https://github.com/engingulek/ICTMDBViewKit", from: "0.0.2"), |
| 22 | + .package(url: "https://github.com/engingulek/HPDependencyKit", from: "1.0.0"), |
| 23 | + ], |
| 24 | + targets: [ |
| 25 | + .target( |
| 26 | + name: "ICTMDBAllListModule", |
| 27 | + dependencies: [ |
| 28 | + .product(name: "SnapKit", package: "SnapKit"), |
| 29 | + .product(name: "GenericCollectionViewKit", package: "GenericCollectionViewKit"), |
| 30 | + .product(name: "ICTMDBModularProtocols", package: "ICTMDBModularProtocols"), |
| 31 | + .product(name: "ICTMDBNetworkManagerKit", package: "ICTMDBNetworkManagerKit"), |
| 32 | + .product(name: "ICTMDBViewKit", package: "ICTMDBViewKit"), |
| 33 | + .product(name: "DependencyKit", package: "HPDependencyKit") |
| 34 | + ], |
| 35 | + path: "ICTMDBAllListModule" |
| 36 | + ) |
| 37 | + ] |
| 38 | +) |
0 commit comments