mirror of
https://github.com/sdwolf4103/opencode-working-memory.git
synced 2026-06-02 06:19:36 +02:00
61 lines
1.7 KiB
JSON
61 lines
1.7 KiB
JSON
{
|
|
"name": "opencode-working-memory",
|
|
"version": "1.6.1",
|
|
"description": "Three-layer memory architecture for OpenCode with workspace memory and hot session state",
|
|
"type": "module",
|
|
"main": "index.ts",
|
|
"exports": {
|
|
".": "./index.ts",
|
|
"./server": "./index.ts",
|
|
"./tui": "./src/tui-plugin.ts"
|
|
},
|
|
"bin": {
|
|
"memory-diag": "./scripts/memory-diag-bin.cjs"
|
|
},
|
|
"files": [
|
|
"index.ts",
|
|
"src/",
|
|
"scripts/memory-diag.ts",
|
|
"scripts/memory-diag/",
|
|
"scripts/memory-diag-bin.cjs",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "node -e \"console.log('No build step required: OpenCode loads index.ts directly')\"",
|
|
"diag": "node --experimental-strip-types scripts/memory-diag.ts",
|
|
"typecheck": "tsc --noEmit && node -e \"console.log('TYPECHECK_PASS')\"",
|
|
"test": "node --import ./tests/setup-xdg-data-home.ts --test --experimental-strip-types tests/*.test.ts && node -e \"console.log('TEST_PASS')\"",
|
|
"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": ">=22.6.0"
|
|
}
|
|
}
|