mirror of
https://github.com/runablehq/memory.git
synced 2026-09-19 03:29:19 +08:00
e207d36afb
- Move SKILL.md to skill/ for skills.sh convention - Update package.json: @runablehq/mem, add description/keywords/files - Add terminal demo gif showing skills add + mem usage - Rewrite README with demo gif, skills.sh and runable.com links - Add VHS tape file for regenerating the gif
40 lines
737 B
JSON
40 lines
737 B
JSON
{
|
|
"name": "@runablehq/mem",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Agent memory store — remember, recall, forget with full-text search",
|
|
"keywords": [
|
|
"memory",
|
|
"agent",
|
|
"cli",
|
|
"sqlite",
|
|
"fts",
|
|
"search",
|
|
"knowledge-base"
|
|
],
|
|
"bin": {
|
|
"mem": "dist/mem"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"skill",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"dev": "bun src/cli.ts",
|
|
"test": "bun test",
|
|
"build": "bun build --compile src/cli.ts --outfile dist/mem",
|
|
"prepublishOnly": "bun run build"
|
|
},
|
|
"dependencies": {
|
|
"date-fns": "^4.1.0",
|
|
"nanoid": "^5.1.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|