node-mac-recorder 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.
package/README.md CHANGED
@@ -45,6 +45,7 @@ npm install node-mac-recorder
45
45
  - **Node.js 14+**
46
46
  - **Xcode Command Line Tools**
47
47
  - **Screen Recording Permission** (automatically requested)
48
+ - **CPU Architecture**: Intel (x64) and Apple Silicon (ARM64) supported
48
49
 
49
50
  ### Build Requirements
50
51
 
@@ -55,6 +56,8 @@ xcode-select --install
55
56
  # The package will automatically build native modules during installation
56
57
  ```
57
58
 
59
+ **Apple Silicon Support**: The package automatically builds for the correct architecture (ARM64 on Apple Silicon, x64 on Intel) during installation. No additional configuration required.
60
+
58
61
  ## Quick Start
59
62
 
60
63
  ```javascript
package/binding.gyp CHANGED
@@ -18,7 +18,7 @@
18
18
  "xcode_settings": {
19
19
  "GCC_ENABLE_CPP_EXCEPTIONS": "YES",
20
20
  "CLANG_CXX_LIBRARY": "libc++",
21
- "MACOSX_DEPLOYMENT_TARGET": "10.14",
21
+ "MACOSX_DEPLOYMENT_TARGET": "10.15",
22
22
  "OTHER_CFLAGS": [
23
23
  "-ObjC++"
24
24
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-mac-recorder",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Native macOS screen recording package for Node.js applications",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -28,6 +28,10 @@
28
28
  "os": [
29
29
  "darwin"
30
30
  ],
31
+ "cpu": [
32
+ "x64",
33
+ "arm64"
34
+ ],
31
35
  "scripts": {
32
36
  "test": "node test.js",
33
37
  "install": "node install.js",