mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-03-25 09:25:47 +00:00
- Add npm run inspector script for MCP inspector tool - Synchronize Swift CLI version with package.json (1.0.0-beta.9) - Update macOS version requirement to v14 (Sonoma) for n-1 support - Add Swift compiler warnings check in prepare-release script - Convert tests/setup.ts from Jest to Vitest syntax - Update server status tests to match new format 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
698 B
Swift
30 lines
698 B
Swift
// swift-tools-version: 5.7
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "peekaboo",
|
|
platforms: [
|
|
.macOS(.v14)
|
|
],
|
|
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"]
|
|
)
|
|
]
|
|
)
|