Adds template libs

This commit is contained in:
Rune Harlyk
2024-04-22 21:07:56 +02:00
committed by Rune Harlyk
parent 0724705939
commit b804b9df1f
126 changed files with 57429 additions and 13 deletions
+48
View File
@@ -0,0 +1,48 @@
{
"name": "PsychicHttp",
"version": "1.0.1",
"description": "Arduino style wrapper around ESP-IDF HTTP library. HTTP server with SSL + websockets. Works on esp32 and probably esp8266",
"keywords": "network,http,https,tcp,ssl,tls,websocket,espasyncwebserver",
"repository":
{
"type": "git",
"url": "https://github.com/hoeken/PsychicHttp"
},
"authors":
[
{
"name": "Zach Hoeken",
"email": "hoeken@gmail.com",
"maintainer": true
}
],
"license" : "LGPL-3.0-or-later",
"examples": [
{
"name": "platformio",
"base": "examples/platformio",
"files": [
"src/main.cpp"
]
}
],
"frameworks": "arduino",
"platforms": "espressif32",
"dependencies": [
{
"owner": "bblanchon",
"name": "ArduinoJson",
"version": "^6.21.4"
},
{
"owner": "bblanchon",
"name": "ArduinoTrace",
"version": "^1.2.0"
},
{
"owner": "plageoj",
"name" : "UrlEncode",
"version" : "^1.0.1"
}
]
}