@wonderwhy-er/desktop-commander 0.1.0 → 0.1.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.
Files changed (1) hide show
  1. package/package.json +7 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wonderwhy-er/desktop-commander",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for terminal operations and file editing",
5
5
  "license": "MIT",
6
6
  "author": "Eduards Ruzga",
@@ -18,7 +18,11 @@
18
18
  "watch": "tsc --watch",
19
19
  "start": "node dist/index.js",
20
20
  "setup": "npm install && npm run build && node setup-claude-server.js",
21
- "prepare": "npm run build"
21
+ "prepare": "npm run build",
22
+ "test": "node test/test.js",
23
+ "test:watch": "nodemon test/test.js",
24
+ "link:local": "npm run build && npm link",
25
+ "unlink:local": "npm unlink"
22
26
  },
23
27
  "publishConfig": {
24
28
  "access": "public"
@@ -50,6 +54,7 @@
50
54
  },
51
55
  "devDependencies": {
52
56
  "@types/node": "^20.11.0",
57
+ "nodemon": "^3.0.2",
53
58
  "shx": "^0.3.4",
54
59
  "typescript": "^5.3.3"
55
60
  }