Files
SwiftFormat/SwiftFormat.podspec.json
2026-03-03 08:08:22 -08:00

42 lines
944 B
JSON

{
"name": "SwiftFormat",
"version": "0.60.0",
"license": {
"type": "MIT",
"file": "LICENSE.md"
},
"summary": "Mac and iOS library for formatting Swift source code.",
"homepage": "https://github.com/nicklockwood/SwiftFormat",
"authors": "Nick Lockwood",
"source": {
"git": "https://github.com/nicklockwood/SwiftFormat.git",
"tag": "0.60.0"
},
"default_subspecs": "Core",
"subspecs": [
{
"name": "Core",
"source_files": "Sources/**/*.swift"
},
{
"name": "CLI",
"preserve_paths": "CommandLineTool/swiftformat",
"platforms": {
"ios": "11.0",
"tvos": "11.0",
"osx": "10.14"
}
}
],
"platforms": {
"ios": "11.0",
"tvos": "11.0",
"osx": "10.14"
},
"_comment": "Omit Swift 6 versions to prevent Cocoapods from using -swift-version 6",
"swift_versions": [
"5.7", "5.8", "5.9", "5.10"
],
"requires_arc": true
}