-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.08 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@mono-vm/whois",
"version": "1.0.1",
"description": "Domain availability checks and WHOIS records for Node.js, over WHOIS and RDAP. 1651 extensions bundled, no dependencies.",
"keywords": [
"whois",
"rdap",
"domain",
"domain-availability",
"domain-check",
"domain-name",
"tld",
"registrar",
"dns",
"typescript"
],
"license": "MIT",
"author": "MonoVM <dev@monovm.com> (https://monovm.com)",
"homepage": "https://github.com/monovm/whois-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/monovm/whois-js.git"
},
"bugs": {
"url": "https://github.com/monovm/whois-js/issues"
},
"type": "module",
"engines": {
"node": ">=18"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./package.json": "./package.json"
},
"bin": {
"monovm-whois": "./dist/esm/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": [
"./dist/esm/cli.js",
"./dist/cjs/cli.js"
],
"scripts": {
"build": "node scripts/clean.mjs && npm run build:version && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && node scripts/postbuild.mjs",
"build:definitions": "node scripts/build-definitions.mjs",
"build:version": "node scripts/build-version.mjs",
"update:rdap": "node scripts/update-rdap-bootstrap.mjs && node scripts/build-definitions.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:network": "node scripts/test-network.mjs",
"prepack": "npm run build",
"prepublishOnly": "npm run typecheck && npm run test"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public"
}
}