ReMe/typescript/package.json
jinliyl f9a45a319a
fix: publish an OpenClaw-specific ClawHub artifact (#513)
* fix: publish an OpenClaw-specific ClawHub artifact

* fix: enable ClawHub publication
2026-09-01 20:27:47 +08:00

152 lines
3.9 KiB
JSON

{
"name": "@agentscope-ai/reme",
"version": "0.1.2",
"description": "ReMe client and memory integrations for TypeScript agents",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./dsh": {
"types": "./dist/dsh/index.d.ts",
"import": "./dist/dsh/index.js"
},
"./client": {
"default": "./dist/dsh/client.js"
},
"./package.json": "./package.json",
"./openclaw": {
"types": "./dist/openclaw/index.d.ts",
"import": "./dist/openclaw/index.js"
}
},
"files": [
"dist",
"dsh/cordis.patch.yml",
"openclaw.plugin.json",
"README.md",
"README_ZH.md"
],
"dsh": {
"client": {
"inject": [
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-ui-settings-plugins",
"@deepseek-ai/dsh-client-ui-primitives"
],
"platform": "web"
},
"bundle": {
"patch": "./dsh/cordis.patch.yml"
}
},
"openclaw": {
"extensions": [
"./dist/openclaw/index.js"
],
"compat": {
"pluginApi": ">=2026.7.1",
"minGatewayVersion": "2026.7.1"
},
"build": {
"openclawVersion": "2026.7.1-2",
"pluginSdkVersion": "2026.7.1-2"
}
},
"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 .",
"pack:clawhub": "node scripts/pack-clawhub.mjs",
"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": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-llm": "^0.1.0-rc.8",
"@deepseek-ai/dsh-settings": "^0.1.0-rc.8",
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.0-rc.8",
"@deepseek-ai/dsh-typert-protocol": "^0.1.0-rc.8",
"@deepseek-ai/dsh-tools": "^0.1.0-rc.8",
"@deepseek-ai/schemastery": "^3.18.1",
"openclaw": ">=2026.7.1"
},
"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
},
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-llm": "0.1.0-rc.8",
"@deepseek-ai/dsh-settings": "0.1.0-rc.8",
"@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.8",
"@deepseek-ai/dsh-typert-protocol": "0.1.0-rc.8",
"@deepseek-ai/dsh-tools": "0.1.0-rc.8",
"@deepseek-ai/schemastery": "3.18.1",
"@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",
"openclaw": "2026.7.1-2",
"prettier": "3.0.0",
"react": "^18.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "8.59.3"
},
"engines": {
"node": "^22.22.3 || ^24.15.0 || >=25.9.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentscope-ai/ReMe.git",
"directory": "typescript"
},
"keywords": [
"reme",
"memory",
"deepseek-harness",
"openclaw"
],
"license": "Apache-2.0"
}