@caliber-ai/cli 0.17.0 → 0.19.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caliber-ai/cli",
3
- "version": "0.17.0",
3
+ "version": "0.19.0",
4
4
  "description": "CLI for configuring coding agent environments",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,7 +13,8 @@
13
13
  "dev": "tsup --watch",
14
14
  "test": "vitest run",
15
15
  "test:watch": "vitest",
16
- "test:coverage": "vitest run --coverage"
16
+ "test:coverage": "vitest run --coverage",
17
+ "postinstall": "node scripts/postinstall.js"
17
18
  },
18
19
  "dependencies": {
19
20
  "@inquirer/confirm": "^6.0.8",
@@ -29,6 +30,7 @@
29
30
  },
30
31
  "files": [
31
32
  "dist",
33
+ "scripts",
32
34
  "README.md",
33
35
  "LICENSE"
34
36
  ],
@@ -0,0 +1,11 @@
1
+ const bold = (s) => `\x1b[1m${s}\x1b[0m`;
2
+ const dim = (s) => `\x1b[2m${s}\x1b[0m`;
3
+ const purple = (s) => `\x1b[38;5;99m${s}\x1b[0m`;
4
+
5
+ console.log('');
6
+ console.log(bold(purple(' Caliber installed successfully!')));
7
+ console.log('');
8
+ console.log(` Get started by running:`);
9
+ console.log('');
10
+ console.log(` ${bold('caliber login')} ${dim('Authenticate with your Caliber account')}`);
11
+ console.log('');