mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 23:24:03 +00:00
* fix(cli): correct field name mismatch in create and benchmark commands The CLI passed `dimension` (singular) but the native NAPI binding expects `dimensions` (plural). Also fix `db.save()` call which doesn't exist on VectorDBWrapper — use `storagePath` constructor option instead. Fixes #307 Co-Authored-By: claude-flow <ruv@ruv.net> * docs: add TurboQuant to README capabilities and comparison tables Co-Authored-By: claude-flow <ruv@ruv.net> * docs(npm): update ruvector npm package for v2.1 SOTA features - Add v2.1 section with FlashAttention-3, Graph RAG, hybrid search, DiskANN, ColBERT, Matryoshka, MLA, Mamba SSM, TurboQuant, OPQ, GraphMAE - Update description to highlight hybrid retrieval and Graph RAG - Add keywords: graph-rag, diskann, hybrid-search, colbert, turboquant, mamba - Bump version to 0.2.19 Co-Authored-By: claude-flow <ruv@ruv.net> * feat(ruvllm): update npm package with TurboQuant docs and SEO keywords - Add TurboQuant KV-cache compression section (2-4 bit, 6-8x savings) - Update description and add v2.5 feature table - Add SEO keywords: turboquant, kv-cache, quantization, flash-attention, speculative-decoding, gguf, mamba, edge-ai, local-llm, model-compression - Bump to v2.5.4, publish ruvllm crate to 2.1.0 Co-Authored-By: claude-flow <ruv@ruv.net>
133 lines
3.3 KiB
JSON
133 lines
3.3 KiB
JSON
{
|
|
"name": "@ruvector/ruvllm",
|
|
"version": "2.5.4",
|
|
"description": "Self-learning LLM runtime — TurboQuant KV-cache (6-8x compression), SONA adaptive learning, FlashAttention, speculative decoding, GGUF inference",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"types": "dist/cjs/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/esm/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/cjs/index.d.ts",
|
|
"default": "./dist/cjs/index.js"
|
|
}
|
|
},
|
|
"./simd": {
|
|
"import": {
|
|
"types": "./dist/esm/simd.d.ts",
|
|
"default": "./dist/esm/simd.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/cjs/simd.d.ts",
|
|
"default": "./dist/cjs/simd.js"
|
|
}
|
|
}
|
|
},
|
|
"bin": {
|
|
"ruvllm": "./bin/cli.js"
|
|
},
|
|
"napi": {
|
|
"binaryName": "ruvllm",
|
|
"targets": [
|
|
"x86_64-unknown-linux-gnu",
|
|
"aarch64-unknown-linux-gnu",
|
|
"x86_64-apple-darwin",
|
|
"aarch64-apple-darwin",
|
|
"x86_64-pc-windows-msvc"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"artifacts": "napi artifacts",
|
|
"build": "npm run build:cjs && npm run build:esm",
|
|
"build:cjs": "tsc",
|
|
"build:esm": "tsc -p tsconfig.esm.json",
|
|
"build:native": "napi build --platform --release -p ruvllm --manifest-path ../../../examples/ruvLLM/Cargo.toml -F napi",
|
|
"build:debug": "napi build --platform -p ruvllm --manifest-path ../../../examples/ruvLLM/Cargo.toml -F napi",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "node --test test/*.test.js",
|
|
"universal": "napi universal",
|
|
"version": "napi version",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^2.18.0",
|
|
"@types/node": "^20.10.5",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.1.2",
|
|
"commander": "^12.0.0",
|
|
"ora": "^5.4.1"
|
|
},
|
|
"optionalDependencies": {
|
|
"@ruvector/ruvllm-linux-x64-gnu": "2.3.0",
|
|
"@ruvector/ruvllm-linux-arm64-gnu": "2.3.0",
|
|
"@ruvector/ruvllm-darwin-x64": "2.3.0",
|
|
"@ruvector/ruvllm-darwin-arm64": "2.3.0",
|
|
"@ruvector/ruvllm-win32-x64-msvc": "2.3.0"
|
|
},
|
|
"keywords": [
|
|
"ruvllm",
|
|
"llm",
|
|
"self-learning",
|
|
"adaptive-learning",
|
|
"sona",
|
|
"lora",
|
|
"ewc",
|
|
"hnsw",
|
|
"vector-database",
|
|
"fastgrnn",
|
|
"router",
|
|
"simd",
|
|
"inference",
|
|
"federated-learning",
|
|
"continual-learning",
|
|
"machine-learning",
|
|
"ai",
|
|
"deep-learning",
|
|
"napi",
|
|
"rust",
|
|
"ruvector",
|
|
"turboquant",
|
|
"kv-cache",
|
|
"quantization",
|
|
"flash-attention",
|
|
"speculative-decoding",
|
|
"gguf",
|
|
"mamba",
|
|
"transformer",
|
|
"edge-ai",
|
|
"local-llm",
|
|
"model-compression"
|
|
],
|
|
"author": "rUv Team <team@ruv.io>",
|
|
"license": "MIT OR Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/ruvector.git",
|
|
"directory": "npm/packages/ruvllm"
|
|
},
|
|
"homepage": "https://github.com/ruvnet/ruvector/tree/main/examples/ruvLLM",
|
|
"bugs": {
|
|
"url": "https://github.com/ruvnet/ruvector/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">= 18"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"scripts",
|
|
"*.node",
|
|
"README.md"
|
|
]
|
|
}
|