{ "name": "azure-acme-provisioner", "version": "0.4.3", "author": { "name": "Sławomir Koszewski", "url": "https://github.com/skoszewski" }, "licenses": [ { "type": "MIT", "url": "https://opensource.org/licenses/MIT" } ], "description": "Automated SSL/TLS certificate management using ACME protocol with Azure KeyVault and Azure DNS", "main": "dist/function/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "types": "dist/index.d.ts", "bin": { "azure-acme-provisioner": "./dist/cli.js" }, "files": [ "dist/", "!dist/**/*.test.*" ], "scripts": { "build": "tsc -p tsconfig.build.json && node -e \"require('fs').chmodSync('dist/cli.js', 0o755)\"", "build:watch": "tsc -p tsconfig.build.json --watch", "clean": "rimraf dist", "lint": "tsc --noEmit", "prebuild": "npm run clean", "start": "node dist/cli.js run", "start:function": "func start" }, "dependencies": { "@azure/arm-authorization": "^9.0.0", "@azure/arm-dns": "^5.1.0", "@azure/functions": "^4.14.0", "@azure/identity": "^4.13.1", "@azure/keyvault-certificates": "^4.10.3", "@azure/keyvault-secrets": "^4.11.2", "@peculiar/x509": "^2.0.0", "acme-client": "^5.4.0", "commander": "^14.0.0", "express": "^5.2.1" }, "devDependencies": { "@types/express": "^5.0.6", "@types/node": "^24.0.0", "rimraf": "^6.1.3", "typescript": "^6.0.0" }, "engines": { "node": ">=24.0.0" }, "license": "MIT" }