@mantra-ai/cli 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/bin/mantra +5 -5
  2. package/package.json +1 -1
package/bin/mantra CHANGED
@@ -6,10 +6,10 @@ const { execFileSync } = require("child_process");
6
6
  const path = require("path");
7
7
 
8
8
  const PLATFORM_PACKAGES = {
9
- "darwin-arm64": "@mantra/cli-darwin-arm64",
10
- "darwin-x64": "@mantra/cli-darwin-x64",
11
- "linux-x64": "@mantra/cli-linux-x64",
12
- "linux-arm64": "@mantra/cli-linux-arm64",
9
+ "darwin-arm64": "@mantra-ai/cli-darwin-arm64",
10
+ "darwin-x64": "@mantra-ai/cli-darwin-x64",
11
+ "linux-x64": "@mantra-ai/cli-linux-x64",
12
+ "linux-arm64": "@mantra-ai/cli-linux-arm64",
13
13
  };
14
14
 
15
15
  function getBinaryPath() {
@@ -35,7 +35,7 @@ function getBinaryPath() {
35
35
  console.error(
36
36
  `Could not find the mantra binary for your platform (${key}).\n` +
37
37
  `The package ${pkg} may not have been installed correctly.\n\n` +
38
- `Try reinstalling: npm install -g mantra`
38
+ `Try reinstalling: npm install -g @mantra-ai/cli`
39
39
  );
40
40
  process.exit(1);
41
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mantra-ai/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI for mantra — reverse-engineer research papers into structured data",
5
5
  "license": "MIT",
6
6
  "bin": {