@cnb-rs/cli-linux-x64 0.0.1-init → 1.0.0-alpha.10
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 +40 -0
- package/bin/cnb-rs +0 -0
- package/package.json +35 -5
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# @cnb-rs/cli
|
|
2
|
+
|
|
3
|
+
**Unofficial [CNB](https://cnb.cool) command-line tool built with Rust.**
|
|
4
|
+
|
|
5
|
+
在终端中高效管理你的 CNB 平台资源。
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Global install
|
|
11
|
+
npm install -g @cnb-rs/cli
|
|
12
|
+
|
|
13
|
+
# One-off usage (no install needed)
|
|
14
|
+
npx @cnb-rs/cli --help
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Supported Node.js Versions
|
|
18
|
+
|
|
19
|
+
| Version | Status |
|
|
20
|
+
| ------- | ------ |
|
|
21
|
+
| 22 LTS | ✅ |
|
|
22
|
+
| 24 LTS | ✅ |
|
|
23
|
+
| 26+ | ✅ |
|
|
24
|
+
|
|
25
|
+
## Supported Platforms
|
|
26
|
+
|
|
27
|
+
| Platform | Architecture |
|
|
28
|
+
| -------------- | ------------ |
|
|
29
|
+
| Linux | x64, arm64 |
|
|
30
|
+
| macOS (Darwin) | x64, arm64 |
|
|
31
|
+
| Windows | x64, arm64 |
|
|
32
|
+
|
|
33
|
+
## Documentation
|
|
34
|
+
|
|
35
|
+
- 文档站: <https://cnb.wwvo.fun>
|
|
36
|
+
- 仓库: <https://cnb.cool/wwvo/cnb-rs/cnb-rs>
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
GPL-3.0-or-later
|
package/bin/cnb-rs
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cnb-rs/cli-linux-x64",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
"version": "1.0.0-alpha.10",
|
|
4
|
+
"description": "Platform-specific binary for @cnb-rs/cli (linux x64)",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/wwvl/Mia.git"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"cnb",
|
|
11
|
+
"cnb-rs",
|
|
12
|
+
"cli",
|
|
13
|
+
"devtools",
|
|
14
|
+
"git",
|
|
15
|
+
"code-review",
|
|
16
|
+
"issue",
|
|
17
|
+
"pull-request"
|
|
18
|
+
],
|
|
19
|
+
"author": "wwvo",
|
|
20
|
+
"license": "GPL-3.0-or-later",
|
|
21
|
+
"homepage": "https://cnb.cool/wwvo/cnb-rs/cnb-rs",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://cnb.cool/wwvo/cnb-rs/cnb-rs/-/issues"
|
|
24
|
+
},
|
|
25
|
+
"os": [
|
|
26
|
+
"linux"
|
|
27
|
+
],
|
|
28
|
+
"cpu": [
|
|
29
|
+
"x64"
|
|
30
|
+
],
|
|
31
|
+
"files": [
|
|
32
|
+
"bin"
|
|
33
|
+
],
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
}
|
|
37
|
+
}
|