mirror of
https://github.com/vectorize-io/hindsight.git
synced 2026-09-14 19:31:49 +08:00
9faa236469
Routine dependency maintenance for the openclaw integration. - vitest: 4.1.5 -> 4.1.11 (devDependency, in-major) - @vitest/mocker: 4.1.5 -> 4.1.11 (transitive, moves with vitest) - @vitest/ui: 4.1.5 -> 4.1.11 (moves with vitest) Manifest floors raised to ^4.1.11 so the resolution is reproducible rather than dependent on registry state at install time. Tests unchanged at 343 across 13 files; tsc and the build are clean.
71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
{
|
|
"name": "@vectorize-io/hindsight-openclaw",
|
|
"version": "0.12.0",
|
|
"description": "Hindsight memory plugin for OpenClaw - biomimetic long-term memory with fact extraction",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"hindsight-openclaw-backfill": "dist/backfill.js",
|
|
"hindsight-openclaw-setup": "dist/setup.js"
|
|
},
|
|
"type": "module",
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./dist/index.js"
|
|
]
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"memory",
|
|
"ai",
|
|
"agent",
|
|
"hindsight",
|
|
"long-term-memory"
|
|
],
|
|
"author": "Vectorize <support@vectorize.io>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vectorize-io/hindsight.git",
|
|
"directory": "hindsight-integrations/openclaw"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"openclaw.plugin.json",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"prepack": "node scripts/pack-manifest.mjs strip",
|
|
"postpack": "node scripts/pack-manifest.mjs restore",
|
|
"backfill:help": "node dist/backfill.js --help",
|
|
"test": "vitest run src",
|
|
"test:watch": "vitest src",
|
|
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
"prepublishOnly": "npm run clean && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^1.2.0",
|
|
"@vectorize-io/hindsight-agent-sdk": "^0.1.0",
|
|
"@vectorize-io/hindsight-all": "^0.6.2",
|
|
"@vectorize-io/hindsight-client": "^0.8.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@vitest/ui": "^4.1.11",
|
|
"typescript": "^5.3.0",
|
|
"vitest": "^4.1.11"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"overrides": {
|
|
"rollup": "^4.59.0",
|
|
"picomatch": ">=2.3.2 <3.0.0 || >=4.0.4",
|
|
"vite": ">=8.0.5",
|
|
"postcss": ">=8.5.23 <9.0.0"
|
|
}
|
|
}
|