2016-11-15 21:39:21 +01:00
{
2023-07-10 02:48:43 +02:00
"name" : "@push.rocks/smartdns" ,
2024-09-21 22:56:28 +02:00
"version" : "6.2.1" ,
2019-01-07 00:21:15 +01:00
"private" : false ,
2025-03-21 18:21:47 +00:00
"description" : "A robust TypeScript library providing advanced DNS management and resolution capabilities including support for DNSSEC, custom DNS servers, and integration with various DNS providers." ,
2024-06-02 15:34:19 +02:00
"exports" : {
"." : "./dist_ts_server/index.js" ,
"./server" : "./dist_ts_server/index.js" ,
"./client" : "./dist_ts_client/index.js"
} ,
2016-11-15 21:39:21 +01:00
"scripts" : {
2019-01-07 00:21:15 +01:00
"test" : "(tstest test/)" ,
2024-06-02 15:34:19 +02:00
"build" : "(tsbuild tsfolders --web --allowimplicitany)" ,
2022-07-27 08:59:29 +02:00
"buildDocs" : "tsdoc"
2016-11-15 21:39:21 +01:00
} ,
"repository" : {
"type" : "git" ,
2024-05-29 14:12:42 +02:00
"url" : "https://code.foss.global/push.rocks/smartdns.git"
2016-11-15 21:39:21 +01:00
} ,
"keywords" : [
2024-04-14 17:30:20 +02:00
"TypeScript" ,
2024-09-21 22:56:27 +02:00
"DNS" ,
"DNS records" ,
"DNS resolution" ,
"DNS management" ,
"DNSSEC" ,
2024-04-14 17:30:20 +02:00
"Node.js" ,
"Google DNS" ,
"Cloudflare" ,
2024-09-21 22:56:27 +02:00
"UDP DNS" ,
2025-03-21 18:21:47 +00:00
"HTTPS DNS" ,
"ACME" ,
"Let's Encrypt" ,
"SSL Certificates" ,
"Feature Flagging" ,
"Domain Propagation" ,
"DNS Server"
2016-11-15 21:39:21 +01:00
] ,
"author" : "Lossless GmbH" ,
"license" : "MIT" ,
"bugs" : {
"url" : "https://gitlab.com/pushrocks/dnsly/issues"
} ,
2024-05-29 14:12:42 +02:00
"homepage" : "https://code.foss.global/push.rocks/smartdns" ,
2016-11-15 21:39:21 +01:00
"dependencies" : {
2024-06-02 15:34:19 +02:00
"@push.rocks/smartdelay" : "^3.0.1" ,
"@push.rocks/smartenv" : "^5.0.5" ,
2025-03-21 18:21:47 +00:00
"@push.rocks/smartpromise" : "^4.2.3" ,
"@push.rocks/smartrequest" : "^2.0.23" ,
"@tsclass/tsclass" : "^5.0.0" ,
2024-06-02 15:34:19 +02:00
"@types/dns-packet" : "^5.6.5" ,
2024-09-18 19:28:28 +02:00
"@types/elliptic" : "^6.4.18" ,
2025-03-21 18:21:47 +00:00
"acme-client" : "^5.4.0" ,
2024-09-18 19:28:28 +02:00
"dns-packet" : "^5.6.1" ,
2025-03-21 18:21:47 +00:00
"elliptic" : "^6.6.1" ,
2024-09-18 19:28:28 +02:00
"minimatch" : "^10.0.1"
2016-11-15 21:39:21 +01:00
} ,
2017-07-31 16:33:57 +02:00
"devDependencies" : {
2025-03-21 18:21:47 +00:00
"@git.zone/tsbuild" : "^2.2.7" ,
"@git.zone/tsrun" : "^1.3.3" ,
"@git.zone/tstest" : "^1.0.96" ,
"@push.rocks/tapbundle" : "^5.6.0" ,
"@types/node" : "^22.13.10"
2020-02-15 16:41:37 +00:00
} ,
"files" : [
"ts/**/*" ,
"ts_web/**/*" ,
"dist/**/*" ,
2020-08-05 15:37:51 +00:00
"dist_*/**/*" ,
"dist_ts/**/*" ,
2020-02-15 16:41:37 +00:00
"dist_ts_web/**/*" ,
"assets/**/*" ,
"cli.js" ,
"npmextra.json" ,
"readme.md"
2020-08-05 15:37:51 +00:00
] ,
"browserslist" : [
"last 1 chrome versions"
2022-07-27 08:59:29 +02:00
] ,
"type" : "module"
2025-03-21 18:21:47 +00:00
}