mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-06-01 14:39:33 +00:00
Published WASM and infrastructure packages: - @ruvector/wasm@0.1.16 - Core WASM bindings - @ruvector/gnn-wasm@0.1.0 - GNN WASM bindings - @ruvector/graph-wasm@0.1.0 - Graph WASM bindings - @ruvector/attention-wasm@0.1.0 - Attention WASM bindings - @ruvector/tiny-dancer-wasm@0.1.0 - AI routing WASM - @ruvector/router-wasm@0.1.0 - Semantic router WASM - @ruvector/cluster@0.1.0 - Distributed clustering - @ruvector/server@0.1.0 - HTTP/gRPC server 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "@ruvector/attention-wasm",
|
|
"version": "0.1.0",
|
|
"description": "WebAssembly bindings for ruvector-attention - high-performance attention mechanisms",
|
|
"main": "pkg/ruvector_attention_wasm.js",
|
|
"types": "js/index.ts",
|
|
"files": [
|
|
"pkg/",
|
|
"js/"
|
|
],
|
|
"scripts": {
|
|
"build": "wasm-pack build --target web --out-dir pkg",
|
|
"build:node": "wasm-pack build --target nodejs --out-dir pkg-node",
|
|
"build:bundler": "wasm-pack build --target bundler --out-dir pkg-bundler",
|
|
"build:all": "npm run build && npm run build:node && npm run build:bundler",
|
|
"test": "wasm-pack test --headless --firefox",
|
|
"test:chrome": "wasm-pack test --headless --chrome",
|
|
"clean": "rm -rf pkg pkg-node pkg-bundler target"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/ruvector"
|
|
},
|
|
"keywords": [
|
|
"wasm",
|
|
"webassembly",
|
|
"attention",
|
|
"transformer",
|
|
"machine-learning",
|
|
"neural-networks",
|
|
"hyperbolic",
|
|
"moe",
|
|
"flash-attention"
|
|
],
|
|
"author": "rUv",
|
|
"license": "MIT OR Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/ruvnet/ruvector/issues"
|
|
},
|
|
"homepage": "https://ruv.io/ruvector",
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|