minimem 0.0.6 → 0.0.7
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 +166 -133
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "minimem",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "A lightweight file-based memory system with vector search for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"test": "vitest run",
|
|
34
34
|
"test:integration": "npx tsx --test src/__tests__/minimem.integration.test.ts",
|
|
35
35
|
"test:cli": "npx tsx --test src/cli/__tests__/commands.test.ts",
|
|
36
|
-
"test:
|
|
36
|
+
"test:knowledge": "npx tsx --test src/__tests__/knowledge.test.ts",
|
|
37
|
+
"test:all": "npm run test && npm run test:integration && npm run test:cli && npm run test:knowledge",
|
|
37
38
|
"prepublishOnly": "npm run build",
|
|
38
39
|
"version:patch": "npm version patch && git push && git push --tags",
|
|
39
40
|
"version:minor": "npm version minor && git push && git push --tags",
|