mirror of
https://github.com/ruvnet/RuView
synced 2026-08-08 20:11:43 +00:00
feat: vendor midstream and sublinear-time-solver libraries
Add ruvnet/midstream (AIMDS real-time inference) and ruvnet/sublinear-time-solver (sublinear optimization algorithms) as vendored dependencies under vendor/. Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
Vendored
+56
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"name": "temporal-neural-solver",
|
||||
"version": "1.0.0",
|
||||
"description": "Ultra-fast temporal neural network solver with <40ns P99.9 latency",
|
||||
"main": "index.js",
|
||||
"bin": {
|
||||
"temporal-solver": "./bin/temporal-solver"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run build:rust && npm run build:wasm",
|
||||
"build:rust": "RUSTFLAGS='-C target-cpu=native -C target-feature=+avx2' cargo build --release",
|
||||
"build:wasm": "wasm-pack build --target nodejs --out-dir pkg",
|
||||
"test": "cargo test --release",
|
||||
"bench": "cargo run --release --bin benchmark",
|
||||
"install": "npm run build:rust",
|
||||
"prepublishOnly": "npm run build"
|
||||
},
|
||||
"keywords": [
|
||||
"neural-network",
|
||||
"temporal-solver",
|
||||
"sublinear",
|
||||
"high-performance",
|
||||
"avx2",
|
||||
"int8",
|
||||
"rust",
|
||||
"wasm"
|
||||
],
|
||||
"author": "Temporal Solver Team",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/yourusername/temporal-neural-solver"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
},
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"os": [
|
||||
"linux",
|
||||
"darwin",
|
||||
"win32"
|
||||
],
|
||||
"files": [
|
||||
"bin/",
|
||||
"pkg/",
|
||||
"index.js",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.0.0"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
Reference in New Issue
Block a user