ruvector/examples/mragent/package.json
rUv 147d5ea1d9
chore(release): publish ruvector-mragent 0.1.0 to npm (#614)
Make examples/mragent npm-publishable: private:false, public publishConfig,
files whitelist, repository/homepage, and an MIT LICENSE file. Published
ruvector-mragent@0.1.0 (Cue-Tag-Content graph memory + Darwin harness optimizer
incl. the GPU LLM write-layer). node_modules excluded via .gitignore.

Co-authored-by: ruvnet <ruvnet@gmail.com>
2026-06-27 11:16:26 -04:00

56 lines
1.3 KiB
JSON

{
"name": "ruvector-mragent",
"version": "0.1.0",
"private": false,
"type": "module",
"description": "MRAgent — Cue-Tag-Content graph memory over RuVector, with a Meta-Harness Darwin loop that evolves the reconstruction harness (freeze the model, evolve the harness).",
"homepage": "https://github.com/ruvnet/ruvector/tree/main/examples/mragent#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ruvnet/ruvector.git",
"directory": "examples/mragent"
},
"files": [
"agent/",
"harness/",
"data/",
"tools/",
"test/",
"*.mjs",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"probe": "node probeDarwin.mjs",
"optimize": "node optimize.mjs",
"benchmark": "node benchmark.mjs",
"test": "node --test \"test/*.test.mjs\"",
"gen-corpus": "node tools/genCorpus.mjs"
},
"keywords": [
"ruvector",
"mragent",
"graph-memory",
"metaharness",
"darwin",
"rag",
"hnsw",
"cypher"
],
"license": "MIT",
"optionalDependencies": {
"@metaharness/darwin": "^0.3.1",
"ruvector": "^2.1.0"
},
"peerDependencies": {
"@metaharness/darwin": "^0.3.1"
},
"peerDependenciesMeta": {
"@metaharness/darwin": {
"optional": true
}
}
}