ReMe/integrations/dsh/package.json
jinliyl 6cb81e7921
refactor(integrations): split TypeScript host plugins (#536)
* refactor(integrations): split TypeScript host plugins

* feat(integrations): refresh host compatibility and status UI

* fix(openclaw): secure status diagnostics
2026-09-11 13:06:02 +08:00

131 lines
3.6 KiB
JSON

{
"name": "@agentscope-ai/reme-dsh-plugin",
"version": "0.1.0",
"description": "ReMe memory and context 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"
},
"./client": {
"default": "./dist/client.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"cordis.patch.yml",
"README.md",
"README_ZH.md",
"figures"
],
"dsh": {
"client": {
"inject": [
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-connection",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-ui-settings-plugins",
"@deepseek-ai/dsh-client-ui-primitives"
],
"platform": "web"
},
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && node scripts/build-client.mjs",
"clean": "node -e \"require('node:fs').rmSync('dist', { force: true, recursive: true })\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"pretest": "npm run build",
"test": "node --test tests/*.test.mjs",
"test:package": "node scripts/test-package.mjs",
"prepare": "npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.2",
"@deepseek-ai/dsh-llm": "^0.1.2-rc.1",
"@deepseek-ai/dsh-settings": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-rc.1",
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-rc.1",
"@deepseek-ai/dsh-tools": "^0.1.2-rc.1",
"@deepseek-ai/schemastery": "^3.18.2"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": {
"optional": true
},
"@deepseek-ai/dsh-llm": {
"optional": true
},
"@deepseek-ai/dsh-settings": {
"optional": true
},
"@deepseek-ai/dsh-client-ui-primitives": {
"optional": true
},
"@deepseek-ai/dsh-typert-protocol": {
"optional": true
},
"@deepseek-ai/dsh-tools": {
"optional": true
},
"@deepseek-ai/schemastery": {
"optional": true
}
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.2",
"@deepseek-ai/dsh-agent": "0.1.5-rc.2",
"@deepseek-ai/dsh-brand": "0.1.5-rc.2",
"@deepseek-ai/dsh-code-runtime": "0.1.5-rc.2",
"@deepseek-ai/dsh-invariants": "0.1.5-rc.2",
"@deepseek-ai/dsh-llm": "0.1.5-rc.2",
"@deepseek-ai/dsh-scope": "0.1.5-rc.2",
"@deepseek-ai/dsh-session": "0.1.5-rc.2",
"@deepseek-ai/dsh-settings": "0.1.5-rc.2",
"@deepseek-ai/dsh-system-prompt": "0.1.5-rc.2",
"@deepseek-ai/dsh-client-ui-primitives": "0.1.5-rc.2",
"@deepseek-ai/dsh-typert-protocol": "0.1.5-rc.2",
"@deepseek-ai/dsh-tools": "0.1.5-rc.2",
"@deepseek-ai/dsh-user-approval": "0.1.5-rc.2",
"@deepseek-ai/schemastery": "3.18.2",
"@eslint/js": "9.39.4",
"@types/node": "^22.15.0",
"@types/react": "~18.3.1",
"esbuild": "^0.25.10",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "16.4.0",
"prettier": "3.0.0",
"react": "^18.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "8.59.3"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentscope-ai/ReMe.git",
"directory": "integrations/dsh"
},
"keywords": [
"reme",
"memory",
"deepseek-harness",
"dsh",
"plugin"
],
"license": "Apache-2.0"
}