-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.19 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.19 KB
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
47
48
49
50
51
52
53
54
55
56
{
"name": "diggy",
"version": "1.1.6",
"description": "Multi-backend DNS resolver for Node.js/Browser — supports dig, DNS over HTTPS, and native Node.js DNS.",
"repository": "OzzyCzech/diggy",
"website": "https://ozzyczech.github.io/diggy/",
"author": "Roman Ožana <roman@ozana.cz>",
"keywords": [
"dns",
"dig",
"dns-over-https",
"DoH",
"nodejs",
"browser",
"dns-resolver",
"resolver",
"lookup",
"dns-client",
"dns-server",
"dns-tools",
"google-dns",
"cloudflare-dns",
"dns-over-tls",
"js-dns"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"prepare": "npm run build",
"test": "tsc --noEmit && vitest",
"format": "biome check --write .",
"format:check": "biome check .",
"docs": "typedoc"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@ozzyczech/tsconfig": "^1.0.0",
"@types/bun": "^1.3.9",
"@types/deno": "^2.5.0",
"@types/node": "^25.3.2",
"tsx": "^4.21.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}