smartdns/package.json

75 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2016-11-15 20:39:21 +00:00
{
2023-07-10 00:48:43 +00:00
"name": "@push.rocks/smartdns",
2024-09-21 20:56:28 +00:00
"version": "6.2.1",
2019-01-06 23:21:15 +00:00
"private": false,
2024-04-14 15:30:20 +00:00
"description": "A TypeScript library for smart DNS methods, supporting various DNS records and providers.",
"exports": {
".": "./dist_ts_server/index.js",
"./server": "./dist_ts_server/index.js",
"./client": "./dist_ts_client/index.js"
},
2016-11-15 20:39:21 +00:00
"scripts": {
2019-01-06 23:21:15 +00:00
"test": "(tstest test/)",
"build": "(tsbuild tsfolders --web --allowimplicitany)",
2022-07-27 06:59:29 +00:00
"buildDocs": "tsdoc"
2016-11-15 20:39:21 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:12:42 +00:00
"url": "https://code.foss.global/push.rocks/smartdns.git"
2016-11-15 20:39:21 +00:00
},
"keywords": [
2024-04-14 15:30:20 +00:00
"TypeScript",
"DNS",
"DNS records",
"DNS resolution",
"DNS management",
"DNSSEC",
2024-04-14 15:30:20 +00:00
"Node.js",
"Google DNS",
"Cloudflare",
"UDP DNS",
"HTTPS DNS"
2016-11-15 20:39:21 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/dnsly/issues"
},
2024-05-29 12:12:42 +00:00
"homepage": "https://code.foss.global/push.rocks/smartdns",
2016-11-15 20:39:21 +00:00
"dependencies": {
"@push.rocks/smartdelay": "^3.0.1",
"@push.rocks/smartenv": "^5.0.5",
"@push.rocks/smartpromise": "^4.0.4",
"@push.rocks/smartrequest": "^2.0.15",
"@tsclass/tsclass": "^4.1.2",
"@types/dns-packet": "^5.6.5",
"@types/elliptic": "^6.4.18",
"dns-packet": "^5.6.1",
"elliptic": "^6.5.7",
"minimatch": "^10.0.1"
2016-11-15 20:39:21 +00:00
},
2017-07-31 14:33:57 +00:00
"devDependencies": {
"@git.zone/tsbuild": "^2.1.84",
"@git.zone/tsrun": "^1.2.49",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.2.0",
"@types/node": "^22.5.5"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-08-05 15:37:51 +00:00
"dist_*/**/*",
"dist_ts/**/*",
"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 06:59:29 +00:00
],
"type": "module"
2024-09-21 20:56:28 +00:00
}