certctl-cli 1.0.2 → 1.0.3

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 CHANGED
@@ -1,31 +1,38 @@
1
- # @z_ai/certctl
1
+ # certctl-cli
2
2
 
3
- 轻量级 SSL 证书申请工具,支持通配符证书 & 阿里云 DNS 自动验证。
3
+ 轻量级 SSL 证书申请工具 / Lightweight SSL Certificate CLI Tool
4
+
5
+ 支持通配符证书申请 & 阿里云 DNS 自动验证。
4
6
 
5
7
  ## 安装
6
8
 
7
9
  ```bash
8
- npm install -g @z_ai/certctl
9
- # 或
10
- npx @z_ai/certctl apply -d example.com
10
+ npm install -g certctl-cli
11
11
  ```
12
12
 
13
13
  ## 使用
14
14
 
15
15
  ```bash
16
+ # 交互式菜单
17
+ certctl
18
+
16
19
  # 手动 DNS 验证
17
- certctl apply -d example.com
20
+ certctl apply -d example.com -e admin@example.com
18
21
 
19
22
  # 阿里云 DNS 自动验证
20
- certctl apply -d example.com --dns aliyun
23
+ certctl apply -d example.com --dns aliyun --ali-key YOUR_KEY --ali-secret YOUR_SECRET
21
24
 
22
25
  # 查看证书
23
26
  certctl list
24
27
 
25
28
  # 续期证书
26
- certctl renew -d example.com
29
+ certctl renew
27
30
  ```
28
31
 
32
+ ## 文档
33
+
34
+ 完整文档: https://github.com/Heartbeatc/certctl
35
+
29
36
  ## License
30
37
 
31
38
  MIT
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "certctl-cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Lightweight SSL Certificate CLI Tool",
5
5
  "bin": {
6
6
  "certctl": "bin/run.js"
@@ -20,7 +20,7 @@
20
20
  "license": "MIT",
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "git+https://github.com/cuijianzhong/certctl.git"
23
+ "url": "git+https://github.com/Heartbeatc/certctl.git"
24
24
  },
25
25
  "os": [
26
26
  "darwin",