zetcert 0.1.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.
- package/LICENSE +21 -0
- package/README.md +175 -0
- package/dist/zetcert.cjs +36039 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zetcert",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Manages the Let's Encrypt certificates of an nginx server, on top of certbot",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"os": [
|
|
8
|
+
"linux"
|
|
9
|
+
],
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=20"
|
|
12
|
+
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"zetcert": "dist/zetcert.cjs"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@aws-sdk/client-route-53": "^3.1141.0",
|
|
21
|
+
"@eslint/js": "^10.0.1",
|
|
22
|
+
"@types/node": "^20.19.43",
|
|
23
|
+
"commander": "^14.0.3",
|
|
24
|
+
"esbuild": "^0.28.2",
|
|
25
|
+
"eslint": "^10.11.0",
|
|
26
|
+
"typescript": "~6.0.3",
|
|
27
|
+
"typescript-eslint": "^8.70.1",
|
|
28
|
+
"vitest": "^4.1.11",
|
|
29
|
+
"yaml": "^2.9.1"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "node scripts/build.js",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"lint": "eslint .",
|
|
35
|
+
"typecheck": "tsc --noEmit",
|
|
36
|
+
"e2e": "vitest run --config test/e2e/vitest.config.ts",
|
|
37
|
+
"prepack": "npm run build"
|
|
38
|
+
},
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/ArmCyber/zetcert.git"
|
|
42
|
+
}
|
|
43
|
+
}
|