37 lines
739 B
JSON
37 lines
739 B
JSON
{
|
|
"name": "simple",
|
|
"version": "2.0.0",
|
|
"description": "A simple CLI with basic commands",
|
|
"bin": "simple",
|
|
"commands": [
|
|
{
|
|
"name": "greet",
|
|
"description": "Greet a user",
|
|
"options": [
|
|
{
|
|
"name": "name",
|
|
"short": "n",
|
|
"description": "Name to greet",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "formal",
|
|
"description": "Use formal greeting",
|
|
"type": "boolean"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "version",
|
|
"description": "Show version information",
|
|
"options": [
|
|
{
|
|
"name": "json",
|
|
"description": "Output in JSON format",
|
|
"type": "boolean"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|