wickra 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <a href="https://wickra.org"><img src="https://wickra.org/og-banner.webp" alt="Wickra — streaming-first technical indicators" width="100%"></a>
2
+ <a href="https://wickra.org"><img src="https://raw.githubusercontent.com/wickra-lib/.github/main/profile/wickra-banner.webp?v=227" alt="Wickra — streaming-first technical indicators" width="100%"></a>
3
3
  </p>
4
4
 
5
5
  [![CI](https://github.com/wickra-lib/wickra/actions/workflows/ci.yml/badge.svg)](https://github.com/wickra-lib/wickra/actions/workflows/ci.yml)
@@ -47,7 +47,7 @@ Full documentation lives at **[docs.wickra.org](https://docs.wickra.org)**:
47
47
  [Node](https://docs.wickra.org/Quickstart-Node),
48
48
  [WASM](https://docs.wickra.org/Quickstart-WASM).
49
49
  - **Indicators** — a per-indicator deep dive (formula, parameters, warmup) for
50
- every one of the 219 indicators; start at the
50
+ every one of the 227 indicators; start at the
51
51
  [indicators overview](https://docs.wickra.org/Indicators-Overview).
52
52
  - **Reference** — [warmup periods](https://docs.wickra.org/Warmup-Periods),
53
53
  [streaming vs batch](https://docs.wickra.org/Streaming-vs-Batch),
@@ -135,7 +135,7 @@ python -m benchmarks.compare_libraries
135
135
 
136
136
  ## Indicators
137
137
 
138
- 219 streaming-first indicators across sixteen families. Every one passes the
138
+ 227 streaming-first indicators across seventeen families. Every one passes the
139
139
  `batch == streaming` equivalence test, reference-value tests, and reset
140
140
  semantics tests. Each has a per-indicator deep dive (formula, parameters,
141
141
  warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
@@ -156,9 +156,16 @@ warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
156
156
  | DeMark | TD Setup, TD Sequential, TD DeMarker, TD REI, TD Pressure, TD Combo, TD Countdown, TD Lines, TD Range Projection, TD Differential, TD Open, TD Risk Level |
157
157
  | Ichimoku & Charts | Ichimoku Kinko Hyo (Tenkan, Kijun, Senkou A/B, Chikou), Heikin-Ashi |
158
158
  | Candlestick Patterns | Doji, Hammer, Inverted Hammer, Hanging Man, Shooting Star, Engulfing, Harami, Morning/Evening Star, Three White Soldiers/Black Crows, Piercing Line/Dark Cloud Cover, Marubozu, Tweezer, Spinning Top, Three Inside Up/Down, Three Outside Up/Down |
159
+ | Microstructure | Order-Book Imbalance (Top-1 / Top-N / Full), Microprice, Quoted Spread, Signed Volume, Cumulative Volume Delta, Trade Imbalance |
159
160
  | Market Profile | Value Area (POC / VAH / VAL), Initial Balance, Opening Range |
160
161
  | Risk / Performance | Sharpe Ratio, Sortino Ratio, Calmar Ratio, Omega Ratio, Max Drawdown, Average Drawdown, Drawdown Duration, Pain Index, Value at Risk, Conditional Value at Risk (CVaR), Profit Factor, Gain/Loss Ratio, Recovery Factor, Kelly Criterion, Treynor Ratio, Information Ratio, Alpha (Jensen) |
161
162
 
163
+ Every candlestick pattern emits a signed per-bar value — `+1.0` bullish,
164
+ `−1.0` bearish, `0.0` none — so the family drops straight into a feature matrix
165
+ as one column each. `Doji` is direction-less by default (`+1.0` / `0.0`);
166
+ construct it in signed mode (`Doji::new().signed()`, `Doji(signed=True)`,
167
+ `new Doji(true)`) for a dragonfly / gravestone `±1` reading.
168
+
162
169
  Adding a new indicator means implementing one trait in Rust; all four bindings
163
170
  inherit it automatically.
164
171
 
@@ -230,7 +237,7 @@ A Python live-trading example using the public `websockets` package lives at
230
237
  ```
231
238
  wickra/
232
239
  ├── crates/
233
- │ ├── wickra-core/ core engine + all 219 indicators
240
+ │ ├── wickra-core/ core engine + all 227 indicators
234
241
  │ ├── wickra/ top-level facade crate (publishes on crates.io) + benches/
235
242
  │ └── wickra-data/ CSV reader, tick aggregator, live exchange feeds
236
243
  ├── bindings/
package/index.d.ts CHANGED
@@ -279,6 +279,13 @@ export interface OpeningRangeValue {
279
279
  low: number
280
280
  breakoutDistance: number
281
281
  }
282
+ /** One order-book depth snapshot for batch evaluation. */
283
+ export interface ObSnapshot {
284
+ bidPx: Array<number>
285
+ bidSz: Array<number>
286
+ askPx: Array<number>
287
+ askSz: Array<number>
288
+ }
282
289
  export type SmaNode = SMA
283
290
  export declare class SMA {
284
291
  constructor(period: number)
@@ -2055,12 +2062,13 @@ export declare class OpeningRange {
2055
2062
  }
2056
2063
  export type DojiNode = Doji
2057
2064
  export declare class Doji {
2058
- constructor()
2065
+ constructor(signed?: boolean | undefined | null)
2059
2066
  update(open: number, high: number, low: number, close: number): number | null
2060
2067
  batch(open: Array<number>, high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
2061
2068
  reset(): void
2062
2069
  isReady(): boolean
2063
2070
  warmupPeriod(): number
2071
+ isSigned(): boolean
2064
2072
  }
2065
2073
  export type HammerNode = Hammer
2066
2074
  export declare class Hammer {
@@ -2188,6 +2196,78 @@ export declare class ThreeOutside {
2188
2196
  isReady(): boolean
2189
2197
  warmupPeriod(): number
2190
2198
  }
2199
+ export type OrderBookImbalanceTop1Node = OrderBookImbalanceTop1
2200
+ export declare class OrderBookImbalanceTop1 {
2201
+ constructor()
2202
+ update(bidPx: Array<number>, bidSz: Array<number>, askPx: Array<number>, askSz: Array<number>): number | null
2203
+ batch(snapshots: Array<ObSnapshot>): Array<number>
2204
+ reset(): void
2205
+ isReady(): boolean
2206
+ warmupPeriod(): number
2207
+ }
2208
+ export type OrderBookImbalanceFullNode = OrderBookImbalanceFull
2209
+ export declare class OrderBookImbalanceFull {
2210
+ constructor()
2211
+ update(bidPx: Array<number>, bidSz: Array<number>, askPx: Array<number>, askSz: Array<number>): number | null
2212
+ batch(snapshots: Array<ObSnapshot>): Array<number>
2213
+ reset(): void
2214
+ isReady(): boolean
2215
+ warmupPeriod(): number
2216
+ }
2217
+ export type MicropriceNode = Microprice
2218
+ export declare class Microprice {
2219
+ constructor()
2220
+ update(bidPx: Array<number>, bidSz: Array<number>, askPx: Array<number>, askSz: Array<number>): number | null
2221
+ batch(snapshots: Array<ObSnapshot>): Array<number>
2222
+ reset(): void
2223
+ isReady(): boolean
2224
+ warmupPeriod(): number
2225
+ }
2226
+ export type QuotedSpreadNode = QuotedSpread
2227
+ export declare class QuotedSpread {
2228
+ constructor()
2229
+ update(bidPx: Array<number>, bidSz: Array<number>, askPx: Array<number>, askSz: Array<number>): number | null
2230
+ batch(snapshots: Array<ObSnapshot>): Array<number>
2231
+ reset(): void
2232
+ isReady(): boolean
2233
+ warmupPeriod(): number
2234
+ }
2235
+ export type OrderBookImbalanceTopNNode = OrderBookImbalanceTopN
2236
+ export declare class OrderBookImbalanceTopN {
2237
+ constructor(levels: number)
2238
+ update(bidPx: Array<number>, bidSz: Array<number>, askPx: Array<number>, askSz: Array<number>): number | null
2239
+ batch(snapshots: Array<ObSnapshot>): Array<number>
2240
+ reset(): void
2241
+ isReady(): boolean
2242
+ warmupPeriod(): number
2243
+ }
2244
+ export type SignedVolumeNode = SignedVolume
2245
+ export declare class SignedVolume {
2246
+ constructor()
2247
+ update(price: number, size: number, isBuy: boolean): number | null
2248
+ batch(price: Array<number>, size: Array<number>, isBuy: Array<boolean>): Array<number>
2249
+ reset(): void
2250
+ isReady(): boolean
2251
+ warmupPeriod(): number
2252
+ }
2253
+ export type CumulativeVolumeDeltaNode = CumulativeVolumeDelta
2254
+ export declare class CumulativeVolumeDelta {
2255
+ constructor()
2256
+ update(price: number, size: number, isBuy: boolean): number | null
2257
+ batch(price: Array<number>, size: Array<number>, isBuy: Array<boolean>): Array<number>
2258
+ reset(): void
2259
+ isReady(): boolean
2260
+ warmupPeriod(): number
2261
+ }
2262
+ export type TradeImbalanceNode = TradeImbalance
2263
+ export declare class TradeImbalance {
2264
+ constructor(window: number)
2265
+ update(price: number, size: number, isBuy: boolean): number | null
2266
+ batch(price: Array<number>, size: Array<number>, isBuy: Array<boolean>): Array<number>
2267
+ reset(): void
2268
+ isReady(): boolean
2269
+ warmupPeriod(): number
2270
+ }
2191
2271
  export type SharpeRatioNode = SharpeRatio
2192
2272
  export declare class SharpeRatio {
2193
2273
  constructor(period: number, riskFree: number)
package/index.js CHANGED
@@ -310,7 +310,7 @@ if (!nativeBinding) {
310
310
  throw new Error(`Failed to load native binding`)
311
311
  }
312
312
 
313
- const { version, SMA, EMA, WMA, RSI, DEMA, TEMA, HMA, ROC, TRIX, SMMA, TRIMA, ZLEMA, MOM, CMO, DPO, StdDev, UlcerIndex, VerticalHorizontalFilter, ZScore, McGinleyDynamic, FRAMA, SuperSmoother, FisherTransform, Decycler, CenterOfGravity, CyberneticCycle, InstantaneousTrendline, EhlersStochastic, RVIVolatility, Variance, CoefficientOfVariation, Skewness, Kurtosis, StandardError, DetrendedStdDev, RSquared, MedianAbsoluteDeviation, Autocorrelation, HurstExponent, PearsonCorrelation, Beta, PairwiseBeta, SpearmanCorrelation, PairSpreadZScore, LeadLagCrossCorrelation, Cointegration, RelativeStrengthAB, MACD, BollingerBands, ATR, Stochastic, OBV, ADX, ADXR, CCI, WilliamsR, MFI, PSAR, Keltner, Donchian, VWAP, RollingVWAP, AwesomeOscillator, Aroon, Inertia, ConnorsRSI, LaguerreRSI, SMI, KST, PGO, RVI, AwesomeOscillatorHistogram, STC, ElderImpulse, ZeroLagMACD, CFO, APO, KAMA, EVWMA, Alligator, JMA, VIDYA, ALMA, T3, TSI, PMO, TII, ADL, VolumePriceTrend, ChaikinMoneyFlow, ChaikinOscillator, ForceIndex, NVI, PVI, VolumeOscillator, KVO, WilliamsAD, AnchoredVWAP, DemandIndex, TSV, VZO, MarketFacilitationIndex, EaseOfMovement, SuperTrend, ChandelierExit, ChandeKrollStop, AtrTrailingStop, HiLoActivator, VoltyStop, YoyoExit, DonchianStop, PercentageTrailingStop, StepTrailingStop, RenkoTrailingStop, TypicalPrice, MedianPrice, WeightedClose, LinearRegression, LinRegSlope, AcceleratorOscillator, BalanceOfPower, ChoppinessIndex, TrueRange, ChaikinVolatility, YangZhangVolatility, RogersSatchellVolatility, GarmanKlassVolatility, ParkinsonVolatility, LinRegAngle, BollingerBandwidth, PercentB, NATR, HistoricalVolatility, AroonOscillator, WaveTrend, RWI, Vortex, MassIndex, StochRSI, UltimateOscillator, PPO, Coppock, VWMA, MaEnvelope, AccelerationBands, StarcBands, AtrBands, HurstChannel, LinRegChannel, StandardErrorBands, DoubleBollinger, TtmSqueeze, FractalChaosBands, VwapStdDevBands, ClassicPivots, FibonacciPivots, Camarilla, WoodiePivots, DemarkPivots, WilliamsFractals, ZigZag, TDSetup, TDSequential, TDDeMarker, TDREI, TDPressure, TDCombo, TDCountdown, TDLines, TDRangeProjection, TDDifferential, TDOpen, TDRiskLevel, InverseFisherTransform, DecyclerOscillator, RoofingFilter, EmpiricalModeDecomposition, HilbertDominantCycle, AdaptiveCycle, SineWave, MAMA, FAMA, Ichimoku, HeikinAshi, ValueArea, InitialBalance, OpeningRange, Doji, Hammer, InvertedHammer, HangingMan, ShootingStar, Engulfing, Harami, MorningEveningStar, ThreeSoldiersOrCrows, PiercingDarkCloud, Marubozu, Tweezer, SpinningTop, ThreeInside, ThreeOutside, SharpeRatio, SortinoRatio, CalmarRatio, OmegaRatio, MaxDrawdown, AverageDrawdown, DrawdownDuration, PainIndex, ValueAtRisk, ConditionalValueAtRisk, ProfitFactor, GainLossRatio, RecoveryFactor, KellyCriterion, TreynorRatio, InformationRatio, Alpha } = nativeBinding
313
+ const { version, SMA, EMA, WMA, RSI, DEMA, TEMA, HMA, ROC, TRIX, SMMA, TRIMA, ZLEMA, MOM, CMO, DPO, StdDev, UlcerIndex, VerticalHorizontalFilter, ZScore, McGinleyDynamic, FRAMA, SuperSmoother, FisherTransform, Decycler, CenterOfGravity, CyberneticCycle, InstantaneousTrendline, EhlersStochastic, RVIVolatility, Variance, CoefficientOfVariation, Skewness, Kurtosis, StandardError, DetrendedStdDev, RSquared, MedianAbsoluteDeviation, Autocorrelation, HurstExponent, PearsonCorrelation, Beta, PairwiseBeta, SpearmanCorrelation, PairSpreadZScore, LeadLagCrossCorrelation, Cointegration, RelativeStrengthAB, MACD, BollingerBands, ATR, Stochastic, OBV, ADX, ADXR, CCI, WilliamsR, MFI, PSAR, Keltner, Donchian, VWAP, RollingVWAP, AwesomeOscillator, Aroon, Inertia, ConnorsRSI, LaguerreRSI, SMI, KST, PGO, RVI, AwesomeOscillatorHistogram, STC, ElderImpulse, ZeroLagMACD, CFO, APO, KAMA, EVWMA, Alligator, JMA, VIDYA, ALMA, T3, TSI, PMO, TII, ADL, VolumePriceTrend, ChaikinMoneyFlow, ChaikinOscillator, ForceIndex, NVI, PVI, VolumeOscillator, KVO, WilliamsAD, AnchoredVWAP, DemandIndex, TSV, VZO, MarketFacilitationIndex, EaseOfMovement, SuperTrend, ChandelierExit, ChandeKrollStop, AtrTrailingStop, HiLoActivator, VoltyStop, YoyoExit, DonchianStop, PercentageTrailingStop, StepTrailingStop, RenkoTrailingStop, TypicalPrice, MedianPrice, WeightedClose, LinearRegression, LinRegSlope, AcceleratorOscillator, BalanceOfPower, ChoppinessIndex, TrueRange, ChaikinVolatility, YangZhangVolatility, RogersSatchellVolatility, GarmanKlassVolatility, ParkinsonVolatility, LinRegAngle, BollingerBandwidth, PercentB, NATR, HistoricalVolatility, AroonOscillator, WaveTrend, RWI, Vortex, MassIndex, StochRSI, UltimateOscillator, PPO, Coppock, VWMA, MaEnvelope, AccelerationBands, StarcBands, AtrBands, HurstChannel, LinRegChannel, StandardErrorBands, DoubleBollinger, TtmSqueeze, FractalChaosBands, VwapStdDevBands, ClassicPivots, FibonacciPivots, Camarilla, WoodiePivots, DemarkPivots, WilliamsFractals, ZigZag, TDSetup, TDSequential, TDDeMarker, TDREI, TDPressure, TDCombo, TDCountdown, TDLines, TDRangeProjection, TDDifferential, TDOpen, TDRiskLevel, InverseFisherTransform, DecyclerOscillator, RoofingFilter, EmpiricalModeDecomposition, HilbertDominantCycle, AdaptiveCycle, SineWave, MAMA, FAMA, Ichimoku, HeikinAshi, ValueArea, InitialBalance, OpeningRange, Doji, Hammer, InvertedHammer, HangingMan, ShootingStar, Engulfing, Harami, MorningEveningStar, ThreeSoldiersOrCrows, PiercingDarkCloud, Marubozu, Tweezer, SpinningTop, ThreeInside, ThreeOutside, OrderBookImbalanceTop1, OrderBookImbalanceFull, Microprice, QuotedSpread, OrderBookImbalanceTopN, SignedVolume, CumulativeVolumeDelta, TradeImbalance, SharpeRatio, SortinoRatio, CalmarRatio, OmegaRatio, MaxDrawdown, AverageDrawdown, DrawdownDuration, PainIndex, ValueAtRisk, ConditionalValueAtRisk, ProfitFactor, GainLossRatio, RecoveryFactor, KellyCriterion, TreynorRatio, InformationRatio, Alpha } = nativeBinding
314
314
 
315
315
  module.exports.version = version
316
316
  module.exports.SMA = SMA
@@ -515,6 +515,14 @@ module.exports.Tweezer = Tweezer
515
515
  module.exports.SpinningTop = SpinningTop
516
516
  module.exports.ThreeInside = ThreeInside
517
517
  module.exports.ThreeOutside = ThreeOutside
518
+ module.exports.OrderBookImbalanceTop1 = OrderBookImbalanceTop1
519
+ module.exports.OrderBookImbalanceFull = OrderBookImbalanceFull
520
+ module.exports.Microprice = Microprice
521
+ module.exports.QuotedSpread = QuotedSpread
522
+ module.exports.OrderBookImbalanceTopN = OrderBookImbalanceTopN
523
+ module.exports.SignedVolume = SignedVolume
524
+ module.exports.CumulativeVolumeDelta = CumulativeVolumeDelta
525
+ module.exports.TradeImbalance = TradeImbalance
518
526
  module.exports.SharpeRatio = SharpeRatio
519
527
  module.exports.SortinoRatio = SortinoRatio
520
528
  module.exports.CalmarRatio = CalmarRatio
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "wickra-darwin-arm64",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Native binding for wickra (macOS Apple Silicon). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.darwin-arm64.node",
6
6
  "files": [
7
7
  "wickra.darwin-arm64.node"
8
8
  ],
9
- "license": "PolyForm-Noncommercial-1.0.0",
9
+ "license": "LicenseRef-Wickra-Noncommercial-1.0.0",
10
10
  "engines": {
11
11
  "node": ">= 18"
12
12
  },
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "wickra-darwin-x64",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Native binding for wickra (macOS Intel). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.darwin-x64.node",
6
6
  "files": [
7
7
  "wickra.darwin-x64.node"
8
8
  ],
9
- "license": "PolyForm-Noncommercial-1.0.0",
9
+ "license": "LicenseRef-Wickra-Noncommercial-1.0.0",
10
10
  "engines": {
11
11
  "node": ">= 18"
12
12
  },
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "wickra-linux-arm64-gnu",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Native binding for wickra (linux arm64 GNU). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.linux-arm64-gnu.node",
6
6
  "files": [
7
7
  "wickra.linux-arm64-gnu.node"
8
8
  ],
9
- "license": "PolyForm-Noncommercial-1.0.0",
9
+ "license": "LicenseRef-Wickra-Noncommercial-1.0.0",
10
10
  "engines": {
11
11
  "node": ">= 18"
12
12
  },
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "wickra-linux-x64-gnu",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Native binding for wickra (linux x64 GNU). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.linux-x64-gnu.node",
6
6
  "files": [
7
7
  "wickra.linux-x64-gnu.node"
8
8
  ],
9
- "license": "PolyForm-Noncommercial-1.0.0",
9
+ "license": "LicenseRef-Wickra-Noncommercial-1.0.0",
10
10
  "engines": {
11
11
  "node": ">= 18"
12
12
  },
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "wickra-win32-arm64-msvc",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Native binding for wickra (Windows arm64 MSVC). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.win32-arm64-msvc.node",
6
6
  "files": [
7
7
  "wickra.win32-arm64-msvc.node"
8
8
  ],
9
- "license": "PolyForm-Noncommercial-1.0.0",
9
+ "license": "LicenseRef-Wickra-Noncommercial-1.0.0",
10
10
  "engines": {
11
11
  "node": ">= 18"
12
12
  },
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "wickra-win32-x64-msvc",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Native binding for wickra (Windows x64 MSVC). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.win32-x64-msvc.node",
6
6
  "files": [
7
7
  "wickra.win32-x64-msvc.node"
8
8
  ],
9
- "license": "PolyForm-Noncommercial-1.0.0",
9
+ "license": "LicenseRef-Wickra-Noncommercial-1.0.0",
10
10
  "engines": {
11
11
  "node": ">= 18"
12
12
  },
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "wickra",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Streaming-first technical indicators: incremental, fast, install-free. Node bindings powered by Rust.",
5
5
  "author": "kingchenc <support@wickra.org>",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
- "license": "PolyForm-Noncommercial-1.0.0",
8
+ "license": "LicenseRef-Wickra-Noncommercial-1.0.0",
9
9
  "keywords": [
10
10
  "trading",
11
11
  "indicators",
@@ -47,12 +47,12 @@
47
47
  "node": ">= 18"
48
48
  },
49
49
  "optionalDependencies": {
50
- "wickra-linux-x64-gnu": "0.4.1",
51
- "wickra-linux-arm64-gnu": "0.4.1",
52
- "wickra-darwin-x64": "0.4.1",
53
- "wickra-darwin-arm64": "0.4.1",
54
- "wickra-win32-x64-msvc": "0.4.1",
55
- "wickra-win32-arm64-msvc": "0.4.1"
50
+ "wickra-linux-x64-gnu": "0.4.2",
51
+ "wickra-linux-arm64-gnu": "0.4.2",
52
+ "wickra-darwin-x64": "0.4.2",
53
+ "wickra-darwin-arm64": "0.4.2",
54
+ "wickra-win32-x64-msvc": "0.4.2",
55
+ "wickra-win32-arm64-msvc": "0.4.2"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "napi build --platform --release",
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file