@branchmore/cli 0.0.0 → 0.1.0-rc.10

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.
@@ -16,7 +16,7 @@ const key = `${process.platform}-${process.arch}`;
16
16
  const pkgName = PLATFORMS[key];
17
17
 
18
18
  if (!pkgName) {
19
- console.error(`vibe-collector: unsupported platform: ${key}`);
19
+ console.error(`bmor: unsupported platform: ${key}`);
20
20
  process.exit(1);
21
21
  }
22
22
 
@@ -24,14 +24,14 @@ let pkgJsonPath;
24
24
  try {
25
25
  pkgJsonPath = require.resolve(`${pkgName}/package.json`);
26
26
  } catch {
27
- console.error(`vibe-collector: platform package ${pkgName} is not installed`);
27
+ console.error(`bmor: platform package ${pkgName} is not installed`);
28
28
  process.exit(1);
29
29
  }
30
30
 
31
31
  const binary = path.join(
32
32
  path.dirname(pkgJsonPath),
33
33
  'bin',
34
- process.platform === 'win32' ? 'vibe-collector.exe' : 'vibe-collector'
34
+ process.platform === 'win32' ? 'bmor.exe' : 'bmor'
35
35
  );
36
36
 
37
37
  try {
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@branchmore/cli",
3
- "version": "0.0.0",
3
+ "version": "0.1.0-rc.10",
4
4
  "description": "AI coding assistant usage collector for Opsmore",
5
5
  "bin": {
6
- "vibe-collector": "bin/vibe-collector.js"
6
+ "bmor": "bin/bmor.js"
7
7
  },
8
8
  "optionalDependencies": {
9
- "@branchmore/cli-darwin-arm64": "0.0.0",
10
- "@branchmore/cli-darwin-x64": "0.0.0",
11
- "@branchmore/cli-linux-x64": "0.0.0",
12
- "@branchmore/cli-linux-arm64": "0.0.0",
13
- "@branchmore/cli-win32-x64": "0.0.0"
9
+ "@branchmore/cli-darwin-arm64": "0.1.0-rc.10",
10
+ "@branchmore/cli-darwin-x64": "0.1.0-rc.10",
11
+ "@branchmore/cli-linux-x64": "0.1.0-rc.10",
12
+ "@branchmore/cli-linux-arm64": "0.1.0-rc.10",
13
+ "@branchmore/cli-win32-x64": "0.1.0-rc.10"
14
14
  },
15
15
  "engines": {
16
16
  "node": ">=14"
@@ -18,10 +18,10 @@
18
18
  "files": [
19
19
  "bin/"
20
20
  ],
21
- "homepage": "https://github.com/branchmore/cli",
21
+ "homepage": "https://github.com/Branchmore/cli",
22
22
  "repository": {
23
23
  "type": "git",
24
- "url": "https://github.com/branchmore/cli.git"
24
+ "url": "git+https://github.com/Branchmore/cli.git"
25
25
  },
26
26
  "license": "MIT"
27
27
  }