crcl-cli 26.3.8 → 26.3.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.
package/bin/install.js CHANGED
@@ -9,7 +9,7 @@ const require = createRequire(import.meta.url);
9
9
  const { version } = require("../package.json");
10
10
 
11
11
  const __dirname = path.dirname(fileURLToPath(import.meta.url));
12
- const REPO = "circlesac/crcl";
12
+ const REPO = "circlesac/crcl-cli";
13
13
 
14
14
  const PLATFORMS = {
15
15
  "darwin-x64": { artifact: "crcl-darwin-amd64", ext: ".tar.gz" },
package/bin/install.sh CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
  set -e
3
3
 
4
- REPO="circlesac/crcl"
4
+ REPO="circlesac/crcl-cli"
5
5
  INSTALL_DIR="${INSTALL_DIR:-/usr/local/bin}"
6
6
 
7
7
  OS=$(uname -s | tr '[:upper:]' '[:lower:]')
package/package.json CHANGED
@@ -18,7 +18,7 @@
18
18
  "name": "crcl-cli",
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "https://github.com/circlesac/crcl.git"
21
+ "url": "https://github.com/circlesac/crcl-cli.git"
22
22
  },
23
23
  "scripts": {
24
24
  "build": "bun build src/index.ts --compile --outfile crcl",
@@ -28,5 +28,5 @@
28
28
  "test:coverage": "vitest run --coverage"
29
29
  },
30
30
  "type": "module",
31
- "version": "26.3.8"
31
+ "version": "26.3.10"
32
32
  }