mirror of
https://github.com/TencentCloud/TencentDB-Agent-Memory
synced 2026-07-10 20:34:30 +00:00
36 lines
845 B
JSON
36 lines
845 B
JSON
|
|
{
|
||
|
|
"name": "@tencentdb-agent-memory/openclaw-plugin",
|
||
|
|
"version": "1.0.0-beta.1",
|
||
|
|
"description": "OpenClaw memory plugin — client mode for TencentDB Agent Memory Gateway",
|
||
|
|
"type": "module",
|
||
|
|
"main": "dist/index.js",
|
||
|
|
"types": "dist/index.d.ts",
|
||
|
|
"openclaw": {
|
||
|
|
"extensions": [
|
||
|
|
"./dist/index.js"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"clean": "rm -rf dist *.tgz",
|
||
|
|
"build": "tsc",
|
||
|
|
"prepack": "npm run clean && npm install --no-save --no-audit --no-fund && npm run build",
|
||
|
|
"test:sdk": "node --env-file=.env --import tsx tests/sdk-cos.ts"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@tencentdb-agent-memory/memory-sdk-ts": "^1.0.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"typescript": "^5.5.0"
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=22.0.0"
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"dist/",
|
||
|
|
"src/",
|
||
|
|
"index.ts",
|
||
|
|
"openclaw.plugin.json",
|
||
|
|
"README.md"
|
||
|
|
]
|
||
|
|
}
|