-
-
Notifications
You must be signed in to change notification settings - Fork 474
Expand file tree
/
Copy pathPackage.swift
More file actions
19 lines (18 loc) · 734 Bytes
/
Package.swift
File metadata and controls
19 lines (18 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "MiaoYan",
defaultLocalization: "en",
platforms: [
.macOS(.v11)
],
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: []
)