domainlooker
Version:
A fast CLI and MCP server for inspecting domains: WHOIS/RDAP, DNS, SSL, ports, subdomains, with CSV/JSON export.
77 lines (76 loc) • 1.98 kB
JSON
{
"name": "domainlooker",
"version": "0.3.0",
"description": "A fast CLI and MCP server for inspecting domains: WHOIS/RDAP, DNS, SSL, ports, subdomains, with CSV/JSON export.",
"main": "dist/index.js",
"type": "module",
"bin": {
"domainlooker": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsc --watch",
"test": "npm run build && jest && vitest run",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:core": "jest tests/unit/basic-functionality.test.ts tests/unit/dns-simple.test.ts",
"test:mcp": "npm run build && vitest run",
"test:package": "npm run build && node scripts/smoke-package.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run test:core && node scripts/smoke-package.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"axios": "^1.6.2",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"ora": "^8.0.1",
"whois": "^2.16.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.10.4",
"jest": "^29.7.0",
"ts-jest": "^29.4.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vitest": "^3.2.7"
},
"keywords": [
"domain",
"whois",
"rdap",
"dns",
"ssl",
"cli",
"mcp",
"model-context-protocol",
"subdomain",
"port-scanner",
"domain-analysis",
"json-export",
"csv-export"
],
"author": "Shreshth Arora",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AroraShreshth/domainlooker.git"
},
"homepage": "https://github.com/AroraShreshth/domainlooker#readme",
"bugs": {
"url": "https://github.com/AroraShreshth/domainlooker/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}