@vitrinka/cli-win32-arm64 3.3.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 +11 -0
- package/bin/vitrinka.exe +0 -0
- package/package.json +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @vitrinka/cli-win32-arm64
|
|
2
|
+
|
|
3
|
+
The vitrinka CLI binary for `win32-arm64` (Go target `windows/arm64`).
|
|
4
|
+
|
|
5
|
+
You almost certainly want the launcher instead:
|
|
6
|
+
|
|
7
|
+
npm install -g @vitrinka/cli
|
|
8
|
+
|
|
9
|
+
which pulls exactly one of these packages — the one matching your platform —
|
|
10
|
+
through `optionalDependencies`. This package is generated by
|
|
11
|
+
`scripts/gen-npm-platform-packages.sh`; do not edit it by hand.
|
package/bin/vitrinka.exe
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vitrinka/cli-win32-arm64",
|
|
3
|
+
"version": "3.3.0",
|
|
4
|
+
"description": "vitrinka CLI binary for win32-arm64. Installed automatically as an optional dependency of @vitrinka/cli — you never depend on this directly.",
|
|
5
|
+
"os": [
|
|
6
|
+
"win32"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"arm64"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
"bin",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"preferUnplugged": true,
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": "Lovinka",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/FixIt-Technologies/vitrinka.git",
|
|
21
|
+
"directory": "npm/vitrinka"
|
|
22
|
+
}
|
|
23
|
+
}
|