71 lines
1.9 KiB
JSON
71 lines
1.9 KiB
JSON
{
|
|
"name": "claude-mem",
|
|
"version": "3.9.16",
|
|
"description": "Memory compression system for Claude Code - persist context across sessions",
|
|
"keywords": [
|
|
"claude",
|
|
"claude-agent-sdk",
|
|
"mcp",
|
|
"memory",
|
|
"compression",
|
|
"knowledge-graph",
|
|
"transcript",
|
|
"cli",
|
|
"typescript",
|
|
"bun"
|
|
],
|
|
"author": "Alex Newman",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/thedotmack/claude-mem.git"
|
|
},
|
|
"homepage": "https://github.com/thedotmack/claude-mem#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/thedotmack/claude-mem/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"type": "module",
|
|
"engines": {
|
|
"bun": ">=1.0.0"
|
|
},
|
|
"bin": {
|
|
"claude-mem": "./dist/claude-mem.min.js"
|
|
},
|
|
"scripts": {
|
|
"build": "node scripts/build.js && node scripts/build-hooks.js",
|
|
"build:cli": "node scripts/build.js",
|
|
"build:hooks": "node scripts/build-hooks.js",
|
|
"publish:npm": "node scripts/publish.js",
|
|
"dev": "bun run src/bin/cli.ts",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "bun test tests/",
|
|
"test:context": "echo '{\"session_id\":\"test-'$(date +%s)'\",\"cwd\":\"'$(pwd)'\",\"source\":\"startup\"}' | bun scripts/hooks/context-hook.js 2>/dev/null",
|
|
"test:context:verbose": "echo '{\"session_id\":\"test-'$(date +%s)'\",\"cwd\":\"'$(pwd)'\",\"source\":\"startup\"}' | bun scripts/hooks/context-hook.js"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
|
|
"@clack/prompts": "^0.11.0",
|
|
"boxen": "^8.0.1",
|
|
"chalk": "^5.6.0",
|
|
"commander": "^14.0.0",
|
|
"glob": "^11.0.3",
|
|
"gradient-string": "^3.0.0",
|
|
"handlebars": "^4.7.8"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"commands",
|
|
"hooks",
|
|
"scripts",
|
|
".claude-plugin",
|
|
"src",
|
|
"docs",
|
|
".mcp.json",
|
|
"README_WINDOWS.md"
|
|
]
|
|
}
|