readback 0.0.0-alpha.1 → 0.0.0-alpha.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.
Files changed (2) hide show
  1. package/README.md +10 -2
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -8,7 +8,15 @@
8
8
 
9
9
  ## 🚀 Installation
10
10
 
11
- ### Step 1: Install Node.js
11
+ ### Step 1: Install build tools for native modules:
12
+
13
+ **macOS**: Install Xcode Command Line Tools with `xcode-select --install`
14
+
15
+ **Windows**: Install Visual Studio Build Tools with C++ workload from visualstudio.microsoft.com
16
+
17
+ **Linux**: Install build essentials with `sudo apt-get install build-essential cmake` (Debian/Ubuntu) or equivalent for your distribution
18
+
19
+ ### Step 2: Install Node.js
12
20
 
13
21
  You need Node.js version 22.18.0 or higher installed on your system:
14
22
 
@@ -16,7 +24,7 @@ You need Node.js version 22.18.0 or higher installed on your system:
16
24
  2. **Install**: Run the downloaded installer
17
25
  3. **Verify**: Open Terminal, type `node --version` and hit the enter key (you should see something like `v24.x.x`)
18
26
 
19
- ### Step 2: Install readback globally
27
+ ### Step 3: Install readback globally
20
28
 
21
29
  Open Terminal and run:
22
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "readback",
3
- "version": "0.0.0-alpha.1",
3
+ "version": "0.0.0-alpha.2",
4
4
  "description": "Transcribes ATC transmissions into readable text.",
5
5
  "keywords": [
6
6
  "ATC",
@@ -35,6 +35,7 @@
35
35
  "dependencies": {
36
36
  "@ricky0123/vad-node": "^0.0.3",
37
37
  "commander": "^14.0.3",
38
+ "cmake-js": "^8.0.0",
38
39
  "native-recorder-nodejs": "^1.2.0",
39
40
  "smart-whisper": "^0.8.1",
40
41
  "ora": "^9.0.0"