rpg-encoder 0.6.7 → 0.8.0

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 +1 -1
  2. package/package.json +1 -1
package/install.js CHANGED
@@ -15,7 +15,7 @@ function getTarget() {
15
15
  const arch = process.arch;
16
16
 
17
17
  if (platform === "darwin" && arch === "arm64") return "aarch64-apple-darwin";
18
- if (platform === "darwin" && arch === "x64") return "x86_64-apple-darwin";
18
+ if (platform === "darwin" && arch === "x64") return "aarch64-apple-darwin"; // Rosetta 2 runs ARM64 binaries on Intel Macs
19
19
  if (platform === "linux" && arch === "x64") return "x86_64-unknown-linux-gnu";
20
20
  if (platform === "linux" && arch === "arm64") return "aarch64-unknown-linux-gnu";
21
21
  if (platform === "win32" && arch === "x64") return "x86_64-pc-windows-msvc";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rpg-encoder",
3
- "version": "0.6.7",
3
+ "version": "0.8.0",
4
4
  "mcpName": "io.github.userFRM/rpg-encoder",
5
5
  "description": "RPG-Encoder — semantic code graph for AI-assisted code understanding",
6
6
  "license": "MIT",