mcpman 0.7.0 → 0.8.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/README.md +85 -0
- package/dist/chunk-AOCGFOA6.js +80 -0
- package/dist/chunk-DZ3D5RZQ.js +181 -0
- package/dist/{chunk-NS6HV723.js → chunk-XPYCEHZZ.js} +6 -62
- package/dist/{client-detector-CY7WPF3K.js → client-detector-NHXBDNMY.js} +2 -1
- package/dist/index.cjs +1798 -696
- package/dist/index.js +1527 -544
- package/dist/{lockfile-RBA7HB24.js → lockfile-5XXA26FM.js} +2 -1
- package/package.json +1 -1
- package/dist/chunk-YZNTMR6O.js +0 -88
package/README.md
CHANGED
|
@@ -360,6 +360,85 @@ mcpman why my-server --json # JSON output for scripting
|
|
|
360
360
|
|
|
361
361
|
Displays: source (npm/smithery/github/local), resolved URL, version, installed timestamp, which clients have it registered, which named profiles include it, and required env var names. Detects orphaned servers (in client config but not in lockfile) and suggests `mcpman sync --remove`.
|
|
362
362
|
|
|
363
|
+
### `env <set|get|list|del|clear>`
|
|
364
|
+
|
|
365
|
+
Manage per-server environment variables (non-sensitive defaults).
|
|
366
|
+
|
|
367
|
+
```sh
|
|
368
|
+
mcpman env set my-server API_URL=https://api.example.com
|
|
369
|
+
mcpman env get my-server API_URL
|
|
370
|
+
mcpman env list my-server
|
|
371
|
+
mcpman env del my-server API_URL
|
|
372
|
+
mcpman env clear my-server
|
|
373
|
+
```
|
|
374
|
+
|
|
375
|
+
Stored in `~/.mcpman/env/<server>.json`. For sensitive values, use `mcpman secrets` instead. At runtime, vault secrets take priority over env defaults.
|
|
376
|
+
|
|
377
|
+
### `bench <server>`
|
|
378
|
+
|
|
379
|
+
Benchmark MCP server latency with JSON-RPC initialize calls.
|
|
380
|
+
|
|
381
|
+
```sh
|
|
382
|
+
mcpman bench my-server # 5 runs (default)
|
|
383
|
+
mcpman bench my-server --runs 10 # custom run count
|
|
384
|
+
mcpman bench my-server --json # machine-readable output
|
|
385
|
+
mcpman bench my-server --timeout 5000 # exit 1 if p95 > 5s
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
Reports min, max, avg, p50, p95 response times in milliseconds.
|
|
389
|
+
|
|
390
|
+
### `diff <client-a> <client-b>`
|
|
391
|
+
|
|
392
|
+
Show visual diff of MCP server configs between two AI clients.
|
|
393
|
+
|
|
394
|
+
```sh
|
|
395
|
+
mcpman diff claude-desktop cursor # color-coded diff
|
|
396
|
+
mcpman diff vscode windsurf --json # JSON output
|
|
397
|
+
```
|
|
398
|
+
|
|
399
|
+
Displays added (green), removed (red), and changed (yellow) servers between two client configurations. Useful before running `mcpman sync`.
|
|
400
|
+
|
|
401
|
+
### `group <add|rm|list|delete|install|run>`
|
|
402
|
+
|
|
403
|
+
Organize servers into named groups for batch operations.
|
|
404
|
+
|
|
405
|
+
```sh
|
|
406
|
+
mcpman group add work server-a server-b # tag servers
|
|
407
|
+
mcpman group rm work server-b # untag server
|
|
408
|
+
mcpman group list # show all groups
|
|
409
|
+
mcpman group list work # show group members
|
|
410
|
+
mcpman group install work # install all in group
|
|
411
|
+
mcpman group run work # run all concurrently
|
|
412
|
+
mcpman group delete work # remove entire group
|
|
413
|
+
```
|
|
414
|
+
|
|
415
|
+
Groups are lightweight labels stored in `~/.mcpman/groups.json`. Unlike profiles (full snapshots), groups are just server name lists for convenience.
|
|
416
|
+
|
|
417
|
+
### `pin <server> [version]`
|
|
418
|
+
|
|
419
|
+
Pin a server to a specific version to prevent auto-updates.
|
|
420
|
+
|
|
421
|
+
```sh
|
|
422
|
+
mcpman pin my-server 1.2.3 # pin to exact version
|
|
423
|
+
mcpman pin my-server # pin to current version
|
|
424
|
+
mcpman pin --unpin my-server # remove pin
|
|
425
|
+
mcpman pin --list # show all pinned servers
|
|
426
|
+
```
|
|
427
|
+
|
|
428
|
+
Pinned servers are skipped by `mcpman update` and version check notifications. Pins stored in `~/.mcpman/pins.json`.
|
|
429
|
+
|
|
430
|
+
### `rollback [index]`
|
|
431
|
+
|
|
432
|
+
Restore a previous lockfile state from automatic snapshots.
|
|
433
|
+
|
|
434
|
+
```sh
|
|
435
|
+
mcpman rollback --list # show snapshot history
|
|
436
|
+
mcpman rollback 0 # restore most recent snapshot
|
|
437
|
+
mcpman rollback 2 # restore specific snapshot
|
|
438
|
+
```
|
|
439
|
+
|
|
440
|
+
Snapshots are created automatically before every lockfile write. Keeps the last 5 snapshots in `~/.mcpman/rollback/`. After rollback, run `mcpman sync` to apply to all clients.
|
|
441
|
+
|
|
363
442
|
---
|
|
364
443
|
|
|
365
444
|
## Comparison
|
|
@@ -389,6 +468,12 @@ Displays: source (npm/smithery/github/local), resolved URL, version, installed t
|
|
|
389
468
|
| Custom registries | `registry` CRUD | None | None |
|
|
390
469
|
| Shell completions | bash + zsh + fish | None | None |
|
|
391
470
|
| Provenance query | `why` (clients + profiles) | None | None |
|
|
471
|
+
| Env management | Per-server env var CRUD | None | None |
|
|
472
|
+
| Benchmarking | Latency p50/p95 stats | None | None |
|
|
473
|
+
| Config diff | Visual client diff | None | None |
|
|
474
|
+
| Server groups | Batch install/run tags | None | None |
|
|
475
|
+
| Version pinning | `pin`/`unpin` CLI | None | None |
|
|
476
|
+
| Rollback | Auto-snapshot + restore | None | None |
|
|
392
477
|
|
|
393
478
|
---
|
|
394
479
|
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// src/utils/paths.ts
|
|
4
|
+
import os from "os";
|
|
5
|
+
import path from "path";
|
|
6
|
+
function getHomedir() {
|
|
7
|
+
return os.homedir();
|
|
8
|
+
}
|
|
9
|
+
function getMcpmanDir() {
|
|
10
|
+
return path.join(os.homedir(), ".mcpman");
|
|
11
|
+
}
|
|
12
|
+
function getConfigPath() {
|
|
13
|
+
return path.join(getMcpmanDir(), "config.json");
|
|
14
|
+
}
|
|
15
|
+
function getPluginDir() {
|
|
16
|
+
return path.join(getMcpmanDir(), "plugins");
|
|
17
|
+
}
|
|
18
|
+
function getProfilesDir() {
|
|
19
|
+
return path.join(getMcpmanDir(), "profiles");
|
|
20
|
+
}
|
|
21
|
+
function getEnvDir() {
|
|
22
|
+
return path.join(getMcpmanDir(), "env");
|
|
23
|
+
}
|
|
24
|
+
function getGroupsFile() {
|
|
25
|
+
return path.join(getMcpmanDir(), "groups.json");
|
|
26
|
+
}
|
|
27
|
+
function getPinsFile() {
|
|
28
|
+
return path.join(getMcpmanDir(), "pins.json");
|
|
29
|
+
}
|
|
30
|
+
function getRollbackDir() {
|
|
31
|
+
return path.join(getMcpmanDir(), "rollback");
|
|
32
|
+
}
|
|
33
|
+
function getAppDataDir() {
|
|
34
|
+
const home = getHomedir();
|
|
35
|
+
if (process.platform === "darwin") {
|
|
36
|
+
return path.join(home, "Library", "Application Support");
|
|
37
|
+
}
|
|
38
|
+
if (process.platform === "win32") {
|
|
39
|
+
return process.env.APPDATA ?? path.join(home, "AppData", "Roaming");
|
|
40
|
+
}
|
|
41
|
+
return process.env.XDG_CONFIG_HOME ?? path.join(home, ".config");
|
|
42
|
+
}
|
|
43
|
+
function resolveConfigPath(client) {
|
|
44
|
+
const appData = getAppDataDir();
|
|
45
|
+
const home = getHomedir();
|
|
46
|
+
switch (client) {
|
|
47
|
+
case "claude-desktop":
|
|
48
|
+
return path.join(appData, "Claude", "claude_desktop_config.json");
|
|
49
|
+
case "cursor":
|
|
50
|
+
return path.join(appData, "Cursor", "User", "globalStorage", "cursor.mcp", "mcp.json");
|
|
51
|
+
case "windsurf":
|
|
52
|
+
return path.join(
|
|
53
|
+
appData,
|
|
54
|
+
"Windsurf",
|
|
55
|
+
"User",
|
|
56
|
+
"globalStorage",
|
|
57
|
+
"windsurf.mcpConfigJson",
|
|
58
|
+
"mcp.json"
|
|
59
|
+
);
|
|
60
|
+
case "vscode":
|
|
61
|
+
if (process.platform === "darwin") {
|
|
62
|
+
return path.join(appData, "Code", "User", "settings.json");
|
|
63
|
+
}
|
|
64
|
+
if (process.platform === "win32") {
|
|
65
|
+
return path.join(appData, "Code", "User", "settings.json");
|
|
66
|
+
}
|
|
67
|
+
return path.join(home, ".config", "Code", "User", "settings.json");
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export {
|
|
72
|
+
getConfigPath,
|
|
73
|
+
getPluginDir,
|
|
74
|
+
getProfilesDir,
|
|
75
|
+
getEnvDir,
|
|
76
|
+
getGroupsFile,
|
|
77
|
+
getPinsFile,
|
|
78
|
+
getRollbackDir,
|
|
79
|
+
resolveConfigPath
|
|
80
|
+
};
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
getRollbackDir
|
|
4
|
+
} from "./chunk-AOCGFOA6.js";
|
|
5
|
+
|
|
6
|
+
// src/core/lockfile.ts
|
|
7
|
+
import fs2 from "fs";
|
|
8
|
+
import os from "os";
|
|
9
|
+
import path2 from "path";
|
|
10
|
+
|
|
11
|
+
// src/core/rollback-service.ts
|
|
12
|
+
import fs from "fs";
|
|
13
|
+
import path from "path";
|
|
14
|
+
var MAX_SNAPSHOTS = 5;
|
|
15
|
+
function ensureDir(dir) {
|
|
16
|
+
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
17
|
+
}
|
|
18
|
+
function listSnapshotFiles(dir) {
|
|
19
|
+
if (!fs.existsSync(dir)) return [];
|
|
20
|
+
return fs.readdirSync(dir).filter((f) => f.endsWith(".json")).sort();
|
|
21
|
+
}
|
|
22
|
+
function snapshotBeforeWrite(content, rollbackDir) {
|
|
23
|
+
const dir = rollbackDir ?? getRollbackDir();
|
|
24
|
+
ensureDir(dir);
|
|
25
|
+
const existing = listSnapshotFiles(dir);
|
|
26
|
+
if (existing.length > 0) {
|
|
27
|
+
const latest = existing[existing.length - 1];
|
|
28
|
+
try {
|
|
29
|
+
const prev = fs.readFileSync(path.join(dir, latest), "utf-8");
|
|
30
|
+
if (prev === content) return;
|
|
31
|
+
} catch {
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
const ts = (/* @__PURE__ */ new Date()).toISOString().replace(/[:.]/g, "-");
|
|
35
|
+
const filename = `${ts}.json`;
|
|
36
|
+
fs.writeFileSync(path.join(dir, filename), content, "utf-8");
|
|
37
|
+
evictOldSnapshots(dir);
|
|
38
|
+
}
|
|
39
|
+
function evictOldSnapshots(rollbackDir) {
|
|
40
|
+
const dir = rollbackDir ?? getRollbackDir();
|
|
41
|
+
const files = listSnapshotFiles(dir);
|
|
42
|
+
const excess = files.length - MAX_SNAPSHOTS;
|
|
43
|
+
for (let i = 0; i < excess; i++) {
|
|
44
|
+
try {
|
|
45
|
+
fs.unlinkSync(path.join(dir, files[i]));
|
|
46
|
+
} catch {
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
function listSnapshots(rollbackDir) {
|
|
51
|
+
const dir = rollbackDir ?? getRollbackDir();
|
|
52
|
+
const files = listSnapshotFiles(dir).reverse();
|
|
53
|
+
return files.map((filename, index) => {
|
|
54
|
+
const filepath = path.join(dir, filename);
|
|
55
|
+
let sizeBytes = 0;
|
|
56
|
+
let createdAt = "";
|
|
57
|
+
try {
|
|
58
|
+
const stat = fs.statSync(filepath);
|
|
59
|
+
sizeBytes = stat.size;
|
|
60
|
+
createdAt = stat.mtime.toISOString();
|
|
61
|
+
} catch {
|
|
62
|
+
}
|
|
63
|
+
return { index, filename, createdAt, sizeBytes };
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
function readSnapshot(index, rollbackDir) {
|
|
67
|
+
const dir = rollbackDir ?? getRollbackDir();
|
|
68
|
+
const files = listSnapshotFiles(dir).reverse();
|
|
69
|
+
const filename = files[index];
|
|
70
|
+
if (!filename) return null;
|
|
71
|
+
try {
|
|
72
|
+
return fs.readFileSync(path.join(dir, filename), "utf-8");
|
|
73
|
+
} catch {
|
|
74
|
+
return null;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
function restoreSnapshot(index, targetPath, rollbackDir) {
|
|
78
|
+
const content = readSnapshot(index, rollbackDir);
|
|
79
|
+
if (content === null) return null;
|
|
80
|
+
const dir = path.dirname(targetPath);
|
|
81
|
+
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
82
|
+
const tmp = `${targetPath}.tmp`;
|
|
83
|
+
fs.writeFileSync(tmp, content, "utf-8");
|
|
84
|
+
fs.renameSync(tmp, targetPath);
|
|
85
|
+
return content;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// src/core/lockfile.ts
|
|
89
|
+
var LOCKFILE_NAME = "mcpman.lock";
|
|
90
|
+
function findLockfile() {
|
|
91
|
+
let dir = process.cwd();
|
|
92
|
+
while (true) {
|
|
93
|
+
const candidate = path2.join(dir, LOCKFILE_NAME);
|
|
94
|
+
if (fs2.existsSync(candidate)) return candidate;
|
|
95
|
+
const parent = path2.dirname(dir);
|
|
96
|
+
if (parent === dir) break;
|
|
97
|
+
dir = parent;
|
|
98
|
+
}
|
|
99
|
+
return null;
|
|
100
|
+
}
|
|
101
|
+
function getGlobalLockfilePath() {
|
|
102
|
+
return path2.join(os.homedir(), ".mcpman", LOCKFILE_NAME);
|
|
103
|
+
}
|
|
104
|
+
function resolveLockfilePath() {
|
|
105
|
+
return findLockfile() ?? getGlobalLockfilePath();
|
|
106
|
+
}
|
|
107
|
+
function readLockfile(filePath) {
|
|
108
|
+
const target = filePath ?? resolveLockfilePath();
|
|
109
|
+
if (!fs2.existsSync(target)) {
|
|
110
|
+
return { lockfileVersion: 1, servers: {} };
|
|
111
|
+
}
|
|
112
|
+
try {
|
|
113
|
+
const raw = fs2.readFileSync(target, "utf-8");
|
|
114
|
+
return JSON.parse(raw);
|
|
115
|
+
} catch {
|
|
116
|
+
return { lockfileVersion: 1, servers: {} };
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
function serialize(data) {
|
|
120
|
+
const sorted = {
|
|
121
|
+
lockfileVersion: data.lockfileVersion,
|
|
122
|
+
servers: Object.fromEntries(
|
|
123
|
+
Object.entries(data.servers).sort(([a], [b]) => a.localeCompare(b))
|
|
124
|
+
)
|
|
125
|
+
};
|
|
126
|
+
return `${JSON.stringify(sorted, null, 2)}
|
|
127
|
+
`;
|
|
128
|
+
}
|
|
129
|
+
function writeLockfile(data, filePath) {
|
|
130
|
+
const target = filePath ?? resolveLockfilePath();
|
|
131
|
+
const dir = path2.dirname(target);
|
|
132
|
+
if (!fs2.existsSync(dir)) {
|
|
133
|
+
fs2.mkdirSync(dir, { recursive: true });
|
|
134
|
+
}
|
|
135
|
+
const serialized = serialize(data);
|
|
136
|
+
if (fs2.existsSync(target)) {
|
|
137
|
+
try {
|
|
138
|
+
const current = fs2.readFileSync(target, "utf-8");
|
|
139
|
+
snapshotBeforeWrite(current);
|
|
140
|
+
} catch {
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
const tmp = `${target}.tmp`;
|
|
144
|
+
fs2.writeFileSync(tmp, serialized, "utf-8");
|
|
145
|
+
fs2.renameSync(tmp, target);
|
|
146
|
+
}
|
|
147
|
+
function addEntry(name, entry, filePath) {
|
|
148
|
+
const data = readLockfile(filePath);
|
|
149
|
+
data.servers[name] = entry;
|
|
150
|
+
writeLockfile(data, filePath);
|
|
151
|
+
}
|
|
152
|
+
function removeEntry(name, filePath) {
|
|
153
|
+
const data = readLockfile(filePath);
|
|
154
|
+
if (name in data.servers) {
|
|
155
|
+
delete data.servers[name];
|
|
156
|
+
writeLockfile(data, filePath);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
function getLockedVersion(name, filePath) {
|
|
160
|
+
const data = readLockfile(filePath);
|
|
161
|
+
return data.servers[name]?.version;
|
|
162
|
+
}
|
|
163
|
+
function createEmptyLockfile(filePath) {
|
|
164
|
+
writeLockfile({ lockfileVersion: 1, servers: {} }, filePath);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export {
|
|
168
|
+
listSnapshots,
|
|
169
|
+
readSnapshot,
|
|
170
|
+
restoreSnapshot,
|
|
171
|
+
LOCKFILE_NAME,
|
|
172
|
+
findLockfile,
|
|
173
|
+
getGlobalLockfilePath,
|
|
174
|
+
resolveLockfilePath,
|
|
175
|
+
readLockfile,
|
|
176
|
+
writeLockfile,
|
|
177
|
+
addEntry,
|
|
178
|
+
removeEntry,
|
|
179
|
+
getLockedVersion,
|
|
180
|
+
createEmptyLockfile
|
|
181
|
+
};
|
|
@@ -1,64 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import path from "path";
|
|
6
|
-
function getHomedir() {
|
|
7
|
-
return os.homedir();
|
|
8
|
-
}
|
|
9
|
-
function getMcpmanDir() {
|
|
10
|
-
return path.join(os.homedir(), ".mcpman");
|
|
11
|
-
}
|
|
12
|
-
function getConfigPath() {
|
|
13
|
-
return path.join(getMcpmanDir(), "config.json");
|
|
14
|
-
}
|
|
15
|
-
function getPluginDir() {
|
|
16
|
-
return path.join(getMcpmanDir(), "plugins");
|
|
17
|
-
}
|
|
18
|
-
function getProfilesDir() {
|
|
19
|
-
return path.join(getMcpmanDir(), "profiles");
|
|
20
|
-
}
|
|
21
|
-
function getAppDataDir() {
|
|
22
|
-
const home = getHomedir();
|
|
23
|
-
if (process.platform === "darwin") {
|
|
24
|
-
return path.join(home, "Library", "Application Support");
|
|
25
|
-
}
|
|
26
|
-
if (process.platform === "win32") {
|
|
27
|
-
return process.env.APPDATA ?? path.join(home, "AppData", "Roaming");
|
|
28
|
-
}
|
|
29
|
-
return process.env.XDG_CONFIG_HOME ?? path.join(home, ".config");
|
|
30
|
-
}
|
|
31
|
-
function resolveConfigPath(client) {
|
|
32
|
-
const appData = getAppDataDir();
|
|
33
|
-
const home = getHomedir();
|
|
34
|
-
switch (client) {
|
|
35
|
-
case "claude-desktop":
|
|
36
|
-
return path.join(appData, "Claude", "claude_desktop_config.json");
|
|
37
|
-
case "cursor":
|
|
38
|
-
return path.join(appData, "Cursor", "User", "globalStorage", "cursor.mcp", "mcp.json");
|
|
39
|
-
case "windsurf":
|
|
40
|
-
return path.join(
|
|
41
|
-
appData,
|
|
42
|
-
"Windsurf",
|
|
43
|
-
"User",
|
|
44
|
-
"globalStorage",
|
|
45
|
-
"windsurf.mcpConfigJson",
|
|
46
|
-
"mcp.json"
|
|
47
|
-
);
|
|
48
|
-
case "vscode":
|
|
49
|
-
if (process.platform === "darwin") {
|
|
50
|
-
return path.join(appData, "Code", "User", "settings.json");
|
|
51
|
-
}
|
|
52
|
-
if (process.platform === "win32") {
|
|
53
|
-
return path.join(appData, "Code", "User", "settings.json");
|
|
54
|
-
}
|
|
55
|
-
return path.join(home, ".config", "Code", "User", "settings.json");
|
|
56
|
-
}
|
|
57
|
-
}
|
|
2
|
+
import {
|
|
3
|
+
resolveConfigPath
|
|
4
|
+
} from "./chunk-AOCGFOA6.js";
|
|
58
5
|
|
|
59
6
|
// src/clients/base-client-handler.ts
|
|
60
7
|
import fs from "fs";
|
|
61
|
-
import
|
|
8
|
+
import path from "path";
|
|
62
9
|
|
|
63
10
|
// src/clients/types.ts
|
|
64
11
|
var ConfigParseError = class extends Error {
|
|
@@ -80,7 +27,7 @@ var ConfigWriteError = class extends Error {
|
|
|
80
27
|
async function atomicWrite(filePath, content) {
|
|
81
28
|
const tmpPath = `${filePath}.tmp`;
|
|
82
29
|
try {
|
|
83
|
-
await fs.promises.mkdir(
|
|
30
|
+
await fs.promises.mkdir(path.dirname(filePath), { recursive: true });
|
|
84
31
|
await fs.promises.writeFile(tmpPath, content, { encoding: "utf-8", mode: 384 });
|
|
85
32
|
await fs.promises.rename(tmpPath, filePath);
|
|
86
33
|
} catch (err) {
|
|
@@ -101,7 +48,7 @@ async function pathExists(p) {
|
|
|
101
48
|
}
|
|
102
49
|
var BaseClientHandler = class {
|
|
103
50
|
async isInstalled() {
|
|
104
|
-
const dir =
|
|
51
|
+
const dir = path.dirname(this.getConfigPath());
|
|
105
52
|
return pathExists(dir);
|
|
106
53
|
}
|
|
107
54
|
/** Read raw JSON from disk, return empty object if file missing */
|
|
@@ -228,9 +175,6 @@ async function getInstalledClients() {
|
|
|
228
175
|
}
|
|
229
176
|
|
|
230
177
|
export {
|
|
231
|
-
getConfigPath,
|
|
232
|
-
getPluginDir,
|
|
233
|
-
getProfilesDir,
|
|
234
178
|
getAllClientTypes,
|
|
235
179
|
getClient,
|
|
236
180
|
getInstalledClients
|