openbot 0.2.13 → 0.2.14

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/app/cli.js CHANGED
@@ -16,7 +16,7 @@ function checkNodeVersion() {
16
16
  }
17
17
  }
18
18
  checkNodeVersion();
19
- program.name('openbot').description('OpenBot CLI').version('0.2.13');
19
+ program.name('openbot').description('OpenBot CLI').version('0.2.14');
20
20
  program
21
21
  .command('start')
22
22
  .description('Start the OpenBot harness')
package/package.json CHANGED
@@ -1,18 +1,13 @@
1
1
  {
2
2
  "name": "openbot",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": ">=20.12.0"
8
8
  },
9
- "scripts": {
10
- "dev": "tsx watch src/app/cli.ts start",
11
- "build": "tsc",
12
- "start": "node dist/app/cli.js start"
13
- },
14
9
  "bin": {
15
- "openbot": "./dist/app/cli.js start"
10
+ "openbot": "./dist/app/cli.js"
16
11
  },
17
12
  "dependencies": {
18
13
  "@ai-sdk/anthropic": "^3.0.33",
@@ -35,5 +30,10 @@
35
30
  "@types/node": "^20.10.1",
36
31
  "tsx": "^4.21.0",
37
32
  "typescript": "^5.9.3"
33
+ },
34
+ "scripts": {
35
+ "dev": "tsx watch src/app/cli.ts start",
36
+ "build": "tsc",
37
+ "start": "node dist/app/cli.js start"
38
38
  }
39
- }
39
+ }
package/src/app/cli.ts CHANGED
@@ -25,7 +25,7 @@ function checkNodeVersion() {
25
25
 
26
26
  checkNodeVersion();
27
27
 
28
- program.name('openbot').description('OpenBot CLI').version('0.2.13');
28
+ program.name('openbot').description('OpenBot CLI').version('0.2.14');
29
29
 
30
30
  program
31
31
  .command('start')