@createsomething/ground-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/install.js +2 -1
  2. package/package.json +1 -1
package/install.js CHANGED
@@ -16,9 +16,10 @@ const REPO = 'createsomethingtoday/create-something-monorepo';
16
16
  const VERSION = require('./package.json').version;
17
17
 
18
18
  // Platform mapping
19
+ // Note: macOS Intel uses arm64 binary via Rosetta 2
19
20
  const PLATFORMS = {
20
21
  'darwin-arm64': 'darwin-arm64',
21
- 'darwin-x64': 'darwin-x64',
22
+ 'darwin-x64': 'darwin-arm64', // Rosetta 2 compatibility
22
23
  'linux-arm64': 'linux-arm64',
23
24
  'linux-x64': 'linux-x64',
24
25
  'win32-x64': 'win32-x64',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@createsomething/ground-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Grounded claims for code. MCP server that prevents AI hallucination in code analysis.",
5
5
  "author": "CREATE SOMETHING <hello@createsomething.io>",
6
6
  "license": "MIT",