82d1a4fe77
Routine patch release. Ships the **19 TA-Lib parity indicators** (DM components, price transforms, ROC ratio forms, LinReg intercept / TSF, MACDFIX / MACDEXT / SAREXT, Hilbert phasor / DC-phase / trend-mode) added in #148, with the cold-path coverage fix from #150 — indicator count **314**, repo back at 100%. Version strings bumped `0.4.5 -> 0.4.6` across: - `Cargo.toml` (workspace + `wickra-core` dep), `Cargo.lock` - `bindings/python/pyproject.toml` - `bindings/node/package.json` (+ 6 optional platform deps) and the 6 `npm/<platform>/package.json` - `bindings/node/package-lock.json`, `examples/node/package-lock.json` - `CHANGELOG.md` — `[Unreleased]` rolled into `[0.4.6] - 2026-06-03` with refreshed compare links No code changes. `fmt` / `clippy --workspace -D warnings` green locally.
70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"name": "wickra",
|
|
"version": "0.4.6",
|
|
"description": "Streaming-first technical indicators: incremental, fast, install-free. Node bindings powered by Rust.",
|
|
"author": "kingchenc <support@wickra.org>",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"license": "LicenseRef-Wickra-Noncommercial-1.0.0",
|
|
"keywords": [
|
|
"trading",
|
|
"indicators",
|
|
"technical-analysis",
|
|
"ta-lib",
|
|
"finance",
|
|
"streaming",
|
|
"rust"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/wickra-lib/wickra"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/wickra-lib/wickra/issues"
|
|
},
|
|
"homepage": "https://github.com/wickra-lib/wickra",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"npm",
|
|
"*.node"
|
|
],
|
|
"napi": {
|
|
"name": "wickra",
|
|
"triples": {
|
|
"defaults": false,
|
|
"additional": [
|
|
"x86_64-unknown-linux-gnu",
|
|
"aarch64-unknown-linux-gnu",
|
|
"x86_64-apple-darwin",
|
|
"aarch64-apple-darwin",
|
|
"x86_64-pc-windows-msvc",
|
|
"aarch64-pc-windows-msvc"
|
|
]
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">= 18"
|
|
},
|
|
"optionalDependencies": {
|
|
"wickra-linux-x64-gnu": "0.4.6",
|
|
"wickra-linux-arm64-gnu": "0.4.6",
|
|
"wickra-darwin-x64": "0.4.6",
|
|
"wickra-darwin-arm64": "0.4.6",
|
|
"wickra-win32-x64-msvc": "0.4.6",
|
|
"wickra-win32-arm64-msvc": "0.4.6"
|
|
},
|
|
"scripts": {
|
|
"build": "napi build --platform --release",
|
|
"build:debug": "napi build --platform",
|
|
"artifacts": "napi artifacts",
|
|
"universal": "napi universal",
|
|
"version": "napi version",
|
|
"test": "node --test __tests__/",
|
|
"bench": "node benchmarks/throughput.js"
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^2.18.0"
|
|
}
|
|
}
|