62ab84c472
Introduce repo-metadata.toml as single source of truth for repo identity (org slug, maintainer email, canonical URLs) and add sync-metadata.yml workflow with a Python audit script that fails CI if any tracked file drifts back to pre-migration values. Bulk-replace across 24 tracked files: - kingchenc/wickra -> wickra-lib/wickra (URL segment) - kingchencp@gmail.com -> wickra.lib@gmail.com (maintainer email) - @kingchenc -> @wickra-lib (CODEOWNERS mention only) Person-name credits are preserved: LICENSE copyright holder, Cargo.toml authors handle, and CHANGELOG historical @kingchenc reference all remain unchanged. Crate / PyPI / npm package names also untouched. Merge this PR only after the kingchenc/wickra -> wickra-lib/wickra org transfer has happened on the GitHub side, otherwise all badges and repository links 404 until the transfer is performed.
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "wickra",
|
|
"version": "0.2.7",
|
|
"description": "Streaming-first technical indicators: incremental, fast, install-free. Node bindings powered by Rust.",
|
|
"author": "kingchenc <wickra.lib@gmail.com>",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"license": "PolyForm-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.2.7",
|
|
"wickra-linux-arm64-gnu": "0.2.7",
|
|
"wickra-darwin-x64": "0.2.7",
|
|
"wickra-darwin-arm64": "0.2.7",
|
|
"wickra-win32-x64-msvc": "0.2.7",
|
|
"wickra-win32-arm64-msvc": "0.2.7"
|
|
},
|
|
"scripts": {
|
|
"build": "napi build --platform --release",
|
|
"build:debug": "napi build --platform",
|
|
"artifacts": "napi artifacts",
|
|
"universal": "napi universal",
|
|
"version": "napi version",
|
|
"test": "node --test __tests__/"
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^2.18.0"
|
|
}
|
|
}
|