@leisureyu/dsh-aria2-win32-x64 1.37.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 ADDED
@@ -0,0 +1,21 @@
1
+ # @leisureyu/dsh-aria2-win32-x64
2
+
3
+ 为 **Windows x64** 平台预打包的 [aria2](https://aria2.github.io/) `aria2c.exe` 二进制文件,作为 `dsh-smart-dl` 插件的随包依赖分发,使用户无需自行安装 aria2。
4
+
5
+ - 版本:aria2 **1.37.0**
6
+ - 平台:`win32` / `x64`
7
+ - 二进制路径:`bin/aria2c.exe`
8
+
9
+ ## 二进制来源
10
+
11
+ `aria2c.exe` 来自 aria2 官方发布页:
12
+
13
+ ```
14
+ https://github.com/aria2/aria2/releases/download/release-1.37.0/aria2-1.37.0-win-64bit-build1.zip
15
+ ```
16
+
17
+ 由 CI(`.github/workflows/publish.yml`)下载并复制到 `bin/aria2c.exe`,**不提交到 Git 仓库**。本地开发时请按主仓库 README 的说明手动放置该文件。
18
+
19
+ ## 许可证
20
+
21
+ aria2 基于 **GPL-2.0-or-later** 许可,本子包同样声明为 `GPL-2.0-or-later`。详见 <https://github.com/aria2/aria2/blob/master/COPYING>。
package/bin/aria2c.exe ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@leisureyu/dsh-aria2-win32-x64",
3
+ "version": "1.37.0",
4
+ "description": "Bundled aria2c binary for Windows x64",
5
+ "type": "commonjs",
6
+ "os": [
7
+ "win32"
8
+ ],
9
+ "cpu": [
10
+ "x64"
11
+ ],
12
+ "files": [
13
+ "bin/aria2c.exe",
14
+ "README.md"
15
+ ],
16
+ "keywords": [
17
+ "aria2",
18
+ "aria2c",
19
+ "win32",
20
+ "x64",
21
+ "binary"
22
+ ],
23
+ "license": "GPL-2.0-or-later"
24
+ }