@a157034816/memory-mcp-linux-arm64 0.1.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.

Potentially problematic release.


This version of @a157034816/memory-mcp-linux-arm64 might be problematic. Click here for more details.

package/bin/.gitkeep ADDED
@@ -0,0 +1 @@
1
+
package/bin/memory ADDED
Binary file
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ const path = require('node:path');
4
+
5
+ module.exports = {
6
+ binaryPath: path.join(__dirname, 'bin', 'memory'),
7
+ };
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@a157034816/memory-mcp-linux-arm64",
3
+ "version": "0.1.0",
4
+ "description": "Platform binary for Memory MCP (linux-arm64, musl).",
5
+ "os": [
6
+ "linux"
7
+ ],
8
+ "cpu": [
9
+ "arm64"
10
+ ],
11
+ "main": "index.js",
12
+ "files": [
13
+ "index.js",
14
+ "bin/**"
15
+ ],
16
+ "license": "UNLICENSED",
17
+ "publishConfig": {
18
+ "access": "public"
19
+ }
20
+ }