ruvector/npm/packages/core/package.json
rUv 4358dbfa10 feat: comprehensive ruvector updates - analysis, workers, dashboard enhancements
Analysis module:
- Add complexity analysis (cyclomatic, cognitive, Halstead metrics)
- Add security scanning (SQL injection, XSS, command injection detection)
- Add pattern detection (code smells, design patterns)

Workers module:
- Add native worker implementation for parallel processing
- Add benchmark worker for performance testing
- Add worker type definitions

Core improvements:
- Add adaptive embedder with dynamic model selection
- Add ONNX optimized embeddings with caching
- Update intelligence engine with enhanced learning
- Update parallel workers with better concurrency

Dashboard enhancements:
- Add relay client service for Edge-Net communication
- Update network stats and specialized networks components
- Update network store with improved state management
- Update type definitions

Configuration:
- Add custom workers skill
- Add agentic-flow and ruvector fast scripts
- Update settings and gitignore

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 14:43:06 +00:00

68 lines
1.6 KiB
JSON

{
"name": "@ruvector/core",
"version": "0.1.30",
"description": "High-performance vector database with HNSW indexing - 50k+ inserts/sec, built in Rust for AI/ML similarity search and semantic search applications",
"main": "index.js",
"types": "index.d.ts",
"author": "ruv.io Team <info@ruv.io> (https://ruv.io)",
"homepage": "https://ruv.io",
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/ruvector.git",
"directory": "npm/packages/core"
},
"bugs": {
"url": "https://github.com/ruvnet/ruvector/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"index.d.ts",
"README.md"
],
"scripts": {
"build:napi": "napi build --platform --release --cargo-cwd ../../../crates/ruvector-node",
"test": "node test.js",
"publish:platforms": "node scripts/publish-platforms.js"
},
"devDependencies": {
"@napi-rs/cli": "^2.18.0"
},
"optionalDependencies": {
"ruvector-core-linux-x64-gnu": "0.1.29",
"ruvector-core-linux-arm64-gnu": "0.1.29",
"ruvector-core-darwin-x64": "0.1.29",
"ruvector-core-darwin-arm64": "0.1.29",
"ruvector-core-win32-x64-msvc": "0.1.29"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"vector-database",
"vector-search",
"similarity-search",
"semantic-search",
"hnsw",
"ann",
"approximate-nearest-neighbor",
"embedding-database",
"ai",
"machine-learning",
"ml",
"llm",
"rag",
"retrieval-augmented-generation",
"native",
"napi",
"rust",
"simd",
"fast",
"performance",
"ruv",
"ruvector"
]
}