@digitaldefiance/node-accelerate 1.0.5 → 1.0.6

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -65,13 +65,13 @@ The package will automatically check your platform during installation. If you s
65
65
  ### Verifying Installation
66
66
 
67
67
  ```bash
68
- node -e "const a = require('node-accelerate'); console.log('✓ Works!')"
68
+ node -e "const a = require('@digitaldefiance/node-accelerate'); console.log('✓ Works!')"
69
69
  ```
70
70
 
71
71
  ## Quick Start
72
72
 
73
73
  ```javascript
74
- const accelerate = require('node-accelerate');
74
+ const accelerate = require('@digitaldefiance/node-accelerate');
75
75
 
76
76
  // Matrix multiplication: C = A × B
77
77
  const M = 1000, K = 1000, N = 1000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitaldefiance/node-accelerate",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
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",