Files
azure-acme-provisioner/package.json
T

64 lines
1.6 KiB
JSON

{
"name": "@slawek/azure-acme-provisioner",
"version": "0.6.2",
"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",
"node-forge": "^1.4.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^24.0.0",
"@types/node-forge": "^1.3.14",
"rimraf": "^6.1.3",
"typescript": "^6.0.0"
},
"engines": {
"node": ">=24.0.0"
},
"license": "MIT"
}