2d776b6f90
Align the Rust, Python, WASM, Conda, docs, and lockfile version markers to 1.0.6 so the published artifacts and release automation agree on a single release number. Add a proper 1.0.6 changelog entry in both CHANGELOG.md and the docs release notes, covering the pre-push gate, expanded Rust and WASM surface, benchmark refresh, and CI hardening work shipped since v1.0.4. Validate the release preparation with the repo-managed pre-push suite so version, changelog, Rust, Python, docs, WASM, and API-manifest checks all pass before tagging.
27 lines
832 B
JSON
27 lines
832 B
JSON
{
|
|
"name": "ferro-ta-wasm",
|
|
"version": "1.0.6",
|
|
"description": "WebAssembly bindings for ferro-ta technical analysis indicators",
|
|
"main": "pkg/ferro_ta_wasm.js",
|
|
"types": "pkg/ferro_ta_wasm.d.ts",
|
|
"files": ["pkg"],
|
|
"scripts": {
|
|
"build": "wasm-pack build --target nodejs --out-dir pkg",
|
|
"bench": "node bench.js",
|
|
"prepack": "npm run build && node -e \"require('fs').rmSync('pkg/.gitignore', { force: true })\"",
|
|
"test": "wasm-pack test --node"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/pratikbhadane24/ferro-ta.git",
|
|
"directory": "wasm"
|
|
},
|
|
"homepage": "https://github.com/pratikbhadane24/ferro-ta#readme",
|
|
"bugs": "https://github.com/pratikbhadane24/ferro-ta/issues",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {}
|
|
}
|