mnemosyne-core 2.1.6 → 2.1.8
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 +9 -9
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +9 -9
- package/dist/cli/index.mjs.map +1 -1
- package/dist/dashboard/assets/banner.png +0 -0
- package/dist/dashboard/assets/favicon.png +0 -0
- package/dist/dashboard/assets/full-horizontal-logo.png +0 -0
- package/dist/dashboard/assets/logo.png +0 -0
- package/dist/dashboard/index.html +5 -5
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/index.mjs +1 -1
- package/dist/mcp/index.mjs.map +1 -1
- package/dist/server/api.js +3 -3
- package/dist/server/api.js.map +1 -1
- package/dist/server/api.mjs +3 -3
- package/dist/server/api.mjs.map +1 -1
- package/dist/server/index.js +4 -4
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +4 -4
- package/dist/server/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/cli/index.mjs
CHANGED
|
@@ -3641,7 +3641,7 @@ function getVersion() {
|
|
|
3641
3641
|
const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
|
|
3642
3642
|
return pkg.version;
|
|
3643
3643
|
} catch {
|
|
3644
|
-
return "2.1.
|
|
3644
|
+
return "2.1.8";
|
|
3645
3645
|
}
|
|
3646
3646
|
}
|
|
3647
3647
|
}
|
|
@@ -7602,7 +7602,7 @@ var require_package = __commonJS({
|
|
|
7602
7602
|
"package.json"(exports, module2) {
|
|
7603
7603
|
module2.exports = {
|
|
7604
7604
|
name: "mnemosyne-core",
|
|
7605
|
-
version: "2.1.
|
|
7605
|
+
version: "2.1.8",
|
|
7606
7606
|
description: "Unified memory engine for AI agents \u2014 graph atoms, semantic search, and collaborative memory",
|
|
7607
7607
|
logo: "logo.png",
|
|
7608
7608
|
author: "Arman Aslanyan <aslanyanarman88@gmail.com> (https://www.linkedin.com/in/arman-aslanyan/)",
|
|
@@ -7647,7 +7647,7 @@ var require_package = __commonJS({
|
|
|
7647
7647
|
scripts: {
|
|
7648
7648
|
start: "node dist/cli/index.js",
|
|
7649
7649
|
dev: "tsx watch src/cli/index.ts",
|
|
7650
|
-
build: `tsup --config tsup.config.ts && node -e "require('fs').mkdirSync('dist/dashboard',{recursive:true});
|
|
7650
|
+
build: `tsup --config tsup.config.ts && node -e "const fs=require('fs'),path=require('path');fs.mkdirSync('dist/dashboard',{recursive:true});fs.copyFileSync('src/dashboard/index.html','dist/dashboard/index.html');fs.mkdirSync('dist/dashboard/assets',{recursive:true});for(const f of fs.readdirSync('src/dashboard/assets')){fs.copyFileSync(path.join('src/dashboard/assets',f),path.join('dist/dashboard/assets',f));}"`,
|
|
7651
7651
|
typecheck: "tsc --noEmit"
|
|
7652
7652
|
},
|
|
7653
7653
|
devDependencies: {
|
|
@@ -8933,7 +8933,7 @@ function getVersion2() {
|
|
|
8933
8933
|
const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
|
|
8934
8934
|
return pkg.version;
|
|
8935
8935
|
} catch {
|
|
8936
|
-
return "2.1.
|
|
8936
|
+
return "2.1.8";
|
|
8937
8937
|
}
|
|
8938
8938
|
}
|
|
8939
8939
|
}
|
|
@@ -9535,7 +9535,7 @@ function getVersion3() {
|
|
|
9535
9535
|
const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
|
|
9536
9536
|
return pkg.version;
|
|
9537
9537
|
} catch {
|
|
9538
|
-
return "2.1.
|
|
9538
|
+
return "2.1.8";
|
|
9539
9539
|
}
|
|
9540
9540
|
}
|
|
9541
9541
|
}
|
|
@@ -10670,7 +10670,7 @@ var PKG_VERSION = (() => {
|
|
|
10670
10670
|
const pkg = JSON.parse(__require("fs").readFileSync(__require("path").resolve(__dirname, "../../package.json"), "utf-8"));
|
|
10671
10671
|
return pkg.version;
|
|
10672
10672
|
} catch {
|
|
10673
|
-
return "2.1.
|
|
10673
|
+
return "2.1.8";
|
|
10674
10674
|
}
|
|
10675
10675
|
})();
|
|
10676
10676
|
function handleHealth(store, pathname, method, res) {
|
|
@@ -10998,7 +10998,7 @@ var MnemosyneServer = class {
|
|
|
10998
10998
|
const wss = new import_websocket_server.default({ server: this.httpServer });
|
|
10999
10999
|
this.wsHandler = new WebSocketHandler(wss, this.store);
|
|
11000
11000
|
}
|
|
11001
|
-
const version = cfg?.server?.version || "2.1.
|
|
11001
|
+
const version = cfg?.server?.version || "2.1.8";
|
|
11002
11002
|
this.httpServer.listen(port, () => {
|
|
11003
11003
|
console.log(`Mnemosyne v${version} \u2014 port ${port}`);
|
|
11004
11004
|
console.log(`Dashboard: http://${host}:${port}/dashboard`);
|
|
@@ -11056,7 +11056,7 @@ function getVersion4() {
|
|
|
11056
11056
|
const { resolve: resolve14 } = __require("path");
|
|
11057
11057
|
return JSON.parse(readFileSync8(resolve14(__dirname, "../../package.json"), "utf-8")).version;
|
|
11058
11058
|
} catch {
|
|
11059
|
-
return "2.1.
|
|
11059
|
+
return "2.1.8";
|
|
11060
11060
|
}
|
|
11061
11061
|
}
|
|
11062
11062
|
async function startCommand(options) {
|
|
@@ -11348,7 +11348,7 @@ program2.name("mnemosyne").description("Mnemosyne \u2014 Your exocortex").versio
|
|
|
11348
11348
|
try {
|
|
11349
11349
|
return require_package().version;
|
|
11350
11350
|
} catch {
|
|
11351
|
-
return "2.1.
|
|
11351
|
+
return "2.1.8";
|
|
11352
11352
|
}
|
|
11353
11353
|
})());
|
|
11354
11354
|
program2.command("init").description("Initialize a new Mnemosyne workspace").option("-d, --data-dir <path>", "Data directory", "./data").option("-c, --config <path>", "Config file path").action(initCommand);
|