45c11da4fc
* release: bump 0.9.8 -> 0.9.9 * ci(lychee): exclude the CHANGELOG version-compare links The CHANGELOG compare URLs point at the release tag created *after* the bump is merged; ci.yml runs on push/PR (never on the tag), so the tag never exists when lychee runs and 'compare/vX...vY' / 'compare/vY...HEAD' 404. Excluded by the same pattern mechanism already used for the crates.io / npm package URLs — one pattern covers every future version, no per-release change needed.
70 lines
1.6 KiB
JSON
70 lines
1.6 KiB
JSON
{
|
|
"name": "wickra",
|
|
"version": "0.9.9",
|
|
"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": "MIT OR Apache-2.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": ">= 22"
|
|
},
|
|
"optionalDependencies": {
|
|
"wickra-linux-x64-gnu": "0.9.9",
|
|
"wickra-linux-arm64-gnu": "0.9.9",
|
|
"wickra-darwin-x64": "0.9.9",
|
|
"wickra-darwin-arm64": "0.9.9",
|
|
"wickra-win32-x64-msvc": "0.9.9",
|
|
"wickra-win32-arm64-msvc": "0.9.9"
|
|
},
|
|
"scripts": {
|
|
"build": "napi build --platform --release",
|
|
"build:debug": "napi build --platform",
|
|
"artifacts": "napi artifacts",
|
|
"universal": "napi universal",
|
|
"version": "napi version",
|
|
"test": "node --test",
|
|
"bench": "node benchmarks/throughput.js"
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^3.7.2"
|
|
}
|
|
}
|