wt0-win32-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.exe +0 -0
- package/package.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# wt0-win32-arm64
|
|
2
|
+
|
|
3
|
+
Prebuilt `wt0` binary for Windows (arm64).
|
|
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.exe
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wt0-win32-arm64",
|
|
3
|
+
"version": "0.1.16",
|
|
4
|
+
"description": "wt0 prebuilt binary for Windows (arm64). Installed automatically as an optional dependency of the wt0 package -- do not install directly.",
|
|
5
|
+
"os": [
|
|
6
|
+
"win32"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"arm64"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
"bin/wt0.exe"
|
|
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
|
+
}
|