@zap-js/darwin-arm64 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 +19 -0
- package/bin/zap +0 -0
- package/bin/zap-codegen +0 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @zap-js/darwin-arm64
|
|
2
|
+
|
|
3
|
+
This package contains the native macOS ARM64 (Apple Silicon) 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: ARM64 (Apple Silicon)
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
|
|
19
|
+
MIT
|
package/bin/zap
ADDED
|
Binary file
|
package/bin/zap-codegen
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zap-js/darwin-arm64",
|
|
3
|
+
"version": "0.0.9",
|
|
4
|
+
"description": "ZapJS native binaries for macOS ARM64 (Apple Silicon)",
|
|
5
|
+
"os": ["darwin"],
|
|
6
|
+
"cpu": ["arm64"],
|
|
7
|
+
"files": ["bin"],
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/saint0x/zapjs.git",
|
|
11
|
+
"directory": "packages/platforms/darwin-arm64"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"zap",
|
|
15
|
+
"zapjs",
|
|
16
|
+
"binary",
|
|
17
|
+
"macos",
|
|
18
|
+
"arm64"
|
|
19
|
+
],
|
|
20
|
+
"author": "saint0x",
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
}
|
|
25
|
+
}
|