hyperdb-mcp 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 (2) hide show
  1. package/bin.js +3 -1
  2. package/package.json +5 -6
package/bin.js CHANGED
@@ -11,7 +11,9 @@ const { platform, arch } = process
11
11
  function getPlatformPackage() {
12
12
  switch (platform) {
13
13
  case 'darwin':
14
- return arch === 'arm64' ? 'hyperdb-mcp-darwin-arm64' : 'hyperdb-mcp-darwin-x64'
14
+ // darwin-x64 builds are disabled until macos-13 GHA runners are
15
+ // reliable again — see npm-build-publish.yml matrix.
16
+ return arch === 'arm64' ? 'hyperdb-mcp-darwin-arm64' : null
15
17
  case 'linux':
16
18
  return 'hyperdb-mcp-linux-x64-gnu'
17
19
  case 'win32':
package/package.json CHANGED
@@ -1,15 +1,14 @@
1
1
  {
2
2
  "name": "hyperdb-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "HyperDB MCP server — instant SQL analytics for LLM workflows",
5
5
  "bin": {
6
6
  "hyperdb-mcp": "bin.js"
7
7
  },
8
8
  "optionalDependencies": {
9
- "hyperdb-mcp-darwin-arm64": "0.1.0",
10
- "hyperdb-mcp-darwin-x64": "0.1.0",
11
- "hyperdb-mcp-linux-x64-gnu": "0.1.0",
12
- "hyperdb-mcp-win32-x64-msvc": "0.1.0"
9
+ "hyperdb-mcp-darwin-arm64": "0.1.1",
10
+ "hyperdb-mcp-linux-x64-gnu": "0.1.1",
11
+ "hyperdb-mcp-win32-x64-msvc": "0.1.1"
13
12
  },
14
13
  "files": [
15
14
  "bin.js"
@@ -33,6 +32,6 @@
33
32
  },
34
33
  "license": "MIT OR Apache-2.0",
35
34
  "engines": {
36
- "node": ">= 18"
35
+ "node": ">= 21"
37
36
  }
38
37
  }