rogue-mcp 1.0.0 → 1.0.8

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/bin/rogue-mcp CHANGED
@@ -15,6 +15,7 @@ const BINARY_NAME = process.platform === 'win32' ? 'rogue-mcp.exe' : 'rogue-mcp'
15
15
  // Map of platform/arch to npm package name
16
16
  const PLATFORM_PACKAGES = {
17
17
  'linux-x64': 'rogue-mcp-linux-x64',
18
+ 'linux-arm64': 'rogue-mcp-linux-arm64',
18
19
  'darwin-x64': 'rogue-mcp-darwin-x64',
19
20
  'darwin-arm64': 'rogue-mcp-darwin-arm64',
20
21
  'win32-x64': 'rogue-mcp-win32-x64',
package/install.js CHANGED
@@ -16,6 +16,7 @@ const BINARY_NAME = process.platform === 'win32' ? 'rogue-mcp.exe' : 'rogue-mcp'
16
16
  // Map of platform/arch to npm package name
17
17
  const PLATFORM_PACKAGES = {
18
18
  'linux-x64': 'rogue-mcp-linux-x64',
19
+ 'linux-arm64': 'rogue-mcp-linux-arm64',
19
20
  'darwin-x64': 'rogue-mcp-darwin-x64',
20
21
  'darwin-arm64': 'rogue-mcp-darwin-arm64',
21
22
  'win32-x64': 'rogue-mcp-win32-x64',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rogue-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.8",
4
4
  "description": "Rogue MCP by Wallarm - Advanced MCP Security Scanner for detecting and remediating MCP server vulnerabilities",
5
5
  "author": "Ivan Novikov <ivan@wallarm.com>",
6
6
  "license": "UNLICENSED",
@@ -37,10 +37,11 @@
37
37
  "postinstall": "node install.js"
38
38
  },
39
39
  "optionalDependencies": {
40
- "rogue-mcp-linux-x64": "1.0.0",
41
- "rogue-mcp-darwin-x64": "1.0.0",
42
- "rogue-mcp-darwin-arm64": "1.0.0",
43
- "rogue-mcp-win32-x64": "1.0.0"
40
+ "rogue-mcp-linux-x64": "1.0.8",
41
+ "rogue-mcp-linux-arm64": "1.0.0",
42
+ "rogue-mcp-darwin-x64": "1.0.8",
43
+ "rogue-mcp-darwin-arm64": "1.0.8",
44
+ "rogue-mcp-win32-x64": "1.0.8"
44
45
  },
45
46
  "engines": {
46
47
  "node": ">=14.0.0"