-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 911 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 911 Bytes
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
40
{
"name": "whoiser",
"version": "2.0.0-beta.10",
"description": "Whois info for domains, TLDs, IPs, and ASN",
"type": "module",
"keywords": [
"whois",
"domain",
"tld",
"ip"
],
"author": "Andrei Igna <andrei@laye.red>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LayeredStudio/whoiser.git"
},
"homepage": "https://github.com/LayeredStudio/whoiser#readme",
"exports": "./dist/whoiser.js",
"types": "./dist/whoiser.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsc",
"dev": "node --enable-source-maps --watch src/whoiser.ts",
"prettier": "prettier \"src/*.ts\"",
"prettier:write": "npm run prettier -- --write",
"test": "node --test src/*.test.ts"
},
"dependencies": {
"punycode-esm": "^1.0.15"
},
"devDependencies": {
"@types/node": "^24.2.1",
"prettier": "^3.5.3",
"typescript": "^5.7.2"
}
}