- init: create plugin boilerplate - install: install from local path with deps - list: show installed plugins - validate: check manyplug.json syntax
21 lines
442 B
JSON
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"
|
|
}
|
|
}
|