From 34ec4f2651414affe0446c558015c0a0af0e37ba Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Fri, 28 Nov 2025 15:06:33 -0800 Subject: [PATCH] feat: add Meshtastic plugins configuration file with LoDB and LoBBS details --- meshtastic-plugins.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meshtastic-plugins.json diff --git a/meshtastic-plugins.json b/meshtastic-plugins.json new file mode 100644 index 0000000..20e9758 --- /dev/null +++ b/meshtastic-plugins.json @@ -0,0 +1,23 @@ +{ + "lodb": { + "name": "LoDB", + "description": "Micro database for Meshtastic - A synchronous, protobuf-based database for Meshtastic", + "repo": "https://github.com/MeshEnvy/lodb", + "version": "1.0.0", + "author": "benallfree", + "dependencies": { + "meshtastic": ">=2.7.0" + } + }, + "lobbs": { + "name": "LoBBS", + "author": "benallfree", + "description": "BBS for Meshtastic right on the firmware - A full bulletin board system that runs entirely inside the Meshtastic firmware", + "repo": "https://github.com/MeshEnvy/lobbs", + "version": "1.0.0", + "dependencies": { + "lodb": ">=1.0.0", + "meshtastic": ">=2.7.0" + } + } +}