-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 932 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@sousvidal/dns-checker-cli",
"version": "1.0.0",
"description": "A CLI tool to check DNS records for a domain",
"type": "module",
"bin": {
"dns-checker": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"dns",
"cli",
"checker"
],
"license": "MIT",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"ora": "^9.3.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.2.2",
"eslint": "^9.39.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}