feat: initial CLI structure

- init: create plugin boilerplate
- install: install from local path with deps
- list: show installed plugins
- validate: check manyplug.json syntax
This commit is contained in:
synt-xerror
2026-04-09 01:15:00 -03:00
commit bbc44bec52
83 changed files with 11356 additions and 0 deletions

16
node_modules/commander/esm.mjs generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import commander from './index.js';
// wrapper to provide named exports for ESM.
export const {
program,
createCommand,
createArgument,
createOption,
CommanderError,
InvalidArgumentError,
InvalidOptionArgumentError, // deprecated old name
Command,
Argument,
Option,
Help
} = commander;