@diggerhq/catty 0.2.28 → 0.2.29
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/catty +9 -0
- package/package.json +4 -2
package/bin/catty
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Placeholder entrypoint so npm reliably creates the global `catty` shim.
|
|
3
|
+
// `npm/scripts/install.js` downloads the real platform binary and overwrites this file.
|
|
4
|
+
|
|
5
|
+
console.error("catty: install incomplete (postinstall did not download the binary).");
|
|
6
|
+
console.error("Try: npm config set ignore-scripts false && npm install -g @diggerhq/catty --foreground-scripts");
|
|
7
|
+
process.exit(1);
|
|
8
|
+
|
|
9
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diggerhq/catty",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.29",
|
|
4
4
|
"description": "Run Claude Code sessions remotely",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
"release:major": "node scripts/release.js major"
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
|
-
"scripts"
|
|
30
|
+
"scripts",
|
|
31
|
+
"bin",
|
|
32
|
+
"README.md"
|
|
31
33
|
],
|
|
32
34
|
"engines": {
|
|
33
35
|
"node": ">=16"
|