forked from Tahul/is-valid-domain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.77 KB
/
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
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
{
"name": "@arcblock/is-valid-domain",
"version": "1.0.5",
"publishConfig": {
"access": "public"
},
"description": "Validate domain name",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/tahul/is-valid-domain"
},
"keywords": [
"valid",
"validate",
"validator",
"check",
"checker",
"domain",
"subdomain",
"wildcard",
"host",
"hostname"
],
"author": {
"name": "Miguel Mota",
"email": "[email protected]",
"url": "https://miguelmota.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tahul/is-valid-domain/issues"
},
"homepage": "https://github.com/tahul/is-valid-domain",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"data"
],
"scripts": {
"build": "unbuild -c build.config.ts",
"stub": "unbuild -c build.config.ts --stub",
"lint": "eslint --cache --quiet",
"lint:fix": "eslint --cache --fix --quiet",
"release": "release-it",
"test": "pnpm lint && vitest run --coverage",
"test:ui": "vitest --ui --open=false",
"typecheck": "tsc --noEmit --skipLibCheck",
"build:example": "browserify example/main.js -o example/dist/bundle.js",
"generate": "node data/generate.js"
},
"dependencies": {
"punycode": "^2.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.9.0",
"@types/node": "^20.11.30",
"@vitest/coverage-v8": "^1.4.0",
"benchmark": "^2.1.4",
"eslint": "^8.57.0",
"jiti": "1.21.0",
"release-it": "^17.1.1",
"typescript": "^5.4.3",
"unbuild": "^2.0.0",
"vitest": "^1.4.0"
}
}