@digitaldefiance/node-accelerate 1.0.3 → 1.0.4

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 +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -35,7 +35,7 @@ Real benchmarks on Apple M4 Max:
35
35
  ## Installation
36
36
 
37
37
  ```bash
38
- npm install node-accelerate
38
+ npm install @digitaldefiance/node-accelerate
39
39
  ```
40
40
 
41
41
  **Requirements:**
@@ -64,7 +64,7 @@ The package will automatically check your platform during installation. If you s
64
64
  - Follow the prompts to install
65
65
 
66
66
  **"Failed to load native module"**
67
- - Try rebuilding: `npm rebuild node-accelerate`
67
+ - Try rebuilding: `npm rebuild @digitaldefiance/node-accelerate`
68
68
  - Ensure Xcode Command Line Tools are installed
69
69
 
70
70
  ### Verifying Installation
@@ -489,18 +489,18 @@ Built on Apple's Accelerate framework. Inspired by the need for high-performance
489
489
 
490
490
  ## Troubleshooting
491
491
 
492
- ### "Cannot find module 'node-accelerate'"
492
+ ### "Cannot find module '@digitaldefiance/node-accelerate'"
493
493
 
494
494
  Make sure you installed it:
495
495
  ```bash
496
- npm install node-accelerate
496
+ npm install @digitaldefiance/node-accelerate
497
497
  ```
498
498
 
499
499
  ### "Error: Module did not self-register"
500
500
 
501
501
  Rebuild the addon:
502
502
  ```bash
503
- npm rebuild node-accelerate
503
+ npm rebuild @digitaldefiance/node-accelerate
504
504
  ```
505
505
 
506
506
  ### "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.4",
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",