smartdns/package.json

64 lines
1.5 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.",
2020-08-05 15:37:51 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-11-15 20:39:21 +00:00
"scripts": {
2019-01-06 23:21:15 +00:00
"test": "(tstest test/)",
2022-07-27 07:15:28 +00:00
"build": "(tsbuild --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": {
2022-07-27 06:59:29 +00:00
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/smartpromise": "^3.1.7",
2023-03-23 00:41:35 +00:00
"@pushrocks/smartrequest": "^2.0.11",
2022-07-27 06:59:29 +00:00
"@tsclass/tsclass": "^4.0.17",
"dns2": "^2.0.5"
2016-11-15 20:39:21 +00:00
},
2017-07-31 14:33:57 +00:00
"devDependencies": {
2022-07-27 06:59:29 +00:00
"@gitzone/tsbuild": "^2.1.63",
2023-03-23 00:41:35 +00:00
"@gitzone/tsrun": "^1.2.39",
2022-07-27 06:59:29 +00:00
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
2023-04-08 09:30:48 +00:00
"@types/node": "^18.15.11"
},
"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
}