cc-peer 1.1.1 → 1.1.3
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/dist/bin/cc-peer.cjs +3 -1
- package/dist/bin/cc-peer.mjs +3 -1
- package/package.json +1 -1
package/dist/bin/cc-peer.cjs
CHANGED
|
@@ -322,7 +322,7 @@ function openApiDocument() {
|
|
|
322
322
|
};
|
|
323
323
|
}
|
|
324
324
|
//#endregion
|
|
325
|
-
//#region src/bin/
|
|
325
|
+
//#region src/bin/main.ts
|
|
326
326
|
function parseArgs(argv) {
|
|
327
327
|
const args = { noToken: false };
|
|
328
328
|
for (let i = 0; i < argv.length; i += 1) {
|
|
@@ -375,6 +375,8 @@ async function main() {
|
|
|
375
375
|
shutdown();
|
|
376
376
|
});
|
|
377
377
|
}
|
|
378
|
+
//#endregion
|
|
379
|
+
//#region src/bin/cc-peer.ts
|
|
378
380
|
main().catch((error) => {
|
|
379
381
|
node_process.default.stderr.write(`[cc-peer] fatal: ${error instanceof Error ? error.message : String(error)}\n`);
|
|
380
382
|
node_process.default.exit(1);
|
package/dist/bin/cc-peer.mjs
CHANGED
|
@@ -299,7 +299,7 @@ function openApiDocument() {
|
|
|
299
299
|
};
|
|
300
300
|
}
|
|
301
301
|
//#endregion
|
|
302
|
-
//#region src/bin/
|
|
302
|
+
//#region src/bin/main.ts
|
|
303
303
|
function parseArgs(argv) {
|
|
304
304
|
const args = { noToken: false };
|
|
305
305
|
for (let i = 0; i < argv.length; i += 1) {
|
|
@@ -352,6 +352,8 @@ async function main() {
|
|
|
352
352
|
shutdown();
|
|
353
353
|
});
|
|
354
354
|
}
|
|
355
|
+
//#endregion
|
|
356
|
+
//#region src/bin/cc-peer.ts
|
|
355
357
|
main().catch((error) => {
|
|
356
358
|
process.stderr.write(`[cc-peer] fatal: ${error instanceof Error ? error.message : String(error)}\n`);
|
|
357
359
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-peer",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Communicate with local Claude Code instances over their native cross-session peer messaging: send and receive messages, register as a named discoverable peer, receipts, idle subscriptions, and a REST facade via `npx cc-peer`.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|