minimem 0.0.4 → 0.0.5
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/README.md +6 -0
- package/package.json +6 -2
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "minimem",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
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",
|
|
@@ -31,7 +31,11 @@
|
|
|
31
31
|
"test:integration": "npx tsx --test src/__tests__/minimem.integration.test.ts",
|
|
32
32
|
"test:cli": "npx tsx --test src/cli/__tests__/commands.test.ts",
|
|
33
33
|
"test:all": "npm run test && npm run test:integration && npm run test:cli",
|
|
34
|
-
"prepublishOnly": "npm run build"
|
|
34
|
+
"prepublishOnly": "npm run build",
|
|
35
|
+
"version:patch": "npm version patch && git push && git push --tags",
|
|
36
|
+
"version:minor": "npm version minor && git push && git push --tags",
|
|
37
|
+
"version:major": "npm version major && git push && git push --tags",
|
|
38
|
+
"publish:npm": "npm run build && npm publish"
|
|
35
39
|
},
|
|
36
40
|
"keywords": [
|
|
37
41
|
"memory",
|