Initial commit: Example plugin

This commit is contained in:
2026-04-17 01:48:23 +10:00
commit 23cfbee2bc
5 changed files with 201 additions and 0 deletions

16
plugin.json Normal file
View File

@@ -0,0 +1,16 @@
{
"id": "example-plugin",
"name": "Example Plugin",
"version": "1.0.0",
"description": "An example plugin demonstrating the plugin system capabilities",
"author": "Your Name",
"main": "index.js",
"repository": "http://synbox.ruv.wtf:8418/litruv/Plugin-Example.git",
"config": {
"greeting": "Hello from Example Plugin!"
},
"permissions": [
"hooks",
"events"
]
}