96ba9e3a56
added lexer, parser, Shell, Executor. added tests for sonyalib it already works! will be implementing more features soon.
23 lines
506 B
Swift
23 lines
506 B
Swift
// swift-tools-version: 6.2
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "sonya",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
dependencies: [
|
|
.package(path: "Sources/sonyalib"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "sonya",
|
|
dependencies: [
|
|
.product(name: "sonyalib", package: "sonyalib"),
|
|
]
|
|
),
|
|
]
|
|
)
|