@memlink/cli 1.0.1 → 1.0.2
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/dist/cli/index.js +1 -1
- package/dist/server/index.js +1 -1
- package/package.json +22 -6
package/dist/cli/index.js
CHANGED
|
@@ -46002,7 +46002,7 @@ function nanoid(size = 21) {
|
|
|
46002
46002
|
}
|
|
46003
46003
|
|
|
46004
46004
|
// src/core/types.ts
|
|
46005
|
-
var MEMLINK_VERSION = "1.0.
|
|
46005
|
+
var MEMLINK_VERSION = "1.0.2";
|
|
46006
46006
|
var DEFAULT_PORT = 4444;
|
|
46007
46007
|
var DEFAULT_HOST = "localhost";
|
|
46008
46008
|
var CONFIG_DIR = ".memlink";
|
package/dist/server/index.js
CHANGED
|
@@ -70395,7 +70395,7 @@ function nanoid4(size = 21) {
|
|
|
70395
70395
|
}
|
|
70396
70396
|
|
|
70397
70397
|
// src/core/types.ts
|
|
70398
|
-
var MEMLINK_VERSION = "1.0.
|
|
70398
|
+
var MEMLINK_VERSION = "1.0.2";
|
|
70399
70399
|
var DEFAULT_PORT = 4444;
|
|
70400
70400
|
var DEFAULT_HOST = "localhost";
|
|
70401
70401
|
var CONFIG_DIR = ".memlink";
|
package/package.json
CHANGED
|
@@ -1,24 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memlink/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Memlink — Universal memory async and organized for AI agents. Self hosted, Fast, Organized.",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"memory",
|
|
8
|
+
"ai",
|
|
9
|
+
"agents",
|
|
10
|
+
"modelcontextprotocol",
|
|
11
|
+
"memlink",
|
|
12
|
+
"cli",
|
|
13
|
+
"llm"
|
|
14
|
+
],
|
|
6
15
|
"license": "MIT",
|
|
7
16
|
"private": false,
|
|
8
17
|
"type": "module",
|
|
9
|
-
"files": [
|
|
18
|
+
"files": [
|
|
19
|
+
"dist/cli",
|
|
20
|
+
"dist/server",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
10
24
|
"main": "./dist/cli/index.js",
|
|
11
|
-
"publishConfig": {
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
12
28
|
"repository": {
|
|
13
29
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/rblez/memlink.git"
|
|
30
|
+
"url": "git+https://github.com/rblez/memlink.git"
|
|
15
31
|
},
|
|
16
32
|
"bugs": {
|
|
17
33
|
"url": "https://github.com/rblez/memlink/issues"
|
|
18
34
|
},
|
|
19
35
|
"homepage": "https://rblez.com/memlink",
|
|
20
36
|
"bin": {
|
|
21
|
-
"memlink": "
|
|
37
|
+
"memlink": "dist/cli/index.js"
|
|
22
38
|
},
|
|
23
39
|
"exports": {
|
|
24
40
|
".": {
|