-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 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
{
"name": "brainbox-hebbian",
"version": "0.1.6",
"description": "Hebbian memory system for AI agents — learns access patterns, builds neural pathways, saves tokens",
"type": "module",
"main": "dist/index.js",
"bin": {
"brainbox": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"postinstall": "node dist/cli.js install",
"dev": "tsx src/cli.ts",
"test": "tsx src/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thebasedcapital/brainbox.git"
},
"license": "MIT",
"mcpName": "io.github.thebasedcapital/brainbox",
"keywords": [
"hebbian",
"memory",
"ai-agent",
"mcp",
"claude-code",
"spreading-activation",
"procedural-memory"
],
"dependencies": {
"@huggingface/transformers": "^3.3.0",
"@kilocode/plugin": "^1.0.21",
"@modelcontextprotocol/sdk": "^1.26.0",
"better-sqlite3": "^11.0.0",
"tree-sitter-wasms": "^0.1.13",
"web-tree-sitter": "^0.25.3"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
}
}