mirror of
https://github.com/sdwolf4103/opencode-working-memory.git
synced 2026-06-01 22:11:08 +02:00
66 lines
2.0 KiB
JSON
66 lines
2.0 KiB
JSON
{
|
|
"name": "opencode-working-memory",
|
|
"version": "1.6.2",
|
|
"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",
|
|
"dist/",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"clean:dist": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
"build:memory-diag": "npm run clean:dist && tsc -p tsconfig.memory-diag.json",
|
|
"build": "npm run build:memory-diag && node -e \"console.log('BUILD_PASS')\"",
|
|
"prepack": "npm run build",
|
|
"diag": "npm run --silent build:memory-diag && node ./scripts/memory-diag-bin.cjs",
|
|
"test:pack:memory-diag": "node --test --experimental-strip-types tests/smoke/memory-diag-packaging.test.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"
|
|
}
|
|
}
|