2f3a0b9149
Release 0.4.4. Version bump only — no code changes. Ships the 40 TA-Lib candlestick patterns (parts 2–9, #132–#141, 249 → 289 indicators) plus the candlestick rejection- guard coverage tests (#142) that landed on `main` since 0.4.3. Bumped: workspace `Cargo.toml` (+ `wickra-core` dep) and `Cargo.lock`, `bindings/python/pyproject.toml`, `bindings/node/package.json` (+ 6 platform `optionalDependencies`), the 6 `bindings/node/npm/*/package.json`, both `package-lock.json` files, and `CHANGELOG.md` ([Unreleased] → [0.4.4]).
70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"name": "wickra",
|
|
"version": "0.4.4",
|
|
"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.4",
|
|
"wickra-linux-arm64-gnu": "0.4.4",
|
|
"wickra-darwin-x64": "0.4.4",
|
|
"wickra-darwin-arm64": "0.4.4",
|
|
"wickra-win32-x64-msvc": "0.4.4",
|
|
"wickra-win32-arm64-msvc": "0.4.4"
|
|
},
|
|
"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"
|
|
}
|
|
}
|