-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathPackage.swift
35 lines (34 loc) · 1.51 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
35
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Graphaello",
platforms: [.macOS(.v10_14)],
products: [
.executable(name: "graphaello", targets: ["Graphaello"]),
],
dependencies: [
.package(url: "https://github.com/jpsim/SourceKitten.git", .upToNextMajor(from: "0.27.0")),
.package(url: "https://github.com/nerdsupremacist/CLIKit.git", .upToNextMajor(from: "0.3.7")),
.package(url: "https://github.com/nerdsupremacist/graphql-syntax.git", .upToNextMajor(from: "0.1.3")),
.package(url: "https://github.com/nerdsupremacist/Stencil.git", .upToNextMajor(from: "0.13.2")),
.package(name: "XcodeProj", url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "7.5.0")),
.package(url: "https://github.com/nicklockwood/SwiftFormat.git", .upToNextMajor(from: "0.42.0")),
.package(name: "SwiftSyntax", url: "https://github.com/apple/swift-syntax.git", .exact("0.50500.0")),
.package(url: "https://github.com/kylef/PathKit.git", .upToNextMajor(from: "1.0.0")),
],
targets: [
.target(
name: "Graphaello",
dependencies: [
.product(name: "SourceKittenFramework", package: "SourceKitten"),
"CLIKit",
.product(name: "GraphQLSyntax", package: "graphql-syntax"),
"Stencil",
"XcodeProj",
"PathKit",
"SwiftFormat",
"SwiftSyntax",
]
),
]
)