library.json 835 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name":"ESP Async WebServer",
  3. "description":"Asynchronous HTTP and WebSocket Server Library for ESP8266 and ESP32",
  4. "keywords":"http,async,websocket,webserver",
  5. "authors":
  6. {
  7. "name": "Hristo Gochkov",
  8. "maintainer": true
  9. },
  10. "repository":
  11. {
  12. "type": "git",
  13. "url": "https://github.com/me-no-dev/ESPAsyncWebServer.git"
  14. },
  15. "version": "1.2.3",
  16. "license": "LGPL-3.0",
  17. "frameworks": "arduino",
  18. "platforms": ["espressif8266", "espressif32"],
  19. "dependencies": [
  20. {
  21. "owner": "me-no-dev",
  22. "name": "ESPAsyncTCP",
  23. "version": "^1.2.2",
  24. "platforms": "espressif8266"
  25. },
  26. {
  27. "owner": "me-no-dev",
  28. "name": "AsyncTCP",
  29. "version": "^1.1.1",
  30. "platforms": "espressif32"
  31. },
  32. {
  33. "name": "Hash",
  34. "platforms": "espressif8266"
  35. }
  36. ]
  37. }