Core functionality for domain lookup using RDAP and WHOIS protocols, along with utility functions and tests.

This commit is contained in:
2025-09-24 14:28:09 -04:00
parent bd4846302d
commit 33a648460b
20 changed files with 1570 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "rdapper",
"version": "0.0.0-beta.1",
"license": "MIT",
"description": "Fetch and parse domain registration data via RDAP with WHOIS fallback.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --build",
"test": "pnpm build && node --test dist/**/*.test.js"
},
"engines": {
"node": ">=18.17"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "^24.5.2",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a"
}