-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.52 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.52 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
{
"name": "@sonicbotman/lobster-press",
"version": "5.0.0",
"description": "Cognitive Memory System for AI Agents — OpenClaw Plugin",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"mcp_server/",
"openclaw.plugin.json",
"README.md",
"src/"
],
"scripts": {
"build": "tsc",
"test": "echo \"No Node.js tests yet - Python tests cover the core functionality\" && exit 0",
"prepublishOnly": "npm run build",
"test:ts": "vitest run",
"test:ts:watch": "vitest"
},
"keywords": [
"openclaw",
"plugin",
"memory",
"llm",
"context-management",
"cognitive",
"dag-compression",
"ebbinghaus"
],
"license": "MIT",
"peerDependencies": {
"openclaw": ">=2026.4.2"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.0",
"openclaw": "^2026.4.2",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SonicBotMan/lobster-press.git"
},
"bugs": {
"url": "https://github.com/SonicBotMan/lobster-press/issues"
},
"homepage": "https://github.com/SonicBotMan/lobster-press#readme",
"openclaw": {
"extensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.4.2",
"minGatewayVersion": "2026.4.2"
},
"build": {
"openclawVersion": "2026.5.27",
"pluginSdkVersion": "2026.5.27"
}
},
"dependencies": {
"@sinclair/typebox": "^0.34.48"
}
}