{ "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": {} }