mnemex 1.0.0 → 1.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnemex",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Memory Extension for AI Agents - Intelligent context optimization via semantic retrieval. MCP server for Claude Code.",
5
5
  "bin": {
6
6
  "mnemex": "./bin/mnemex"
@@ -1,11 +0,0 @@
1
- # @mnemex/linux-x64
2
-
3
- Linux x64 binary for [mnemex](https://www.npmjs.com/package/mnemex).
4
-
5
- This package is installed automatically as an optional dependency. You should not install this package directly.
6
-
7
- ## Install
8
-
9
- ```bash
10
- npm install -g mnemex
11
- ```
Binary file
@@ -1,17 +0,0 @@
1
- {
2
- "name": "@dgtise/mnemex-linux-x64",
3
- "version": "1.0.0",
4
- "description": "Mnemex binary for Linux x64",
5
- "os": ["linux"],
6
- "cpu": ["x64"],
7
- "main": "bin/mnemex",
8
- "files": ["bin/mnemex"],
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/dgtise25/mnemex"
12
- },
13
- "license": "MIT",
14
- "publishConfig": {
15
- "access": "public"
16
- }
17
- }
package/publish.sh DELETED
@@ -1,24 +0,0 @@
1
- #!/bin/bash
2
- # Publish mnemex to npm
3
- # Run this after `npm login`
4
-
5
- set -e
6
-
7
- cd "$(dirname "$0")"
8
-
9
- echo "Publishing @dgtise/mnemex-linux-x64..."
10
- cd packages/linux-x64
11
- npm publish --access public
12
- cd ../..
13
-
14
- echo ""
15
- echo "Publishing mnemex (main package)..."
16
- npm publish --access public
17
-
18
- echo ""
19
- echo "Done! Published:"
20
- echo " - @dgtise/mnemex-linux-x64@1.0.0"
21
- echo " - mnemex@1.0.0"
22
- echo ""
23
- echo "Users can now install with:"
24
- echo " npm install -g mnemex"