mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-17 23:51:19 +00:00
* feat: add DSH memory integration and organize extensions * fix: support newer DSH release candidates * fix: address DSH integration review feedback * fix: handle DSH cross-day retry edge cases
64 lines
1.5 KiB
JSON
64 lines
1.5 KiB
JSON
{
|
|
"name": "@agentscope-ai/reme-dsh-memory",
|
|
"version": "0.1.0",
|
|
"description": "ReMe memory integration for DeepSeek Harness",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"cordis.patch.yml",
|
|
"README.md"
|
|
],
|
|
"dsh": {
|
|
"bundle": {
|
|
"patch": "./cordis.patch.yml"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && tsc -p tsconfig.json",
|
|
"clean": "node -e \"require('node:fs').rmSync('dist', { force: true, recursive: true })\"",
|
|
"pretest": "npm run build",
|
|
"test": "node --test *.test.mjs",
|
|
"prepare": "npm run build",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
"@deepseek-ai/dsh-llm": "^0.1.0-rc.7",
|
|
"@deepseek-ai/dsh-tools": "^0.1.0-rc.7",
|
|
"@deepseek-ai/schemastery": "^3.18.1"
|
|
},
|
|
"devDependencies": {
|
|
"@deepseek-ai/cordis": "4.0.1",
|
|
"@deepseek-ai/dsh-llm": "0.1.0-rc.7",
|
|
"@deepseek-ai/dsh-tools": "0.1.0-rc.7",
|
|
"@deepseek-ai/schemastery": "3.18.1",
|
|
"@types/node": "^22.15.0",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"engines": {
|
|
"node": "^22.19.0 || >=24"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/agentscope-ai/ReMe.git",
|
|
"directory": "integrations/dsh"
|
|
},
|
|
"keywords": [
|
|
"deepseek-harness",
|
|
"dsh",
|
|
"reme",
|
|
"memory"
|
|
],
|
|
"license": "Apache-2.0"
|
|
}
|