mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-23 04:27:11 +00:00
- @ruvector/raft: Raft consensus implementation for distributed systems - Leader election and log replication - Fault-tolerant state machine - Configurable election timeouts and heartbeats - @ruvector/replication: Data replication and synchronization - Multi-node replica sets with primary/secondary roles - Vector clocks for conflict detection - Sync modes: synchronous, asynchronous, semi-sync - Automatic failover with configurable policies - @ruvector/scipix: OCR client for scientific documents - LaTeX and MathML extraction from equations - Batch processing support - Multiple output formats (LaTeX, MathML, AsciiMath, Text) All packages built with TypeScript, fully typed, ready for npm publish. Co-authored-by: Reuven <cohen@ruv-mac-mini.local> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "@ruvector/replication",
|
|
"version": "0.1.0",
|
|
"description": "Data replication and synchronization - multi-node replicas, conflict resolution with vector clocks, change data capture, and automatic failover",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "node --test test/*.test.js",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.19.30",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"eventemitter3": "^5.0.4"
|
|
},
|
|
"keywords": [
|
|
"replication",
|
|
"synchronization",
|
|
"distributed-systems",
|
|
"conflict-resolution",
|
|
"vector-clock",
|
|
"crdt",
|
|
"change-data-capture",
|
|
"failover",
|
|
"high-availability",
|
|
"ruvector"
|
|
],
|
|
"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/replication"
|
|
},
|
|
"homepage": "https://github.com/ruvnet/ruvector/tree/main/crates/ruvector-replication",
|
|
"bugs": {
|
|
"url": "https://github.com/ruvnet/ruvector/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">= 18"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
]
|
|
}
|