claude-memory-hub 0.4.0

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/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "claude-memory-hub",
3
+ "version": "0.4.0",
4
+ "description": "Persistent memory system for Claude Code. Zero API key. Zero Python. 5 hooks + MCP server + SQLite FTS5.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "claude-memory-hub": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist/",
12
+ "README.md",
13
+ "CHANGELOG.md",
14
+ "LICENSE"
15
+ ],
16
+ "scripts": {
17
+ "start": "bun run src/index.ts",
18
+ "build": "bun build src/index.ts --outdir dist --target bun --entry-naming [name].js",
19
+ "build:cli": "bun build src/cli/main.ts --outdir dist --target bun --entry-naming cli.js",
20
+ "build:hooks": "bun build src/hooks-entry/post-tool-use.ts src/hooks-entry/session-end.ts src/hooks-entry/user-prompt-submit.ts src/hooks-entry/pre-compact.ts src/hooks-entry/post-compact.ts --outdir dist/hooks --target bun --entry-naming [name].js",
21
+ "build:all": "bun run build && bun run build:cli && bun run build:hooks",
22
+ "dev": "bun run --watch src/index.ts",
23
+ "prepublishOnly": "bun run build:all",
24
+ "typecheck": "tsc --noEmit"
25
+ },
26
+ "keywords": [
27
+ "claude",
28
+ "claude-code",
29
+ "memory",
30
+ "mcp",
31
+ "context",
32
+ "persistent-memory",
33
+ "sqlite",
34
+ "fts5"
35
+ ],
36
+ "author": "TranHoaiHung",
37
+ "license": "MIT",
38
+ "homepage": "https://github.com/TranHoaiHung/claude-memory-hub#readme",
39
+ "bugs": {
40
+ "url": "https://github.com/TranHoaiHung/claude-memory-hub/issues"
41
+ },
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/TranHoaiHung/claude-memory-hub.git"
45
+ },
46
+ "engines": {
47
+ "bun": ">=1.0.0"
48
+ },
49
+ "dependencies": {
50
+ "@modelcontextprotocol/sdk": "^1.10.2"
51
+ },
52
+ "devDependencies": {
53
+ "@types/bun": "latest",
54
+ "typescript": "^5.4.0"
55
+ }
56
+ }