claude-account-sync 0.1.0 → 0.2.0
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/commands/secrets.js +33 -30
- package/dist/context.js +2 -0
- package/dist/index.js +0 -0
- package/dist/ui/api.js +255 -0
- package/dist/ui/command.js +42 -0
- package/dist/ui/http.js +42 -0
- package/dist/ui/server.js +36 -0
- package/dist/ui/static.js +22 -0
- package/dist/ui/token.js +15 -0
- package/dist/webui/assets/index-DZPGFb5T.css +1 -0
- package/dist/webui/assets/index-Dr2jwana.js +136 -0
- package/dist/webui/index.html +7 -0
- package/package.json +1 -1
- package/dist/commands/bundle.d.ts +0 -3
- package/dist/commands/manifest.d.ts +0 -3
- package/dist/commands/mcp.d.ts +0 -3
- package/dist/commands/profiles.d.ts +0 -3
- package/dist/commands/secrets.d.ts +0 -5
- package/dist/commands/sync.d.ts +0 -3
- package/dist/context.d.ts +0 -15
- package/dist/index.d.ts +0 -2
|
@@ -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.
|
|
3
|
+
"version": "0.2.0",
|
|
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" },
|
package/dist/commands/mcp.d.ts
DELETED
|
@@ -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;
|
package/dist/commands/sync.d.ts
DELETED
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