mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-15 23:31:05 +00:00
* refactor(integrations): split TypeScript host plugins * feat(integrations): refresh host compatibility and status UI * fix(openclaw): secure status diagnostics
86 lines
2 KiB
JSON
86 lines
2 KiB
JSON
{
|
|
"name": "@agentscope-ai/reme-openclaw-plugin",
|
|
"version": "0.1.0",
|
|
"description": "ReMe file-native long-term memory plugin for OpenClaw",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"figures",
|
|
"openclaw.plugin.json",
|
|
"README.md",
|
|
"README_ZH.md"
|
|
],
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./dist/index.js"
|
|
],
|
|
"compat": {
|
|
"pluginApi": ">=2026.9.3",
|
|
"minGatewayVersion": "2026.9.3"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.9.3",
|
|
"pluginSdkVersion": "2026.9.3"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && tsc -p tsconfig.json",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"typebox": "1.3.19"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.9.3"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "9.39.4",
|
|
"@types/node": "^22.15.0",
|
|
"eslint": "9.39.4",
|
|
"globals": "16.4.0",
|
|
"openclaw": "2026.9.3",
|
|
"prettier": "3.0.0",
|
|
"typescript": "^5.9.2",
|
|
"typescript-eslint": "8.59.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=24.16.0 <25 || >=26.1.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/agentscope-ai/ReMe.git",
|
|
"directory": "integrations/openclaw"
|
|
},
|
|
"keywords": [
|
|
"reme",
|
|
"memory",
|
|
"openclaw",
|
|
"plugin"
|
|
],
|
|
"license": "Apache-2.0"
|
|
}
|