ccsini 0.1.2 → 0.1.4
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/index.js +3 -3
- package/package.json +1 -2
package/dist/index.js
CHANGED
|
@@ -25884,7 +25884,7 @@ var {
|
|
|
25884
25884
|
} = import__.default;
|
|
25885
25885
|
|
|
25886
25886
|
// src/version.ts
|
|
25887
|
-
var VERSION = "0.1.
|
|
25887
|
+
var VERSION = "0.1.4";
|
|
25888
25888
|
|
|
25889
25889
|
// ../../node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/vendor/ansi-styles/index.js
|
|
25890
25890
|
var ANSI_BACKGROUND_OFFSET = 10;
|
|
@@ -28642,7 +28642,7 @@ function registerInitCommand(program2) {
|
|
|
28642
28642
|
const publicKeyB64 = await exportPublicKey(keypair.publicKey);
|
|
28643
28643
|
const privateKeyB64 = await exportPrivateKey(keypair.privateKey);
|
|
28644
28644
|
spinner.text = "Registering device...";
|
|
28645
|
-
const client = new CcsiniClient("https://api.
|
|
28645
|
+
const client = new CcsiniClient("https://ccsini-api.anis-maisara190.workers.dev", "");
|
|
28646
28646
|
const { deviceId } = await client.registerDevice(token, deviceName, publicKeyB64, detectPlatform());
|
|
28647
28647
|
spinner.text = "Saving configuration...";
|
|
28648
28648
|
await saveKeys(configDir, {
|
|
@@ -28651,7 +28651,7 @@ function registerInitCommand(program2) {
|
|
|
28651
28651
|
devicePublicKey: publicKeyB64,
|
|
28652
28652
|
deviceId,
|
|
28653
28653
|
deviceName,
|
|
28654
|
-
apiUrl: "https://api.
|
|
28654
|
+
apiUrl: "https://ccsini-api.anis-maisara190.workers.dev"
|
|
28655
28655
|
});
|
|
28656
28656
|
await saveDefaultSchema(configDir);
|
|
28657
28657
|
spinner.text = "Installing Claude Code hooks...";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccsini",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Claude Code seamless sync across devices",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"typecheck": "tsc --noEmit"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@ccsini/shared": "workspace:*",
|
|
30
29
|
"argon2": "^0.44.0",
|
|
31
30
|
"chalk": "^5.4.0",
|
|
32
31
|
"chokidar": "^5.0.0",
|