2021-08-22 07:29:09 +07:00
|
|
|
{
|
2023-12-13 17:39:24 +01:00
|
|
|
"name": "domain-forward",
|
2026-04-25 18:43:08 +02:00
|
|
|
"version": "1.1.0",
|
2023-12-13 19:40:27 +01:00
|
|
|
"description": "Service to forward domain via Hosterra DoH",
|
2023-04-21 10:46:24 +07:00
|
|
|
"main": "app.js",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"engines": {
|
2023-12-13 19:40:27 +01:00
|
|
|
"node": ">=20.0.0"
|
2023-04-21 10:46:24 +07:00
|
|
|
},
|
2021-08-22 07:29:09 +07:00
|
|
|
"scripts": {
|
2021-09-20 20:24:59 +07:00
|
|
|
"start": "pm2 start app.js",
|
2023-12-13 19:40:27 +01:00
|
|
|
"stop": "pm2 stop app.js",
|
2022-01-10 20:41:15 +07:00
|
|
|
"count": "find .certs -type d | grep '.\\.' | wc -l"
|
2021-08-22 07:29:09 +07:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
2023-12-12 19:45:36 +01:00
|
|
|
"author": "Pierre Lannoy",
|
2022-08-16 17:32:01 +07:00
|
|
|
"license": "MIT",
|
2021-08-22 07:29:09 +07:00
|
|
|
"dependencies": {
|
2023-04-21 10:46:24 +07:00
|
|
|
"async-lock": "^1.4.0",
|
|
|
|
|
"await-lock": "^2.2.2",
|
2026-04-25 18:21:58 +02:00
|
|
|
"dotenv": "^16.0.3",
|
2026-04-25 18:43:08 +02:00
|
|
|
"jose": "^3.20.4",
|
2026-04-25 18:24:58 +02:00
|
|
|
"pem": "^1.14.7",
|
2026-04-25 18:43:08 +02:00
|
|
|
"base32-encode": "^1.1.1",
|
|
|
|
|
"dns-packet": "^5.2.1"
|
2021-09-20 20:24:59 +07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-04-21 10:46:24 +07:00
|
|
|
"pm2": "^5.3.0"
|
2021-08-22 07:29:09 +07:00
|
|
|
}
|
2026-04-25 18:21:58 +02:00
|
|
|
}
|