fix(dnsserver): Fix SOA record timeout issue by correcting RRSIG field formatting - Fixed RRSIG generation by using correct field name 'signersName' (not 'signerName') - Fixed label count calculation in RRSIG by filtering empty strings - Added SOA records to DNSSEC signing map for proper RRSIG generation - Added error logging and fallback values for RRSIG generation robustness - Updated test expectations to match corrected DNSSEC RRset signing behavior - Added comprehensive SOA test coverage including timeout, debug, and simple test scenarios
82 lines
2.2 KiB
JSON
82 lines
2.2 KiB
JSON
{
|
|
"name": "@push.rocks/smartdns",
|
|
"version": "7.4.4",
|
|
"private": false,
|
|
"description": "A robust TypeScript library providing advanced DNS management and resolution capabilities including support for DNSSEC, custom DNS servers, and integration with various DNS providers.",
|
|
"exports": {
|
|
".": "./dist_ts/index.js",
|
|
"./server": "./dist_ts_server/index.js",
|
|
"./client": "./dist_ts_client/index.js"
|
|
},
|
|
"scripts": {
|
|
"test": "(tstest test/ --verbose --timeout 60)",
|
|
"build": "(tsbuild tsfolders --web --allowimplicitany)",
|
|
"buildDocs": "tsdoc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://code.foss.global/push.rocks/smartdns.git"
|
|
},
|
|
"keywords": [
|
|
"TypeScript",
|
|
"DNS",
|
|
"DNS records",
|
|
"DNS resolution",
|
|
"DNS management",
|
|
"DNSSEC",
|
|
"Node.js",
|
|
"Google DNS",
|
|
"Cloudflare",
|
|
"UDP DNS",
|
|
"HTTPS DNS",
|
|
"ACME",
|
|
"Let's Encrypt",
|
|
"SSL Certificates",
|
|
"Feature Flagging",
|
|
"Domain Propagation",
|
|
"DNS Server"
|
|
],
|
|
"author": "Lossless GmbH",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://gitlab.com/pushrocks/dnsly/issues"
|
|
},
|
|
"homepage": "https://code.foss.global/push.rocks/smartdns",
|
|
"dependencies": {
|
|
"@push.rocks/smartdelay": "^3.0.1",
|
|
"@push.rocks/smartenv": "^5.0.5",
|
|
"@push.rocks/smartpromise": "^4.2.3",
|
|
"@push.rocks/smartrequest": "^2.1.0",
|
|
"@tsclass/tsclass": "^9.2.0",
|
|
"@types/dns-packet": "^5.6.5",
|
|
"@types/elliptic": "^6.4.18",
|
|
"acme-client": "^5.4.0",
|
|
"dns-packet": "^5.6.1",
|
|
"elliptic": "^6.6.1",
|
|
"minimatch": "^10.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@git.zone/tsbuild": "^2.6.4",
|
|
"@git.zone/tsrun": "^1.3.3",
|
|
"@git.zone/tstest": "^2.3.1",
|
|
"@types/node": "^22.15.21"
|
|
},
|
|
"files": [
|
|
"ts/**/*",
|
|
"ts_web/**/*",
|
|
"dist/**/*",
|
|
"dist_*/**/*",
|
|
"dist_ts/**/*",
|
|
"dist_ts_web/**/*",
|
|
"assets/**/*",
|
|
"cli.js",
|
|
"npmextra.json",
|
|
"readme.md"
|
|
],
|
|
"browserslist": [
|
|
"last 1 chrome versions"
|
|
],
|
|
"type": "module",
|
|
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
|
|
}
|