-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"name": "@martian-engineering/lossless-claw",
"version": "0.5.2",
"description": "Lossless Context Management plugin for OpenClaw — DAG-based conversation summarization with incremental compaction",
"type": "module",
"main": "index.ts",
"license": "MIT",
"author": "Josh Lehman <josh@martian.engineering>",
"keywords": [
"openclaw",
"openclaw-plugin",
"context-management",
"llm",
"summarization",
"conversation-memory",
"dag"
],
"scripts": {
"changeset": "changeset",
"release:verify": "npm test && npm pack --dry-run",
"test": "vitest run --dir test",
"version-packages": "changeset version"
},
"files": [
"index.ts",
"src/**/*.ts",
"openclaw.plugin.json",
"docs/",
"README.md",
"LICENSE"
],
"dependencies": {
"@mariozechner/pi-agent-core": "*",
"@mariozechner/pi-ai": "*",
"@sinclair/typebox": "0.34.48"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.4.2"
},
"publishConfig": {
"access": "public"
},
"openclaw": {
"extensions": [
"./index.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Martian-Engineering/lossless-claw.git"
},
"homepage": "https://github.com/Martian-Engineering/lossless-claw#readme",
"bugs": {
"url": "https://github.com/Martian-Engineering/lossless-claw/issues"
}
}