@mirinjs/darwin-arm64 0.0.1-alpha.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,9 @@
1
+ # @mirinjs/darwin-arm64
2
+
3
+ Prebuilt [mirin](https://github.com/Netko-Labs/mirin) native binaries for macOS
4
+ arm64: `libmirin_core.dylib` (the CEF browser-process core) and `mirin-helper`
5
+ (the CEF subprocess).
6
+
7
+ This package is an optional, platform-gated dependency of `@mirinjs/cli`. The
8
+ binaries are produced by CI on each release; you should not install or use it
9
+ directly. The CEF framework itself is downloaded separately on first run.
Binary file
package/mirin-helper ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@mirinjs/darwin-arm64",
3
+ "version": "0.0.1-alpha.0",
4
+ "description": "Prebuilt mirin native binaries for macOS arm64 (libmirin_core + helper).",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/Netko-Labs/mirin#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/Netko-Labs/mirin.git",
10
+ "directory": "packages/native-darwin-arm64"
11
+ },
12
+ "os": [
13
+ "darwin"
14
+ ],
15
+ "cpu": [
16
+ "arm64"
17
+ ],
18
+ "files": [
19
+ "libmirin_core.dylib",
20
+ "mirin-helper",
21
+ "README.md"
22
+ ],
23
+ "publishConfig": {
24
+ "access": "public"
25
+ }
26
+ }