-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.22 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "abmind",
"version": "0.2.4-alpha.4",
"description": "Standalone AI agent memory system \u2014 SQLite, FTS5, embeddings, 4-layer recall, sleep maintenance",
"keywords": [
"ai",
"agent",
"memory",
"llm",
"sqlite",
"fts5",
"embeddings",
"recall",
"sleep",
"consolidation"
],
"homepage": "https://github.com/aksika/abmind",
"repository": {
"type": "git",
"url": "git+https://github.com/aksika/abmind.git"
},
"bugs": {
"url": "https://github.com/aksika/abmind/issues"
},
"author": "aksika <aksikatwo@gmail.com>",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./openclaw-plugin": {
"types": "./dist/src/openclaw-plugin/index.d.ts",
"default": "./dist/src/openclaw-plugin/index.js"
},
"./deploy-lib": {
"types": "./dist/src/deploy-lib/index.d.ts",
"default": "./dist/src/deploy-lib/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"abmind": "dist/cli/abmind.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"openclaw.plugin.json",
"templates/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/cli/abmind.js",
"prepare": "tsc",
"test": "vitest run --dir src",
"test:watch": "vitest --dir src",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "4.4.3"
},
"peerDependencies": {
"@sinclair/typebox": ">=0.32.0"
},
"peerDependenciesMeta": {
"@sinclair/typebox": {
"optional": true
}
},
"devDependencies": {
"@sinclair/typebox": "^0.34.49",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.17",
"fast-check": "^3.23.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"openclaw": {
"extensions": [
"./dist/src/openclaw-plugin/index.js"
]
},
"optionalDependencies": {
"sqlite-vec": "0.1.9",
"better-sqlite3": "^11.10.0"
},
"engines": {
"node": ">=22.0.0"
}
}