mnemosyne-core 2.0.0 → 2.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/{Store-N3j0Vaj6.d.mts → Store-BtdYuiUx.d.mts} +19 -1
- package/dist/{Store-N3j0Vaj6.d.ts → Store-BtdYuiUx.d.ts} +19 -1
- package/dist/cli/index.js +310 -55
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +294 -39
- package/dist/cli/index.mjs.map +1 -1
- package/dist/dashboard/index.html +9401 -0
- package/dist/index-B2oTMNlL.d.ts +115 -0
- package/dist/index-B8PTQKy9.d.mts +115 -0
- package/dist/index-DWk78ifo.d.ts +98 -0
- package/dist/index-yTOihMUk.d.mts +98 -0
- package/dist/index.d.mts +45 -0
- package/dist/index.d.ts +45 -0
- package/dist/index.js +13008 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +12978 -0
- package/dist/index.mjs.map +1 -0
- package/dist/mcp/index.d.mts +3 -93
- package/dist/mcp/index.d.ts +3 -93
- package/dist/server/api.d.mts +1 -1
- package/dist/server/api.d.ts +1 -1
- package/dist/server/api.js +24 -3
- package/dist/server/api.js.map +1 -1
- package/dist/server/api.mjs +30 -3
- package/dist/server/api.mjs.map +1 -1
- package/dist/server/index.d.mts +7 -110
- package/dist/server/index.d.ts +7 -110
- package/dist/server/index.js +252 -20
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +251 -19
- package/dist/server/index.mjs.map +1 -1
- package/dist/server/websocket.d.mts +1 -1
- package/dist/server/websocket.d.ts +1 -1
- package/dist/ws/index.d.mts +1 -1
- package/dist/ws/index.d.ts +1 -1
- package/package.json +12 -12
package/dist/ws/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { WebSocketHandler } from '../server/websocket.mjs';
|
|
2
2
|
export { createWebSocketServer } from '../server/websocket.mjs';
|
|
3
|
-
import { S as Store } from '../Store-
|
|
3
|
+
import { S as Store } from '../Store-BtdYuiUx.mjs';
|
|
4
4
|
import 'http';
|
|
5
5
|
import 'ws';
|
|
6
6
|
import 'better-sqlite3';
|
package/dist/ws/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { WebSocketHandler } from '../server/websocket.js';
|
|
2
2
|
export { createWebSocketServer } from '../server/websocket.js';
|
|
3
|
-
import { S as Store } from '../Store-
|
|
3
|
+
import { S as Store } from '../Store-BtdYuiUx.js';
|
|
4
4
|
import 'http';
|
|
5
5
|
import 'ws';
|
|
6
6
|
import 'better-sqlite3';
|
package/package.json
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mnemosyne-core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Unified memory engine for AI agents — graph atoms, semantic search, and collaborative memory",
|
|
5
5
|
"logo": "logo.png",
|
|
6
6
|
"author": "Arman Aslanyan <aslanyanarman88@gmail.com> (https://www.linkedin.com/in/arman-aslanyan/)",
|
|
7
|
-
"main": "dist/
|
|
8
|
-
"module": "dist/
|
|
9
|
-
"types": "dist/
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"module": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
10
|
"bin": {
|
|
11
11
|
"mnemosyne-core": "./dist/cli/index.js"
|
|
12
12
|
},
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|
|
15
|
-
"types": "./dist/
|
|
16
|
-
"import": "./dist/
|
|
17
|
-
"require": "./dist/
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"require": "./dist/index.js"
|
|
18
18
|
},
|
|
19
19
|
"./sdk": {
|
|
20
20
|
"types": "./dist/sdk/index.d.ts",
|
|
21
21
|
"import": "./dist/sdk/index.js",
|
|
22
|
-
"require": "./dist/sdk/index.
|
|
22
|
+
"require": "./dist/sdk/index.js"
|
|
23
23
|
},
|
|
24
24
|
"./ws": {
|
|
25
25
|
"types": "./dist/ws/index.d.ts",
|
|
26
26
|
"import": "./dist/ws/index.js",
|
|
27
|
-
"require": "./dist/ws/index.
|
|
27
|
+
"require": "./dist/ws/index.js"
|
|
28
28
|
},
|
|
29
29
|
"./mcp": {
|
|
30
30
|
"types": "./dist/mcp/index.d.ts",
|
|
31
31
|
"import": "./dist/mcp/index.js",
|
|
32
|
-
"require": "./dist/mcp/index.
|
|
32
|
+
"require": "./dist/mcp/index.js"
|
|
33
33
|
},
|
|
34
34
|
"./cli": {
|
|
35
35
|
"types": "./dist/cli/index.d.ts",
|
|
36
36
|
"import": "./dist/cli/index.js",
|
|
37
|
-
"require": "./dist/cli/index.
|
|
37
|
+
"require": "./dist/cli/index.js"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"scripts": {
|
|
44
44
|
"start": "node dist/cli/index.js",
|
|
45
45
|
"dev": "tsx watch src/cli/index.ts",
|
|
46
|
-
"build": "tsup --config tsup.config.ts",
|
|
46
|
+
"build": "tsup --config tsup.config.ts && node -e \"require('fs').mkdirSync('dist/dashboard',{recursive:true});require('fs').copyFileSync('src/dashboard/index.html','dist/dashboard/index.html')\"",
|
|
47
47
|
"typecheck": "tsc --noEmit"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|