mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 12:22:14 +03:00
Adds plugin discovery, loading, and management to the omniroute CLI. - bin/cli/plugins.mjs: discoverPlugins / loadPlugins / buildPluginContext - bin/cli/commands/plugin.mjs: list / install / remove / info / search / update / scaffold - examples/omniroute-cmd-hello/: minimal working plugin example - docs/dev/plugins.md: plugin API contract and authoring guide - .env.example + ENVIRONMENT.md: document OMNIROUTE_PLUGIN_PATH
15 lines
262 B
JSON
15 lines
262 B
JSON
{
|
|
"name": "omniroute-cmd-hello",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "index.mjs",
|
|
"description": "Example OmniRoute CLI plugin",
|
|
"engines": {
|
|
"omniroute": ">=4.0.0"
|
|
},
|
|
"keywords": [
|
|
"omniroute-plugin",
|
|
"omniroute-cmd"
|
|
]
|
|
}
|