-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.41 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.41 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
{
"name": "claude-brain",
"version": "1.0.11",
"description": "Give Claude Code photographic memory in ONE portable file",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup && cp src/hooks/hooks.json dist/hooks/",
"dev": "tsup --watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"skills",
"commands",
".claude-plugin"
],
"keywords": [
"claude",
"claude-code",
"claude-code-plugin",
"anthropic",
"memory",
"ai-memory",
"context-persistence",
"memvid",
"portable-memory",
"persistent-memory",
"llm-memory",
"ai-assistant"
],
"author": "Memvid <hello@memvid.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/memvid/claude-brain.git"
},
"homepage": "https://memvid.com",
"bugs": {
"url": "https://github.com/memvid/claude-brain/issues"
},
"dependencies": {
"@memvid/sdk": "^2.0.149",
"proper-lockfile": "^4.1.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.0.0",
"@types/proper-lockfile": "^4.1.4",
"eslint": "^9.0.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.50.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}