smartdns/package.json

68 lines
1.6 KiB
JSON
Raw Normal View History

2016-11-15 20:39:21 +00:00
{
2023-07-10 00:48:43 +00:00
"name": "@push.rocks/smartdns",
2023-04-08 09:30:49 +00:00
"version": "5.0.4",
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
"DNS",
"TypeScript",
"Node.js",
"Google DNS",
"Cloudflare",
"DNS records",
"DNS resolution",
"DNSSEC"
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.2",
"@push.rocks/smartrequest": "^2.0.15",
"@tsclass/tsclass": "^4.0.54",
"@types/dns-packet": "^5.6.5",
"dns-packet": "^5.6.1"
2016-11-15 20:39:21 +00:00
},
2017-07-31 14:33:57 +00:00
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.13.0"
},
"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"
2023-07-10 00:48:43 +00:00
}