528e5c9174
Pure tooling release on top of 0.1.3. The library code is unchanged; only the release workflow grew a new github-release job that attaches every built artefact to the GitHub Release page so users have direct download links next to the source archives: - Python wheels (5 platforms) + sdist - Native Node bindings (linux-x64-gnu, darwin-x64, darwin-arm64, win32-x64-msvc) - npm-pack tarballs for the main wickra package, every per-platform subpackage, and wickra-wasm - Cargo .crate files for wickra-core, wickra-data, wickra The job runs at the end of the release pipeline and also accepts workflow_dispatch so future asset-only fixups don't require a version bump.
25 lines
576 B
JSON
25 lines
576 B
JSON
{
|
|
"name": "wickra-darwin-arm64",
|
|
"version": "0.1.4",
|
|
"description": "Native binding for wickra (macOS Apple Silicon). Installed automatically as an optional dependency of wickra on matching platforms.",
|
|
"main": "wickra.darwin-arm64.node",
|
|
"files": [
|
|
"wickra.darwin-arm64.node"
|
|
],
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"engines": {
|
|
"node": ">= 16"
|
|
},
|
|
"os": [
|
|
"darwin"
|
|
],
|
|
"cpu": [
|
|
"arm64"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kingchenc/wickra"
|
|
},
|
|
"homepage": "https://github.com/kingchenc/wickra"
|
|
}
|