-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
34 lines (31 loc) · 1 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// swift-tools-version: 5.8
import PackageDescription
let settings: [SwiftSetting] = [
.enableExperimentalFeature("StrictConcurrency")
]
let package = Package(
name: "TextFormationPlugin",
platforms: [.macOS(.v12)],
products: [
.library(name: "TextFormationPlugin", targets: ["TextFormationPlugin"]),
],
dependencies: [
.package(url: "https://github.com/krzyzanowskim/STTextView", branch: "main"),
.package(url: "https://github.com/ChimeHQ/TextFormation", from: "0.9.0"),
.package(url: "https://github.com/ChimeHQ/TextStory", from: "0.9.0"),
],
targets: [
.target(
name: "TextFormationPlugin",
dependencies: [
.product(name: "STTextView", package: "STTextView"),
"TextStory",
"TextFormation",
],
swiftSettings: settings),
.testTarget(
name: "TextFormationPluginTests",
dependencies: ["TextFormationPlugin"],
swiftSettings: settings),
]
)