Files
cloudycotton e207d36afb prepare for skill publishing
- 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
2026-03-21 19:11:46 +05:30

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"
}
}