memorable-cli 0.2.0 → 0.3.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/LICENSE +66 -202
- package/README.md +124 -1
- package/dist/cli.js +394 -1328
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memorable-cli",
|
|
3
|
-
"version": "0.2
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Procedural memory for coding agents, stored on your own machine \u2014 deterministic extraction, consent fail-closed, optional gbrain backend.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
7
|
"bin": {
|
|
8
8
|
"memorable": "dist/cli.js"
|
|
9
9
|
},
|
|
@@ -16,16 +16,16 @@
|
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=20"
|
|
18
18
|
},
|
|
19
|
-
"
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/NIkhil-cmd-cmd/memorable-gbrain.git"
|
|
22
|
-
},
|
|
23
|
-
"homepage": "https://github.com/NIkhil-cmd-cmd/memorable-gbrain",
|
|
19
|
+
"homepage": "https://www.memorable.sh",
|
|
24
20
|
"scripts": {
|
|
25
|
-
"build": "bun build src/cli.ts --target=node --outfile dist/cli.js --external 'gbrain' --external 'gbrain/*' && chmod +x dist/cli.js",
|
|
21
|
+
"build": "bun build src/cli.ts --target=node --minify --outfile dist/cli.js --external 'gbrain' --external 'gbrain/*' && chmod +x dist/cli.js",
|
|
26
22
|
"prepack": "bun run build"
|
|
27
23
|
},
|
|
28
24
|
"devDependencies": {
|
|
29
25
|
"@memorable/core": "workspace:*"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://www.memorable.sh/docs/cli",
|
|
29
|
+
"email": "nikhil@theagi.company"
|
|
30
30
|
}
|
|
31
|
-
}
|
|
31
|
+
}
|