@digitaldefiance/node-accelerate 1.0.4 → 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 +3 -8
  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
 
@@ -70,13 +65,13 @@ The package will automatically check your platform during installation. If you s
70
65
  ### Verifying Installation
71
66
 
72
67
  ```bash
73
- node -e "const a = require('node-accelerate'); console.log('✓ Works!')"
68
+ node -e "const a = require('@digitaldefiance/node-accelerate'); console.log('✓ Works!')"
74
69
  ```
75
70
 
76
71
  ## Quick Start
77
72
 
78
73
  ```javascript
79
- const accelerate = require('node-accelerate');
74
+ const accelerate = require('@digitaldefiance/node-accelerate');
80
75
 
81
76
  // Matrix multiplication: C = A × B
82
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.4",
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",