Includes SwiftData dual-store architecture (local reference + CloudKit user data), JSON-based data seeding, 20 tense guides, 20 grammar notes, SRS review system, course vocabulary, and widget support. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
394 B
Swift
20 lines
394 B
Swift
// swift-tools-version: 6.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Conjuga",
|
|
platforms: [.iOS(.v18)],
|
|
products: [
|
|
.library(name: "Conjuga", targets: ["Conjuga"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Conjuga",
|
|
path: "Conjuga",
|
|
resources: [
|
|
.process("Resources")
|
|
]
|
|
),
|
|
]
|
|
)
|