forked from LayeredStudio/dns-records
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 910 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@layered/dns-records",
"version": "2.1.0",
"description": "Discover publicly available DNS Records for a domain",
"type": "module",
"keywords": [
"dns",
"domain",
"ns",
"nslookup",
"records"
],
"author": "Andrei Igna <andrei@laye.red>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LayeredStudio/dns-records.git"
},
"homepage": "https://github.com/LayeredStudio/dns-records#readme",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsc",
"dev": "node --no-warnings --enable-source-maps --import tsx --watch src/index.ts",
"test": "node --test"
},
"dependencies": {
"punycode": "^2.1.1"
},
"devDependencies": {
"@types/node": "^20.10.6",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}