claude-account-sync 0.1.0 → 0.2.1

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.
@@ -0,0 +1,7 @@
1
+ <!doctype html>
2
+ <html lang="en" class="dark">
3
+ <head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>ccprofiles</title> <script type="module" crossorigin src="./assets/index-Dr2jwana.js"></script>
4
+ <link rel="stylesheet" crossorigin href="./assets/index-DZPGFb5T.css">
5
+ </head>
6
+ <body><div id="root"></div></body>
7
+ </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-account-sync",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Manage multiple Claude Code accounts/profiles — MCP drift sync, keychain secrets, and encrypted LAN replication between machines. CLI: ccprofiles (alias clp).",
5
5
  "type": "module",
6
6
  "bin": { "ccprofiles": "./dist/index.js", "clp": "./dist/index.js" },
@@ -1,3 +0,0 @@
1
- import type { Command } from 'commander';
2
- import { type CliContext } from '../context.js';
3
- export declare function registerBundleCommands(program: Command, ctx: CliContext): void;
@@ -1,3 +0,0 @@
1
- import type { Command } from 'commander';
2
- import { type CliContext } from '../context.js';
3
- export declare function registerManifestCommands(program: Command, ctx: CliContext): void;
@@ -1,3 +0,0 @@
1
- import type { Command } from 'commander';
2
- import { type CliContext } from '../context.js';
3
- export declare function registerMcpCommands(program: Command, ctx: CliContext): void;
@@ -1,3 +0,0 @@
1
- import type { Command } from 'commander';
2
- import type { CliContext } from '../context.js';
3
- export declare function registerProfileCommands(program: Command, ctx: CliContext): void;
@@ -1,5 +0,0 @@
1
- import type { Command } from 'commander';
2
- import { SecretsStore } from 'ccprofiles-core';
3
- import type { CliContext } from '../context.js';
4
- export declare function secretsStore(ctx: CliContext): Promise<SecretsStore>;
5
- export declare function registerSecretsCommands(program: Command, ctx: CliContext): void;
@@ -1,3 +0,0 @@
1
- import type { Command } from 'commander';
2
- import type { CliContext } from '../context.js';
3
- export declare function registerSyncCommands(program: Command, ctx: CliContext): void;
package/dist/context.d.ts DELETED
@@ -1,15 +0,0 @@
1
- import { Command } from 'commander';
2
- import { type Manifest, type Platform } from 'ccprofiles-core';
3
- export interface CliContext {
4
- home: string;
5
- platform: Platform;
6
- manifestRoot: string;
7
- secretsIndexPath: string;
8
- secretsFilePath: string;
9
- backupRoot: string;
10
- env: NodeJS.ProcessEnv;
11
- }
12
- export declare function makeContext(env?: NodeJS.ProcessEnv): CliContext;
13
- /** Load the manifest, or explain how to create one — never a raw ENOENT. */
14
- export declare function requireManifest(ctx: CliContext): Promise<Manifest>;
15
- export declare function buildProgram(ctx: CliContext): Command;
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- export {};