run-mcp 1.6.0 → 1.6.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 (3) hide show
  1. package/README.md +109 -69
  2. package/dist/index.js +2127 -1168
  3. package/package.json +10 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "run-mcp",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "A smart proxy and interactive REPL for Model Context Protocol (MCP) servers",
5
5
  "homepage": "https://github.com/funkyfunc/run-mcp#readme",
6
6
  "bugs": {
@@ -33,9 +33,9 @@
33
33
  "dev": "tsup --watch",
34
34
  "start": "node dist/index.js",
35
35
  "typecheck": "tsc --noEmit",
36
- "lint": "biome check",
37
- "lint:fix": "biome check --write",
38
- "format": "biome format --write",
36
+ "lint": "eslint src tests",
37
+ "lint:fix": "eslint src tests --fix",
38
+ "format": "prettier --write \"src/**/*.{ts,js,json}\" \"tests/**/*.{ts,js,json}\" \"*.{ts,js,json}\"",
39
39
  "pretest": "tsup",
40
40
  "test": "vitest run",
41
41
  "prepublishOnly": "tsup"
@@ -45,14 +45,19 @@
45
45
  "@modelcontextprotocol/sdk": "^1.12.1",
46
46
  "commander": "^13.1.0",
47
47
  "picocolors": "^1.1.1",
48
+ "tree-kill": "^1.2.2",
48
49
  "zod": "^3.24.3"
49
50
  },
50
51
  "devDependencies": {
51
- "@biomejs/biome": "^2.4.10",
52
+ "@eslint/js": "^10.0.1",
52
53
  "@types/node": "^22.13.14",
54
+ "eslint": "^10.6.0",
55
+ "eslint-config-prettier": "^10.1.8",
56
+ "prettier": "^3.9.1",
53
57
  "tsup": "^8.5.1",
54
58
  "tsx": "^4.21.0",
55
59
  "typescript": "^5.8.2",
60
+ "typescript-eslint": "^8.62.0",
56
61
  "vitest": "^4.1.2"
57
62
  }
58
63
  }