sextant-cli 0.0.1-rc65 → 0.0.1-rc73
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/sxt.js +5 -3
- package/package.json +5 -5
package/bin/sxt.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// sextant-cli
|
|
3
|
-
//
|
|
2
|
+
// Launcher shim for sextant-cli: resolves the platform-specific binary package and
|
|
3
|
+
// passes all arguments straight through to sxt.
|
|
4
|
+
// The web UI assets ship with the main package (../web/dist); CC_WEB tells the server
|
|
5
|
+
// where they are (`sxt up` bakes it into the service definition).
|
|
4
6
|
"use strict";
|
|
5
7
|
const { spawnSync } = require("child_process");
|
|
6
8
|
const path = require("path");
|
|
@@ -14,7 +16,7 @@ let bin;
|
|
|
14
16
|
try {
|
|
15
17
|
bin = require.resolve(`${pkg}/bin/sxt`);
|
|
16
18
|
} catch (e) {
|
|
17
|
-
console.error(`sextant-cli:
|
|
19
|
+
console.error(`sextant-cli: unsupported platform ${process.platform}/${process.arch} (package ${pkg} is missing)`);
|
|
18
20
|
process.exit(1);
|
|
19
21
|
}
|
|
20
22
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sextant-cli",
|
|
3
|
-
"version": "0.0.1-
|
|
3
|
+
"version": "0.0.1-rc73",
|
|
4
4
|
"description": "Sextant (sxt) — drive Claude Code on your computer from your phone. After install run: sxt up",
|
|
5
5
|
"bin": { "sxt": "bin/sxt.js" },
|
|
6
6
|
"engines": { "node": ">=16" },
|
|
7
7
|
"keywords": ["claude", "claude-code", "remote", "mobile", "ai"],
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"sextant-cli-darwin-amd64": "0.0.1-
|
|
10
|
-
"sextant-cli-darwin-arm64": "0.0.1-
|
|
11
|
-
"sextant-cli-linux-amd64": "0.0.1-
|
|
12
|
-
"sextant-cli-linux-arm64": "0.0.1-
|
|
9
|
+
"sextant-cli-darwin-amd64": "0.0.1-rc73",
|
|
10
|
+
"sextant-cli-darwin-arm64": "0.0.1-rc73",
|
|
11
|
+
"sextant-cli-linux-amd64": "0.0.1-rc73",
|
|
12
|
+
"sextant-cli-linux-arm64": "0.0.1-rc73"
|
|
13
13
|
},
|
|
14
14
|
"license": "SEE LICENSE IN https://github.com/ddos798/claude_control"
|
|
15
15
|
}
|