1
mirror of https://github.com/jakejarvis/rdapper.git synced 2025-10-18 14:24:29 -04:00
Files
rdapper/package.json
2025-10-17 22:04:57 -04:00

69 lines
1.4 KiB
JSON

{
"name": "rdapper",
"version": "0.8.0",
"license": "MIT",
"description": "🎩 RDAP/WHOIS fetcher, parser, and normalizer for Node",
"repository": {
"type": "git",
"url": "git+https://github.com/jakejarvis/rdapper.git"
},
"bugs": {
"url": "https://github.com/jakejarvis/rdapper/issues"
},
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://jarv.is"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./bin/cli.js",
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"cli": "node bin/cli.js",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"lint": "biome check",
"prepublishOnly": "npm run build"
},
"dependencies": {
"tldts": "7.0.17"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@types/node": "24.8.1",
"tsdown": "0.15.7",
"typescript": "5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.17"
},
"keywords": [
"rdap",
"whois",
"domain",
"registration",
"lookup",
"parser",
"normalizer"
]
}