certctl-cli 1.0.1 → 1.0.2

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 (2) hide show
  1. package/package.json +11 -5
  2. package/scripts/install.js +0 -3
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "certctl-cli",
3
- "version": "1.0.1",
4
- "description": "轻量级 SSL 证书申请工具 / Lightweight SSL Certificate CLI Tool",
3
+ "version": "1.0.2",
4
+ "description": "Lightweight SSL Certificate CLI Tool",
5
5
  "bin": {
6
- "certctl": "./bin/run.js"
6
+ "certctl": "bin/run.js"
7
7
  },
8
+ "files": [
9
+ "bin/"
10
+ ],
8
11
  "keywords": [
9
12
  "ssl",
10
13
  "certificate",
@@ -17,7 +20,7 @@
17
20
  "license": "MIT",
18
21
  "repository": {
19
22
  "type": "git",
20
- "url": "https://github.com/cuijianzhong/certctl"
23
+ "url": "git+https://github.com/cuijianzhong/certctl.git"
21
24
  },
22
25
  "os": [
23
26
  "darwin",
@@ -27,5 +30,8 @@
27
30
  "cpu": [
28
31
  "x64",
29
32
  "arm64"
30
- ]
33
+ ],
34
+ "engines": {
35
+ "node": ">=14"
36
+ }
31
37
  }
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- // 二进制文件已包含在包中,无需下载
3
- console.log('certctl installed successfully!');