@bubstack/moe-memory 0.1.2 → 0.1.4
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.js +0 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +13 -12
package/dist/cli.js
CHANGED
|
File without changes
|
package/dist/version.d.ts
CHANGED
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
* constant instead. `test/version-consistency.test.ts` asserts it equals
|
|
10
10
|
* package.json, which is the invariant the generator existed to guarantee.
|
|
11
11
|
*/
|
|
12
|
-
export declare const VERSION = "0.1.
|
|
12
|
+
export declare const VERSION = "0.1.4";
|
|
13
13
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bubstack/moe-memory",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Semantic recall over past sessions and journal entries. One MCP server.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"homepage": "https://gitlab.com/moe-ai/moe",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "https://
|
|
14
|
+
"url": "git+https://github.com/zak-keown/moe.git"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"claude-code",
|
|
@@ -42,6 +42,16 @@
|
|
|
42
42
|
"skills",
|
|
43
43
|
".mcp.json"
|
|
44
44
|
],
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "tsc -b && node ../../scripts/copy-license.mjs MIT dist/LICENSE",
|
|
47
|
+
"prepack": "pnpm run build",
|
|
48
|
+
"typecheck": "tsc -b --pretty && tsc -p tsconfig.tests.json --pretty",
|
|
49
|
+
"test": "vitest run --project unit",
|
|
50
|
+
"test:model": "vitest run --project model",
|
|
51
|
+
"test:claude-e2e": "node test/manual/claude-e2e.js",
|
|
52
|
+
"test:codex-e2e": "node test/manual/codex-e2e.js",
|
|
53
|
+
"lint": "biome check ."
|
|
54
|
+
},
|
|
45
55
|
"dependencies": {
|
|
46
56
|
"@anthropic-ai/claude-agent-sdk": "^0.2.126",
|
|
47
57
|
"@huggingface/transformers": "^4.2.0",
|
|
@@ -58,14 +68,5 @@
|
|
|
58
68
|
"@types/proper-lockfile": "^4.1.4",
|
|
59
69
|
"typescript": "^5.9.0",
|
|
60
70
|
"vitest": "^3.2.4"
|
|
61
|
-
},
|
|
62
|
-
"scripts": {
|
|
63
|
-
"build": "tsc -b && node ../../scripts/copy-license.mjs MIT dist/LICENSE",
|
|
64
|
-
"typecheck": "tsc -b --pretty && tsc -p tsconfig.tests.json --pretty",
|
|
65
|
-
"test": "vitest run --project unit",
|
|
66
|
-
"test:model": "vitest run --project model",
|
|
67
|
-
"test:claude-e2e": "node test/manual/claude-e2e.js",
|
|
68
|
-
"test:codex-e2e": "node test/manual/codex-e2e.js",
|
|
69
|
-
"lint": "biome check ."
|
|
70
71
|
}
|
|
71
|
-
}
|
|
72
|
+
}
|