openbot 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -6,7 +6,7 @@ const program = new Command();
|
|
|
6
6
|
program
|
|
7
7
|
.name("openbot")
|
|
8
8
|
.description("OpenBot CLI - Secure and easy configuration")
|
|
9
|
-
.version("
|
|
9
|
+
.version(require("../package.json").version);
|
|
10
10
|
program
|
|
11
11
|
.command("configure")
|
|
12
12
|
.description("Configure OpenBot model and settings")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openbot",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"dotenv": "^16.4.5",
|
|
17
17
|
"express": "^4.19.2",
|
|
18
18
|
"zod": "^4.3.5",
|
|
19
|
-
"@melony/plugin-ai-sdk": "0.1.
|
|
20
|
-
"@melony/plugin-file-system": "0.1.0",
|
|
19
|
+
"@melony/plugin-ai-sdk": "0.1.1",
|
|
21
20
|
"@melony/plugin-browser": "0.1.0",
|
|
21
|
+
"@melony/plugin-file-system": "0.1.0",
|
|
22
22
|
"@melony/plugin-meta-agent": "0.1.0",
|
|
23
23
|
"@melony/plugin-shell": "0.1.0",
|
|
24
24
|
"melony": "0.2.5"
|