mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 13:54:31 +00:00
New features exposed to Node.js: - CollectionManager: Multi-collection support with aliases - getMetrics(): Prometheus metrics endpoint - getHealth(): Health status with uptime tracking - Filter: Metadata-based search filtering Updates: - Rebuilt Linux x64 and ARM64 binaries with new features - Updated all package versions to 0.1.15 - Enhanced TypeScript definitions with new interfaces - Added commit-binaries job to CI workflow - Fixed macos-15-intel -> macos-13 in CI matrix - Added build scripts in scripts/build/ Note: macOS and Windows binaries will be built by CI 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "@ruvector/core",
|
|
"version": "0.1.15",
|
|
"description": "High-performance Rust vector database for Node.js with HNSW indexing and SIMD optimizations",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">= 18"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build:esm && npm run build:cjs && npm run build:rename-cjs",
|
|
"build:esm": "tsc --project tsconfig.json",
|
|
"build:cjs": "tsc --project tsconfig.cjs.json",
|
|
"build:rename-cjs": "mv dist-cjs/index.cjs.js dist/index.cjs && rm -rf dist-cjs",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "node --test",
|
|
"clean": "rm -rf dist dist-cjs"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.19.25",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"platforms",
|
|
"native",
|
|
"*.node",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"keywords": [
|
|
"vector",
|
|
"database",
|
|
"embeddings",
|
|
"similarity-search",
|
|
"hnsw",
|
|
"rust",
|
|
"napi",
|
|
"semantic-search",
|
|
"machine-learning",
|
|
"rag",
|
|
"simd",
|
|
"performance",
|
|
"napi-rs"
|
|
],
|
|
"author": "rUv",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/ruvector.git",
|
|
"directory": "npm/core"
|
|
},
|
|
"homepage": "https://github.com/ruvnet/ruvector#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/ruvnet/ruvector/issues"
|
|
}
|
|
}
|