@digitaldefiance/node-accelerate 1.0.3 → 1.0.5

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.
Files changed (2) hide show
  1. package/README.md +6 -11
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,12 +2,7 @@
2
2
 
3
3
  High-performance Apple Accelerate framework bindings for Node.js. Get **283x faster** matrix operations and **5-8x faster** vector operations on Apple Silicon (M1/M2/M3/M4).
4
4
 
5
- [![npm version](https://badge.fury.io/js/node-accelerate.svg)](https://www.npmjs.com/package/@digitaldefiance/node-accelerate)
6
- [![GitHub](https://img.shields.io/github/license/Digital-Defiance/node-accelerate)](https://github.com/Digital-Defiance/node-accelerate/blob/main/LICENSE)
7
- [![GitHub stars](https://img.shields.io/github/stars/Digital-Defiance/node-accelerate?style=social)](https://github.com/Digital-Defiance/node-accelerate)
8
- [![Node.js CI](https://github.com/Digital-Defiance/node-accelerate/workflows/Test/badge.svg)](https://github.com/Digital-Defiance/node-accelerate/actions)
9
- [![Platform](https://img.shields.io/badge/platform-macOS-lightgrey)](https://github.com/Digital-Defiance/node-accelerate)
10
- [![Node](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org/)
5
+ [![npm version](https://badge.fury.io/js/node-accelerate.svg)](https://www.npmjs.com/package/@digitaldefiance/node-accelerate) [![GitHub](https://img.shields.io/github/license/Digital-Defiance/node-accelerate)](https://github.com/Digital-Defiance/node-accelerate/blob/main/LICENSE) [![GitHub stars](https://img.shields.io/github/stars/Digital-Defiance/node-accelerate?style=social)](https://github.com/Digital-Defiance/node-accelerate) [![Node.js CI](https://github.com/Digital-Defiance/node-accelerate/workflows/Test/badge.svg)](https://github.com/Digital-Defiance/node-accelerate/actions) [![Platform](https://img.shields.io/badge/platform-macOS-lightgrey)](https://github.com/Digital-Defiance/node-accelerate) [![Node](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org/)
11
6
 
12
7
  ----
13
8
 
@@ -35,7 +30,7 @@ Real benchmarks on Apple M4 Max:
35
30
  ## Installation
36
31
 
37
32
  ```bash
38
- npm install node-accelerate
33
+ npm install @digitaldefiance/node-accelerate
39
34
  ```
40
35
 
41
36
  **Requirements:**
@@ -64,7 +59,7 @@ The package will automatically check your platform during installation. If you s
64
59
  - Follow the prompts to install
65
60
 
66
61
  **"Failed to load native module"**
67
- - Try rebuilding: `npm rebuild node-accelerate`
62
+ - Try rebuilding: `npm rebuild @digitaldefiance/node-accelerate`
68
63
  - Ensure Xcode Command Line Tools are installed
69
64
 
70
65
  ### Verifying Installation
@@ -489,18 +484,18 @@ Built on Apple's Accelerate framework. Inspired by the need for high-performance
489
484
 
490
485
  ## Troubleshooting
491
486
 
492
- ### "Cannot find module 'node-accelerate'"
487
+ ### "Cannot find module '@digitaldefiance/node-accelerate'"
493
488
 
494
489
  Make sure you installed it:
495
490
  ```bash
496
- npm install node-accelerate
491
+ npm install @digitaldefiance/node-accelerate
497
492
  ```
498
493
 
499
494
  ### "Error: Module did not self-register"
500
495
 
501
496
  Rebuild the addon:
502
497
  ```bash
503
- npm rebuild node-accelerate
498
+ npm rebuild @digitaldefiance/node-accelerate
504
499
  ```
505
500
 
506
501
  ### "node-accelerate requires macOS"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitaldefiance/node-accelerate",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "High-performance Apple Accelerate framework bindings for Node.js - 283x faster matrix operations on Apple Silicon",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",