blob: 661ee24fab409d9066c77853992b221b8299cfe4 [file] [log] [blame]
{
"name": "LLVS",
"version": "0.1",
"summary": "A decentralized, versioned key-value storage framework in Swift",
"description": "Ever wish it was as easy to move your app's data around as it is to push and pull \nyour source code with a tool like Git? \n\nLLVS works like a standard key-value store, except that it attaches a version to\nevery piece of stored data — it forms a complete history of changes. \nJust as with Git, you can retrieve the values for \nany version, determine the differences between two versions, \nand merge divergent versions.\n\nLLVS is also decentralized: you can send and receive versions from other stores, \nin the same way that you push and pull from other repositories with Git.",
"homepage": "https://gitlab.com/llvs/llvs",
"license": {
"type": "MIT",
"file": "LICENCE.txt"
},
"authors": {
"Drew McCormack": "drewmccormack@mac.com"
},
"platforms": {
"ios": "10.0",
"osx": "10.12"
},
"swift_versions": "5.0",
"source": {
"git": "https://gitlab.com/llvs/llvs.git",
"tag": "0.1"
},
"default_subspecs": "Core",
"swift_version": "5.0",
"subspecs": [
{
"name": "Core",
"source_files": "Sources/LLVS/*/*.swift"
},
{
"name": "CloudKit",
"dependencies": {
"LLVS/Core": [
]
},
"frameworks": "CloudKit",
"source_files": "Sources/LLVSCloudKit/*.swift"
}
]
}