@sansavision/pulse-cli-darwin-arm64 0.1.0

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 ADDED
@@ -0,0 +1,6 @@
1
+ # @sansavision/pulse-cli-darwin-arm64
2
+
3
+ Platform package containing the native binaries for macOS Apple Silicon.
4
+
5
+ - Put your native executables in `bin/`.
6
+ - This package is meant to be installed automatically via `optionalDependencies`.
package/bin/.gitkeep ADDED
File without changes
package/bin/pulse ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@sansavision/pulse-cli-darwin-arm64",
3
+ "version": "0.1.0",
4
+ "description": "Native binaries for darwin arm64",
5
+ "license": "MIT",
6
+ "private": false,
7
+ "publishConfig": {
8
+ "access": "restricted",
9
+ "registry": "https://registry.npmjs.org"
10
+ },
11
+ "os": [
12
+ "darwin"
13
+ ],
14
+ "cpu": [
15
+ "arm64"
16
+ ],
17
+ "files": [
18
+ "bin/",
19
+ "README.md"
20
+ ],
21
+ "main": "README.md"
22
+ }