From b6d347b3a63b54bd24bed6c1828d3d18ce8fa695 Mon Sep 17 00:00:00 2001 From: nkaaf Date: Fri, 30 Dec 2022 13:26:10 +0100 Subject: [PATCH] Add library.json for PlatformIO --- library.json | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..2b97542 --- /dev/null +++ b/library.json @@ -0,0 +1,57 @@ +{ + "name": "List", + "version": "2.1.1", + "description": "The Ultimate Collection of Lists. This library extends the Arduino ecosystem with the functionality of several easy-to-use lists for numerous purposes.", + "keywords": [ + "arduino", + "list", + "datatype", + "storage" + ], + "homepage": "https://nkaaf.github.io/Arduino-List", + "repository": { + "type": "git", + "url": "https://github.com/nkaaf/Arduino-List" + }, + "authors": { + "name": "Niklas Kaaf", + "email": "nkaaf@protonmail.com", + "url": "https://github.com/nkaaf", + "maintainer": true + }, + "license": "LGPL-2.1-only", + "frameworks": "arduino", + "platforms": "*", + "headers": "List.hpp", + "examples": [ + { + "name": "DifferenceMutableAndImmutable", + "base": "examples/List/DifferenceMutableAndImmutable", + "files": [ + "DifferenceMutableAndImmutable.ino" + ] + }, + { + "name": "ManageElements", + "base": "examples/List/ManageElements", + "files": [ + "ManageElements.ino" + ] + } + { + "name": "UtilsAndHelper", + "base": "examples/List/UtilsAndHelper", + "files": [ + "UtilsAndHelper.ino" + ] + } + ], + "export": { + "import": [ + "examples/*", + "src/*", + "library.json", + "LICENSE" + ] + } +} \ No newline at end of file