mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-23 04:27:11 +00:00
* fix(npm): update stale ruvector peer deps and fix TS syntax error - agentic-synth, ruvector-extensions: bump optional ruvector peer dep from ^0.1.x to ^0.2.0 to match current workspace version (fixes npm install resolution conflict in workspaces) - hr-management.ts: fix 'dotted LineManagerId' (space in identifier) which caused tsc to emit TS1005 errors Co-Authored-By: claude-flow <ruv@ruv.net> * style: rustfmt ruvector-sparse-inference ops.rs Fixes Rustfmt CI check failure for the LinearBitNet ternary weight GEMV operator added in the recent sparse-inference feature. Co-Authored-By: claude-flow <ruv@ruv.net> * fix(rvlite): suppress TS2307 for wasm-pack build artifacts Add @ts-ignore comments before the four import() calls that reference dist/wasm/rvlite.js — a wasm-pack generated file that is gitignored and absent at type-check time. The existing 'as any' casts were already correct at runtime; this suppresses the spurious TS2307 module-not-found errors that blocked 'npx tsc --noEmit' in the rvlite package. Co-Authored-By: claude-flow <ruv@ruv.net> * fix(ci): correct YAML indentation in copilot-setup-steps.yml The jobs: block was indented under on: and each subsequent step was indented by 6 extra spaces per level, creating a deeply pyramidal structure that is invalid YAML. GitHub Actions always reported 'This run likely failed because of a workflow file issue'. Fixed by resetting to standard 2-space YAML indentation throughout. Co-Authored-By: claude-flow <ruv@ruv.net> * fix(mcp-brain-server): fix 3 failing tests in pipeline and symbolic pipeline.rs: - test_cdx_query_default: update assertion to match current default (mime_filter and status_filter are now None by design — filters are applied client-side for lower latency in the PoC) - test_cc_warc_extraction: extend test HTML content to ≥200 chars so it passes the minimum-length gate in extract_text_from_html symbolic.rs: - test_forward_chaining_transitive: fix spurious back-edge inference. The shared-arg fallback fired on (B,C)×(A,B) because they share B, producing relates_to(C,A) alongside the correct relates_to(A,C). Add a reverse_chain guard: if last(pb)==first(pa) (i.e., (pb,pa) is a strict chain), skip shared-arg for this (pa,pb) pair — the forward direction is already covered by the (ia=A,B, ib=B,C) iteration. Co-Authored-By: claude-flow <ruv@ruv.net> --------- Co-authored-by: ruvnet <ruvnet@gmail.com>
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "ruvector-extensions",
|
|
"version": "0.1.0",
|
|
"description": "Advanced features for ruvector: embeddings, UI, exports, temporal tracking, and persistence",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "node --test tests/*.test.js",
|
|
"example:ui": "tsx src/examples/ui-example.ts"
|
|
},
|
|
"keywords": [
|
|
"ruvector",
|
|
"embeddings",
|
|
"openai",
|
|
"cohere",
|
|
"graph-visualization",
|
|
"neo4j",
|
|
"temporal-tracking",
|
|
"persistence"
|
|
],
|
|
"author": "ruv.io Team <info@ruv.io> (https://ruv.io)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/ruvector.git",
|
|
"directory": "npm/packages/ruvector-extensions"
|
|
},
|
|
"dependencies": {
|
|
"ruvector": "^0.2.0",
|
|
"@anthropic-ai/sdk": "^0.24.0",
|
|
"express": "^4.18.2",
|
|
"ws": "^8.16.0"
|
|
},
|
|
"peerDependencies": {
|
|
"openai": "^4.0.0",
|
|
"cohere-ai": "^7.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openai": {
|
|
"optional": true
|
|
},
|
|
"cohere-ai": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.5",
|
|
"@types/express": "^4.17.21",
|
|
"@types/ws": "^8.5.10",
|
|
"typescript": "^5.3.3",
|
|
"tsx": "^4.7.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|