mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* refactor(packaging): reorganize published packages * fix(packaging): install AgentScope extra in wheel smoke * docs: align package guides and documentation site * ci(workflow): add core dependency verification step in Python package build - Add a workflow step to verify released core dependencies by installing the wheel with core extras - Assert the presence of the static index.html file to ensure proper package contents - Create and use a temporary virtual environment for isolation during verification - Keep existing artifacts upload step intact and conditional on inputs.upload_artifacts flag * fix(ci): update package installation dependencies in Windows workflow - Change pip install from editable reme_studio and core to only dev and as extras - Remove installation of reme_studio and core to streamline dependency setup - Ensure Windows CI uses the correct extras for testing environment * fix(tests): add missing commas in toml file reads in package version tests - Added trailing commas in the tomllib.loads calls for auto-fin and daily_paper configs - Ensured consistent syntax to prevent potential tuple misinterpretation - Improved readability and correctness of the test setup code * fix(packaging): protect qwenpaw releases and test Studio health
151 lines
3.9 KiB
JSON
151 lines
3.9 KiB
JSON
{
|
|
"name": "@agentscope-ai/reme",
|
|
"version": "0.1.1",
|
|
"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 .",
|
|
"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"
|
|
}
|