-
-
Notifications
You must be signed in to change notification settings - Fork 496
Expand file tree
/
Copy pathPackage.swift
More file actions
20 lines (19 loc) · 755 Bytes
/
Copy pathPackage.swift
File metadata and controls
20 lines (19 loc) · 755 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
import PackageDescription
let package = Package(
name: "MiaoYan",
defaultLocalization: "en",
platforms: [
.macOS(.v11),
.iOS(.v18),
],
dependencies: [
.package(url: "https://github.com/sparkle-project/Sparkle.git", from: "2.8.0"),
.package(url: "https://github.com/raspu/Highlightr.git", from: "2.3.0"),
.package(url: "https://github.com/ZipArchive/ZipArchive.git", from: "2.6.0"),
.package(url: "https://github.com/stackotter/swift-cmark-gfm", from: "1.0.2"),
.package(url: "https://github.com/sindresorhus/KeyboardShortcuts", from: "2.4.0"),
.package(url: "https://github.com/simonbs/Prettier.git", from: "0.2.1"),
],
targets: []
)