@hool/cli-win32-arm64 0.8.1

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.
Files changed (3) hide show
  1. package/README.md +23 -0
  2. package/bin/sino.exe +0 -0
  3. package/package.json +11 -0
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # @hool/cli-win32-arm64
2
+
3
+ `@hool/cli` 的 Windows ARM64 平台二进制包。
4
+
5
+ ## 关于本包
6
+
7
+ 本包内含预编译的 `sino.exe` 命令行可执行文件(Windows ARM64 架构)。
8
+
9
+ **请勿直接安装本包。** 安装 [`@hool/cli`](https://www.npmjs.com/package/@hool/cli) 时,包管理器会根据当前操作系统和 CPU 架构,自动将其作为可选依赖装好。
10
+
11
+ ## 支持平台
12
+
13
+ | 操作系统 | CPU |
14
+ | -------- | ----- |
15
+ | Windows | arm64 |
16
+
17
+ ## 安装
18
+
19
+ 请直接安装主包:
20
+
21
+ ```bash
22
+ npm install -g @hool/cli
23
+ ```
package/bin/sino.exe ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "@hool/cli-win32-arm64",
3
+ "version": "0.8.1",
4
+ "description": "Windows arm64 binary for @hool/cli",
5
+ "license": "UNLICENSED",
6
+ "files": ["bin", "README.md"],
7
+ "os": ["win32"],
8
+ "cpu": ["arm64"],
9
+ "sinoDistribution": "npm",
10
+ "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }
11
+ }