-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.07 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.07 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
{
"name": "@basicmemory/openclaw-basic-memory",
"version": "0.2.1",
"type": "module",
"description": "Basic Memory plugin for OpenClaw — local-first knowledge graph for agent memory",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/basicmachines-co/openclaw-basic-memory"
},
"files": [
"index.ts",
"bm-client.ts",
"context-engine/",
"config.ts",
"logger.ts",
"commands/cli.ts",
"commands/skills.ts",
"commands/slash.ts",
"hooks/capture.ts",
"hooks/recall.ts",
"tools/build-context.ts",
"tools/delete-note.ts",
"tools/edit-note.ts",
"tools/list-memory-projects.ts",
"tools/list-workspaces.ts",
"tools/memory-provider.ts",
"tools/move-note.ts",
"tools/read-note.ts",
"tools/schema-diff.ts",
"tools/schema-infer.ts",
"tools/schema-validate.ts",
"tools/search-notes.ts",
"tools/write-note.ts",
"schema/task-schema.ts",
"schema/conversation-schema.ts",
"skills/",
"scripts/fetch-skills.ts",
"scripts/setup-bm.sh",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@sinclair/typebox": "0.34.47"
},
"peerDependencies": {
"openclaw": ">=2026.3.7"
},
"scripts": {
"postinstall": "bash scripts/setup-bm.sh || true",
"check-types": "tsc --noEmit",
"lint": "bunx @biomejs/biome ci .",
"lint:fix": "bunx @biomejs/biome check --write .",
"fetch-skills": "bun scripts/fetch-skills.ts",
"prepack": "bun scripts/fetch-skills.ts",
"test": "bun test",
"test:int": "BM_INTEGRATION=1 BM_BIN=${BM_BIN:-./scripts/bm-local.sh} bun test integration --timeout 120000",
"test:coverage": "bun test --coverage",
"release:check": "bun run check-types && bun test && npm pack --dry-run"
},
"openclaw": {
"extensions": [
"./index.ts"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/node": "^20.0.0",
"openclaw": "^2026.3.8",
"typescript": "^5.9.3"
}
}