Files
claude-mem/package.json
T
Alex Newman 2663121d9f Refactor database integration to use bun:sqlite instead of better-sqlite3
- Updated import statements across multiple files to use bun:sqlite.
- Changed database query methods from `prepare` to `query` for consistency.
- Removed dependency on better-sqlite3 from package.json and adjusted package.json to specify bun as the engine.
- Modified hook installation process to eliminate unnecessary dependency installation.
- Updated migration scripts to align with bun:sqlite's API.
2025-10-15 15:03:43 -04:00

64 lines
1.4 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 build.js",
"publish:npm": "node publish.js",
"dev": "bun run src/bin/cli.ts",
"prepublishOnly": "npm run build"
},
"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",
"hook-templates",
"commands",
"src",
".mcp.json",
"CHANGELOG.md",
"README_WINDOWS.md"
]
}