-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.99 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
70
71
72
73
74
75
{
"name": "@lightharu/agentbrain",
"version": "0.10.0",
"description": "Brain-inspired cognitive architecture plugin for AI agents. Self-evolving personality, memory, emotions, and learning.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"skills/",
"openclaw.plugin.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"openclaw": {
"id": "agentbrain",
"extensions": [
"./dist/plugin/entry.js"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2",
"minGatewayVersion": "2026.3.24-beta.2"
},
"build": {
"openclawVersion": ">=2026.3.24",
"entry": "dist/plugin/entry.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"migrate:memory-graph": "node scripts/migrate-memory-graph.mjs",
"lint": "eslint src/",
"clean": "rm -rf dist/"
},
"keywords": [
"ai-agent",
"cognitive-architecture",
"brain",
"memory",
"personality",
"self-learning",
"openclaw",
"plugin"
],
"author": "LightHaru",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LightHaru/agentbrain.git"
},
"homepage": "https://github.com/LightHaru/agentbrain#readme",
"bugs": {
"url": "https://github.com/LightHaru/agentbrain/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"better-sqlite3": "^11.0.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.67.0",
"vitest": "^2.0.0"
}
}