-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathPackage.swift
More file actions
25 lines (23 loc) · 760 Bytes
/
Package.swift
File metadata and controls
25 lines (23 loc) · 760 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
// swift-tools-version: 5.10
import PackageDescription
let package = Package(
name: "Example",
platforms: [.macOS("15"), .iOS("18"), .watchOS("11"), .tvOS("18"), .visionOS("2")],
dependencies: [
.package(path: "../../"),
.package(
url: "https://github.com/kateinoigakukun/chibi-ray",
revision: "c8cab621a3338dd2f8e817d3785362409d3b8cf1"
),
],
targets: [
.executableTarget(
name: "MyApp",
dependencies: [
.product(name: "JavaScriptKit", package: "JavaScriptKit"),
.product(name: "JavaScriptEventLoop", package: "JavaScriptKit"),
.product(name: "ChibiRay", package: "chibi-ray"),
]
)
]
)