@zap-js/darwin-x64 0.0.9

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,19 @@
1
+ # @zap-js/darwin-x64
2
+
3
+ This package contains the native macOS x64 (Intel) binaries for ZapJS.
4
+
5
+ **You should not install this package directly.** It is automatically installed as an optional dependency when you install `@zap-js/client` on a compatible platform.
6
+
7
+ ## Contents
8
+
9
+ - `zap` - Main ZapJS server binary
10
+ - `zap-codegen` - Code generation binary for TypeScript type generation
11
+
12
+ ## Platform
13
+
14
+ - OS: macOS (darwin)
15
+ - Architecture: x64 (Intel)
16
+
17
+ ## License
18
+
19
+ MIT
package/bin/zap ADDED
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@zap-js/darwin-x64",
3
+ "version": "0.0.9",
4
+ "description": "ZapJS native binaries for macOS x64 (Intel)",
5
+ "os": ["darwin"],
6
+ "cpu": ["x64"],
7
+ "files": ["bin"],
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/saint0x/zapjs.git",
11
+ "directory": "packages/platforms/darwin-x64"
12
+ },
13
+ "keywords": [
14
+ "zap",
15
+ "zapjs",
16
+ "binary",
17
+ "macos",
18
+ "x64"
19
+ ],
20
+ "author": "saint0x",
21
+ "license": "MIT",
22
+ "publishConfig": {
23
+ "access": "public"
24
+ }
25
+ }