This commit is contained in:
starified
2026-04-21 22:03:19 -04:00
parent 36e2d11f2e
commit 08bf320b57
4681 changed files with 566542 additions and 0 deletions

9
node_modules/@hapi/tlds/LICENSE.md generated vendored Normal file
View File

@@ -0,0 +1,9 @@
Copyright (c) 2019-2022, Sideway, Inc. and Project contributors
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

14
node_modules/@hapi/tlds/README.md generated vendored Normal file
View File

@@ -0,0 +1,14 @@
# @hapi/tlds
#### TLDS list for domain validation.
**tlds** is part of the **joi** ecosystem.
### Visit the [joi.dev](https://joi.dev) Developer Portal for tutorials, documentation, and support
## Useful resources
- [Documentation and API](https://joi.dev/module/tlds/)
- [Versions status](https://joi.dev/resources/status/#tlds)
- [Changelog](https://joi.dev/module/tlds/changelog/)
- [Project policies](https://joi.dev/policies/)

2
node_modules/@hapi/tlds/dist/commonjs/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export declare const tlds: Set<string>;
//# sourceMappingURL=index.d.ts.map

1
node_modules/@hapi/tlds/dist/commonjs/index.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,aAAgD,CAAC"}

6
node_modules/@hapi/tlds/dist/commonjs/index.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.tlds = void 0;
const tlds_js_1 = require("./tlds.js");
exports.tlds = new Set(tlds_js_1.TLDS.map((tld) => tld.toLowerCase()));
//# sourceMappingURL=index.js.map

1
node_modules/@hapi/tlds/dist/commonjs/index.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,uCAAiC;AAEpB,QAAA,IAAI,GAAG,IAAI,GAAG,CAAC,cAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC","sourcesContent":["import { TLDS } from './tlds.js';\n\nexport const tlds = new Set(TLDS.map((tld) => tld.toLowerCase()));\n"]}

3
node_modules/@hapi/tlds/dist/commonjs/package.json generated vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"type": "commonjs"
}

2
node_modules/@hapi/tlds/dist/commonjs/tlds.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export declare const TLDS: string[];
//# sourceMappingURL=tlds.d.ts.map

1
node_modules/@hapi/tlds/dist/commonjs/tlds.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"tlds.d.ts","sourceRoot":"","sources":["../../src/tlds.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI,EAAE,MAAM,EA65CxB,CAAC"}

1444
node_modules/@hapi/tlds/dist/commonjs/tlds.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

1
node_modules/@hapi/tlds/dist/commonjs/tlds.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

2
node_modules/@hapi/tlds/dist/esm/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export declare const tlds: Set<string>;
//# sourceMappingURL=index.d.ts.map

1
node_modules/@hapi/tlds/dist/esm/index.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,aAAgD,CAAC"}

3
node_modules/@hapi/tlds/dist/esm/index.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import { TLDS } from './tlds.js';
export const tlds = new Set(TLDS.map((tld) => tld.toLowerCase()));
//# sourceMappingURL=index.js.map

1
node_modules/@hapi/tlds/dist/esm/index.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,MAAM,CAAC,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC","sourcesContent":["import { TLDS } from './tlds.js';\n\nexport const tlds = new Set(TLDS.map((tld) => tld.toLowerCase()));\n"]}

3
node_modules/@hapi/tlds/dist/esm/package.json generated vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"type": "module"
}

2
node_modules/@hapi/tlds/dist/esm/tlds.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export declare const TLDS: string[];
//# sourceMappingURL=tlds.d.ts.map

1
node_modules/@hapi/tlds/dist/esm/tlds.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"tlds.d.ts","sourceRoot":"","sources":["../../src/tlds.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI,EAAE,MAAM,EA65CxB,CAAC"}

1441
node_modules/@hapi/tlds/dist/esm/tlds.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

1
node_modules/@hapi/tlds/dist/esm/tlds.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

63
node_modules/@hapi/tlds/package.json generated vendored Normal file
View File

@@ -0,0 +1,63 @@
{
"name": "@hapi/tlds",
"description": "TLDS list for domain validation",
"version": "1.1.6",
"repository": "git://github.com/hapijs/tlds",
"type": "module",
"tshy": {
"main": true,
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/commonjs/index.d.ts",
"files": [
"dist"
],
"keywords": [
"domain",
"tlds"
],
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/eslint-plugin": "^7.0.0",
"@hapi/lab": "^26.0.0",
"@hapi/wreck": "^18.1.0",
"@types/node": "^18.19.59",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tshy": "^2.0.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
},
"scripts": {
"prepare": "tshy",
"test": "lab -t 100 -L --typescript",
"test-cov-html": "lab -t 100 -L -r html -o coverage.html",
"format": "prettier --write '**/*.{cjs,ts,md}'",
"update-list": "node --loader ts-node/esm .github/scripts/update-list.ts"
},
"license": "BSD-3-Clause"
}