1
mirror of https://github.com/jakejarvis/rdapper.git synced 2025-10-18 20:14:27 -04:00
Files
rdapper/package.json

40 lines
913 B
JSON

{
"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": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test": "npm run clean && tsc -p tsconfig.json && node --test dist/**/*.test.js",
"lint": "biome check --write",
"prepublishOnly": "npm run build"
},
"dependencies": {
"psl": "1.15.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "24.5.2",
"@types/psl": "1.1.3",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18.17"
}
}