@wonderwhy-er/desktop-commander 0.2.28 → 0.2.29-alpha.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/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +5 -1
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "0.2.
|
|
1
|
+
export declare const VERSION = "0.2.29-alpha.0";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.2.
|
|
1
|
+
export const VERSION = '0.2.29-alpha.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wonderwhy-er/desktop-commander",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.29-alpha.0",
|
|
4
4
|
"description": "MCP server for terminal operations and file editing",
|
|
5
5
|
"mcpName": "io.github.wonderwhy-er/desktop-commander",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"scripts": {
|
|
25
25
|
"postinstall": "node dist/track-installation.js && node dist/npm-scripts/verify-ripgrep.js || node -e \"process.exit(0)\"",
|
|
26
26
|
"open-chat": "open -n /Applications/Claude.app",
|
|
27
|
+
"device:install": "cd src/remote-device && npm install",
|
|
28
|
+
"device:start": "cd src/remote-device && npm run device",
|
|
29
|
+
"device:dev": "cd src/remote-device && npm run device:dev",
|
|
27
30
|
"sync-version": "node scripts/sync-version.js",
|
|
28
31
|
"bump": "node scripts/sync-version.js --bump",
|
|
29
32
|
"bump:minor": "node scripts/sync-version.js --bump --minor",
|
|
@@ -49,6 +52,7 @@
|
|
|
49
52
|
"release:major": "node scripts/publish-release.cjs --major",
|
|
50
53
|
"release:dry": "node scripts/publish-release.cjs --dry-run",
|
|
51
54
|
"release:mcp": "node scripts/publish-release.cjs --mcp-only",
|
|
55
|
+
"release:alpha": "node scripts/publish-release.cjs --npm-only --alpha",
|
|
52
56
|
"logs:view": "npm run build && node scripts/view-fuzzy-logs.js",
|
|
53
57
|
"logs:analyze": "npm run build && node scripts/analyze-fuzzy-logs.js",
|
|
54
58
|
"logs:clear": "npm run build && node scripts/clear-fuzzy-logs.js",
|