-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "claude-memory-admin",
"version": "1.11.2",
"description": "Browse, audit and prune the auto memory Claude Code keeps under ~/.claude/projects",
"keywords": [
"claude",
"claude-code",
"anthropic",
"claude-memory",
"auto-memory",
"memory",
"memory-md",
"claude-md",
"cleanup",
"prune",
"declutter",
"audit",
"context-window",
"token-budget",
"knowledge-base",
"wikilinks",
"markdown",
"cli",
"local-first",
"developer-tools"
],
"license": "MIT",
"author": "Steven Giesel",
"homepage": "https://github.com/linkdotnet/claude-memory-admin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/linkdotnet/claude-memory-admin.git"
},
"bugs": {
"url": "https://github.com/linkdotnet/claude-memory-admin/issues"
},
"type": "module",
"bin": {
"claude-memory-admin": "bin/claude-memory-admin.mjs"
},
"exports": {
".": "./server.mjs"
},
"files": [
"bin/",
"src/",
"public/",
"server.mjs",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.6.0"
},
"scripts": {
"start": "node bin/claude-memory-admin.mjs",
"test": "node --test test/*.test.mjs",
"build:css": "tailwindcss -i styles/app.css -o public/styles.css --minify",
"dev:css": "tailwindcss -i styles/app.css -o public/styles.css --watch",
"prepublishOnly": "npm run build:css"
},
"dependencies": {
"dompurify": "^3.4.14",
"marked": "^18.0.10"
},
"devDependencies": {
"@tailwindcss/cli": "^4.3.3"
}
}