Files
manyplug/package.json
synt-xerror bbc44bec52 feat: initial CLI structure
- init: create plugin boilerplate
- install: install from local path with deps
- list: show installed plugins
- validate: check manyplug.json syntax
2026-04-09 01:15:00 -03:00

21 lines
442 B
JSON

{
"name": "manyplug",
"version": "0.1.0",
"description": "CLI plugin manager for ManyBot",
"type": "module",
"bin": {
"manyplug": "./bin/manyplug.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["manybot", "plugin", "cli", "whatsapp"],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^11.0.0",
"chalk": "^5.3.0",
"fs-extra": "^11.1.1"
}
}