-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "opencode-working-memory",
"version": "1.5.1",
"description": "Three-layer memory architecture for OpenCode with workspace memory and hot session state",
"type": "module",
"main": "index.ts",
"exports": {
".": "./index.ts"
},
"files": [
"index.ts",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node -e \"console.log('No build step required: OpenCode loads index.ts directly')\"",
"typecheck": "tsc --noEmit",
"test": "node --import ./tests/setup-xdg-data-home.ts --test --experimental-strip-types tests/*.test.ts",
"cleanup:workspaces": "node --experimental-strip-types scripts/dev/cleanup-workspaces.ts",
"check:compat": "npm install --no-save @opencode-ai/plugin@latest && npm run typecheck && npm test"
},
"keywords": [
"opencode",
"plugin",
"memory",
"context-management",
"ai-agent",
"llm"
],
"author": "sdwolf4103",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sdwolf4103/opencode-working-memory.git"
},
"bugs": {
"url": "https://github.com/sdwolf4103/opencode-working-memory/issues"
},
"homepage": "https://github.com/sdwolf4103/opencode-working-memory#readme",
"peerDependencies": {
"@opencode-ai/plugin": ">=1.2.0 <2.0.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"bun-types": "^1.2.21",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0"
}
}