ruvector/npm/packages/graph-node/package.json
rUv 2ea884b307 feat: Add persistence support and Cypher queries to @ruvector/graph-node
- Add persistence support using redb storage backend
- Add GraphDatabase.open() factory method for opening existing databases
- Add isPersistent() and getStoragePath() methods
- Update TypeScript definitions with all new APIs
- Add benchmark suite (131K+ ops/sec batch inserts)
- Add comprehensive test suite with persistence tests
- Add GitHub workflow for multi-platform builds
- Fix sync-lockfile.sh working directory bug
- Publish @ruvector/graph-node@0.1.15 to npm
- Publish @ruvector/graph-node-linux-x64-gnu@0.1.15 to npm

Performance benchmarks:
- Node Creation: 9.17K ops/sec
- Batch Node Creation: 131.10K ops/sec
- Edge Creation: 9.30K ops/sec
- Vector Search (k=10): 2.35K ops/sec
- k-hop Traversal: 10.28K ops/sec

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-27 04:26:50 +00:00

67 lines
1.6 KiB
JSON

{
"name": "@ruvector/graph-node",
"version": "0.1.15",
"description": "Native Node.js bindings for RuVector Graph Database with hypergraph support, Cypher queries, and persistence - 10x faster than WASM",
"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/graph-node"
},
"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-graph-node",
"test": "node test.js",
"benchmark": "node benchmark.js",
"publish:platforms": "node scripts/publish-platforms.js"
},
"devDependencies": {
"@napi-rs/cli": "^2.18.0"
},
"optionalDependencies": {
"@ruvector/graph-node-linux-x64-gnu": "0.1.15",
"@ruvector/graph-node-linux-arm64-gnu": "0.1.15",
"@ruvector/graph-node-darwin-x64": "0.1.15",
"@ruvector/graph-node-darwin-arm64": "0.1.15",
"@ruvector/graph-node-win32-x64-msvc": "0.1.15"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"graph-database",
"graph",
"hypergraph",
"cypher",
"neo4j",
"vector-database",
"graph-query",
"knowledge-graph",
"property-graph",
"native",
"napi",
"rust",
"fast",
"performance",
"zero-copy",
"ai",
"machine-learning",
"rag",
"ruv",
"ruvector"
]
}