Peekaboo/peekaboo-cli/Package.swift
Peter Steinberger 670e1c485a Add GitHub Actions CI workflow for Node.js builds
- Configure CI to run on macOS-latest
- Test with Node.js 20.x and 22.x
- Run npm build and tests on push/PR

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-05-25 01:25:35 +02:00

30 lines
No EOL
702 B
Swift

// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "peekaboo",
platforms: [
.macOS(.v12)
],
products: [
.executable(
name: "peekaboo",
targets: ["peekaboo"]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0"),
],
targets: [
.executableTarget(
name: "peekaboo",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.testTarget(
name: "peekabooTests",
dependencies: ["peekaboo"]
),
]
)