-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.6 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "dnssec-server",
"version": "0.1.7",
"description": "📡 Pure JavaScript authoritative DNS server for Node.js with built-in DNSSEC, dynamic zones, and modern record support.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src",
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build"
},
"keywords": [
"backend",
"packet",
"encodings",
"encoding",
"encoder",
"abstract-encoding",
"dns",
"dns-packet",
"dnssec",
"authoritative-dns",
"nodejs",
"javascript",
"edns",
"ecs",
"doh",
"doq",
"dns-over-tls",
"svcb",
"https-record",
"tlsa",
"nsec3",
"zone-file",
"bind",
"named",
"resolver",
"load-balancer",
"service-discovery"
],
"author": "colocohen",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/colocohen/dnssec-server.git"
},
"bugs": {
"url": "https://github.com/colocohen/dnssec-server/issues"
},
"homepage": "https://github.com/colocohen/dnssec-server#readme",
"dependencies": {},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/colocohen"
},
{
"type": "opencollective",
"url": "https://opencollective.com/colocohen"
}
],
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.0.0"
}
}