@pairling/runtime-darwin-arm64 0.0.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 +19 -0
- package/package.json +32 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @pairling/runtime-darwin-arm64
|
|
2
|
+
|
|
3
|
+
Pairling Mac runtime binaries for Apple Silicon:
|
|
4
|
+
|
|
5
|
+
- `bin/pairling-connectd` — the Pairling Connect route layer (embedded
|
|
6
|
+
tailnet), Developer ID-signed and notarized.
|
|
7
|
+
- `python/` — (future releases) the vendored, signed CPython runtime that the
|
|
8
|
+
Pairling daemon runs under (`dev.pairling.python` identity).
|
|
9
|
+
- `manifest.json` — SHA-256 digests and the expected codesign Team ID for every
|
|
10
|
+
shipped binary.
|
|
11
|
+
|
|
12
|
+
**Do not install this package directly.** It is selected automatically as a
|
|
13
|
+
platform-filtered optional dependency of [`pairling`](https://www.npmjs.com/package/pairling).
|
|
14
|
+
The `pairling setup` flow independently verifies each binary's Developer ID
|
|
15
|
+
signature and Team ID before staging it — an unsigned or re-signed binary is
|
|
16
|
+
rejected, fail closed.
|
|
17
|
+
|
|
18
|
+
- Product: https://pairling.dev
|
|
19
|
+
- Source mirror & publish pipeline: https://github.com/mergimg0/pairling-helper
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pairling/runtime-darwin-arm64",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Pairling Mac runtime binaries for Apple Silicon. Installed automatically as an optional dependency of the `pairling` package — do not install directly.",
|
|
5
|
+
"homepage": "https://pairling.dev",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/mergimg0/pairling-helper/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/mergimg0/pairling-helper.git"
|
|
12
|
+
},
|
|
13
|
+
"license": "UNLICENSED",
|
|
14
|
+
"author": "Pairling (https://pairling.dev)",
|
|
15
|
+
"files": [
|
|
16
|
+
"bin",
|
|
17
|
+
"python",
|
|
18
|
+
"manifest.json"
|
|
19
|
+
],
|
|
20
|
+
"os": [
|
|
21
|
+
"darwin"
|
|
22
|
+
],
|
|
23
|
+
"cpu": [
|
|
24
|
+
"arm64"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=20"
|
|
28
|
+
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
}
|
|
32
|
+
}
|