wt0-darwin-arm64 0.1.16
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 +8 -0
- package/bin/wt0 +0 -0
- package/package.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# wt0-darwin-arm64
|
|
2
|
+
|
|
3
|
+
Prebuilt `wt0` binary for macOS (Apple Silicon).
|
|
4
|
+
|
|
5
|
+
This package is installed automatically as an optional dependency of the
|
|
6
|
+
[`wt0`](https://www.npmjs.com/package/wt0) npm package for matching
|
|
7
|
+
platforms. You should not need to install it directly. See
|
|
8
|
+
[Worktree Zero](https://github.com/lonormaly/worktree-zero) for details.
|
package/bin/wt0
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wt0-darwin-arm64",
|
|
3
|
+
"version": "0.1.16",
|
|
4
|
+
"description": "wt0 prebuilt binary for macOS (Apple Silicon). Installed automatically as an optional dependency of the wt0 package -- do not install directly.",
|
|
5
|
+
"os": [
|
|
6
|
+
"darwin"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"arm64"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
"bin/wt0"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/lonormaly/worktree-zero.git"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/lonormaly/worktree-zero"
|
|
20
|
+
}
|