mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 05:43:58 +00:00
Add ruvector-graph-transformer crate with 8 feature-gated modules, each backed by an Architecture Decision Record (ADR-046 through ADR-055): - Proof-gated mutation: ProofGate<T>, MutationLedger, ProofScope, EpochBoundary - Sublinear attention: O(n log n) via LSH buckets, PPR sampling, spectral sparsification - Physics-informed: Hamiltonian dynamics, gauge equivariant MP, Lagrangian attention - Biological: Spiking networks, Hebbian/STDP learning, dendritic branching - Self-organizing: Morphogenetic fields, developmental programs, graph coarsening - Verified training: Certificates, delta-apply rollback, fail-closed invariants - Manifold: Product manifolds S^n x H^m x R^k, Riemannian Adam, Lie groups - Temporal-causal: Causal masking, Granger causality, continuous-time ODE - Economic: Nash equilibrium attention, Shapley attribution, incentive-aligned MPNN Includes: - 186 tests (163 unit + 23 integration), all passing - WASM bindings (ruvector-graph-transformer-wasm) - published to crates.io - Node.js NAPI-RS bindings (@ruvector/graph-transformer) - published to npm - CI workflow for cross-platform binary builds (7 platforms) - 10 ADRs (046-055) + 22 research documents - Fix for #195: add commit-binaries job to build-gnn.yml - Updated root README with graph transformer section Published: - crates.io: ruvector-graph-transformer v2.0.4 - crates.io: ruvector-graph-transformer-wasm v2.0.4 - npm: @ruvector/graph-transformer v2.0.4 - npm: @ruvector/graph-transformer-linux-x64-gnu v2.0.4 Co-Authored-By: claude-flow <ruv@ruv.net>
65 lines
No EOL
1.8 KiB
JSON
65 lines
No EOL
1.8 KiB
JSON
{
|
|
"name": "@ruvector/graph-transformer",
|
|
"version": "2.0.4",
|
|
"description": "Proof-gated graph transformer with 8 verified modules — physics, biological, manifold, temporal, economic graph intelligence via NAPI-RS",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"napi": {
|
|
"name": "ruvector-graph-transformer",
|
|
"triples": {
|
|
"defaults": false,
|
|
"additional": [
|
|
"x86_64-unknown-linux-gnu",
|
|
"x86_64-unknown-linux-musl",
|
|
"aarch64-unknown-linux-gnu",
|
|
"aarch64-unknown-linux-musl",
|
|
"x86_64-apple-darwin",
|
|
"aarch64-apple-darwin",
|
|
"x86_64-pc-windows-msvc"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"artifacts": "napi artifacts",
|
|
"build": "napi build --platform --release",
|
|
"build:debug": "napi build --platform",
|
|
"prepublishOnly": "napi prepublish -t npm",
|
|
"test": "cargo test -p ruvector-graph-transformer-node",
|
|
"version": "napi version"
|
|
},
|
|
"keywords": [
|
|
"ruvector",
|
|
"graph-transformer",
|
|
"proof-gated",
|
|
"attention",
|
|
"verified-training",
|
|
"gnn",
|
|
"graph-neural-network",
|
|
"napi-rs"
|
|
],
|
|
"author": "Ruvector Team",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/ruvector"
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^2.16.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "public"
|
|
},
|
|
"optionalDependencies": {
|
|
"@ruvector/graph-transformer-linux-x64-gnu": "2.0.4",
|
|
"@ruvector/graph-transformer-linux-x64-musl": "2.0.4",
|
|
"@ruvector/graph-transformer-linux-arm64-gnu": "2.0.4",
|
|
"@ruvector/graph-transformer-linux-arm64-musl": "2.0.4",
|
|
"@ruvector/graph-transformer-darwin-x64": "2.0.4",
|
|
"@ruvector/graph-transformer-darwin-arm64": "2.0.4",
|
|
"@ruvector/graph-transformer-win32-x64-msvc": "2.0.4"
|
|
}
|
|
} |