fix(whois): improve type safety and harden WHOIS parsing for missing fields

This commit is contained in:
2026-05-01 16:20:47 +00:00
parent dc3288cc51
commit c7d2b13c8b
11 changed files with 3637 additions and 4135 deletions
+16 -12
View File
@@ -6,26 +6,28 @@
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose)",
"build": "(tsbuild --web --allowimplicitany)",
"test": "tstest test/ --verbose",
"format": "gitzone format",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.65",
"@git.zone/tsbundle": "^2.0.7",
"@git.zone/tsrun": "^1.2.39",
"@git.zone/tstest": "^2.3.2",
"@types/node": "^22"
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsbundle": "^2.10.1",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0",
"why-is-node-running": "^3.2.2"
},
"dependencies": {
"@push.rocks/smartrequest": "^4.0.1",
"@push.rocks/smartrequest": "^5.0.1",
"@push.rocks/smarturl": "^3.0.6",
"@tsclass/tsclass": "^9.2.0",
"tldts": "^7.0.10",
"whoiser": "^1.16.0"
"@tsclass/tsclass": "^9.5.1",
"tldts": "^7.0.29",
"whoiser": "^1.18.0"
},
"browserslist": [
"last 1 chrome versions"
@@ -39,6 +41,8 @@
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
],