+8
.gitignore
+8
.gitignore
+26
Package.swift
+26
Package.swift
···
···
1
+
// swift-tools-version: 6.2
2
+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3
+
4
+
import PackageDescription
5
+
6
+
let package = Package(
7
+
name: "ImageKit",
8
+
products: [
9
+
// Products define the executables and libraries a package produces, making them visible to other packages.
10
+
.library(
11
+
name: "ImageKit",
12
+
targets: ["ImageKit"]
13
+
),
14
+
],
15
+
targets: [
16
+
// Targets are the basic building blocks of a package, defining a module or a test suite.
17
+
// Targets can depend on other targets in this package and products from dependencies.
18
+
.target(
19
+
name: "ImageKit"
20
+
),
21
+
.testTarget(
22
+
name: "ImageKitTests",
23
+
dependencies: ["ImageKit"]
24
+
),
25
+
]
26
+
)
+2
Sources/ImageKit/ImageKit.swift
+2
Sources/ImageKit/ImageKit.swift