diff --git a/lib/daab.js b/lib/daab.js index 372db83..6374821 100755 --- a/lib/daab.js +++ b/lib/daab.js @@ -4,7 +4,7 @@ var program = require('commander'); var pkg = require('../package.json'); program - .version(pkg.version) + .version(`daab CLI: ${pkg.version}\n(Are you sure you're not confusing it with 'daab version'? If you want to check the SDK packages, use 'daab version' instead.)`) .command('init', 'setup the daab environment.') .command('login', 'login as a bot account.') .command('logout', 'logout from the service.') @@ -12,5 +12,5 @@ program .command('start', 'run the daab as a deamon.') .command('stop', 'stop the daab deamon.') .command('invites', 'show and accept a domain invite.') - .command('version', 'show your daab version information.') + .command('version', "show the version information of your daab environment (not CLI).") .parse(process.argv); diff --git a/package.json b/package.json index 061c496..71fa6d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "daab", - "version": "0.6.0", + "version": "0.7.0", "description": "daab (direct agent assist bot) commandline interface", "main": "lib/daab.js", "scripts": { diff --git a/template/package.json b/template/package.json index 15c22b3..138b7b7 100644 --- a/template/package.json +++ b/template/package.json @@ -14,12 +14,12 @@ ], "description": "<%= description %>", "engines": { - "node": ">= 16", - "npm": ">= 8.3.0" + "node": ">= 18", + "npm": ">= 10" }, "dependencies": { "forever": "^4.0.0", - "hubot-direct": ">=3 <4", + "hubot-direct": ">=4 <5", "lisb-hubot": ">=5 <6", "lisb-hubot-redis-brain": "^1.0.0" },