{
    "scaffold.command.dir": "scaffolds/command",
    "scaffold.stack.dir": "scaffolds/stack",
    "name": "default",
    "description": "Default commands",
    "commands": {
        "create command": {
            "description": "Creates a new rapido command",
            "file": "commands/command-create-command.js"
        },
        "create command alias": {
            "description": "Creates a command alias",
            "file": "commands/command-create-command-alias.js"
        },
        "create stack": {
            "description": "Creates a new rapido command stack",
            "file": "commands/command-create-stack.js"
        },
        "list": {
            "description": "Lists out commands for enabled stacks",
            "file": "commands/command-list.js"
        },
        "list all": {
            "description": "Lists out all commands",
            "file": "commands/command-list-all.js"
        },
        "use": {
            "description": "Enables and disables stacks",
            "file": "commands/command-use.js"
        },
        "set": {
            "description": "Sets a property in a project's JSON configuration file",
            "file": "commands/command-set.js"
        },
        "default": {
            "description": "Default command when $0 is invoked with no arguments",
            "file": "commands/command-default.js",
            "listed": false
        }
    }

    
}