forked from FolioReader/FolioReaderKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (27 loc) · 1023 Bytes
/
Package.swift
File metadata and controls
29 lines (27 loc) · 1023 Bytes
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
// swift-tools-version:5.5.0
import PackageDescription
let package = Package(
name: "FolioReaderKit",
platforms: [
.iOS(SupportedPlatform.IOSVersion.v11)
],
products: [
.library(name: "FolioReaderKit", targets: ["FolioReaderKit"])
],
dependencies: [
.package(url: "https://github.com/ZipArchive/ZipArchive.git", from: "2.1.0"),
.package(url: "https://github.com/cxa/MenuItemKit.git", from: "3.0.0"),
.package(url: "https://github.com/zoonooz/ZFDragableModalTransition.git", from: "0.6.0"),
.package(url: "https://github.com/tadija/AEXML.git", from: "4.2.0"),
.package(url: "https://github.com/ArtSabintsev/FontBlaster.git", from: "4.0.0"),
.package(url: "https://github.com/fantim/JSQWebViewController.git", from: "6.1.0"),
.package(url: "https://github.com/realm/realm-cocoa.git", from: "3.1.0")
],
targets: [
.target(
name: "FolioReaderKit",
dependencies: [],
path: "Source"
)
]
)