-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
20 lines (18 loc) · 732 Bytes
/
Package.swift
File metadata and controls
20 lines (18 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// swift-tools-version:6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "QuoteKit",
platforms: [.iOS(.v15), .macOS(.v12), .tvOS(.v15), .watchOS(.v8)],
products: [.library(name: "QuoteKit", targets: ["QuoteKit"])],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
.package(url: "https://github.com/lukepistrol/SwiftLintPlugin", from: "0.2.2"),
],
targets: [
.target(
name: "QuoteKit", dependencies: [],
plugins: [.plugin(name: "SwiftLint", package: "SwiftLintPlugin")]),
.testTarget(name: "QuoteKitTests", dependencies: ["QuoteKit"]),
]
)