ruvector/crates/sona/wasm-example/package.json
rUv 5bad08c6a3 feat(sona): Add SONA self-optimizing neural architecture
Implement complete SONA system with:
- LoRA-Ultra: Adaptive low-rank adaptation for efficient fine-tuning
- Learning Loops: Instant, background, and coordinated learning modes
- EWC++: Enhanced elastic weight consolidation for continual learning
- ReasoningBank: Trajectory storage with verdict-based learning
- WASM bindings for browser deployment
- N-API bindings for Node.js integration
- Comprehensive documentation and benchmarks

New crate: crates/sona with full implementation
Integration: examples/ruvLLM with SONA module
NPM package: npm/packages/sona for JavaScript bindings

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-03 04:36:48 +00:00

20 lines
525 B
JSON

{
"name": "sona-wasm-example",
"version": "0.1.0",
"description": "SONA WASM Example - Self-Optimizing Neural Architecture in the browser",
"type": "module",
"scripts": {
"build": "cd .. && wasm-pack build --target web --features wasm --out-dir wasm-example/pkg",
"serve": "python3 -m http.server 8080",
"dev": "npm run build && npm run serve"
},
"keywords": [
"wasm",
"neural",
"learning",
"lora",
"adaptive"
],
"author": "RuVector Team",
"license": "MIT OR Apache-2.0"
}