feat: initial version

This commit is contained in:
Derrick Hammer 2023-07-15 08:23:08 -04:00
parent 59e5b134f3
commit 97f5b99698
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
9 changed files with 12671 additions and 1 deletions

5
.presetterrc.json Normal file
View File

@ -0,0 +1,5 @@
{
"preset": [
"@lumeweb/node-library-preset"
]
}

View File

@ -1,6 +1,8 @@
MIT License MIT License
Copyright (c) <year> <copyright holders> Copyright (c) 2023 Hammer Technologies LLC
Copyright (c) 2017-2018 Doug Bird
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,2 +1,3 @@
# tld-enum # tld-enum
Content is generated from https://github.com/incognico/list-of-top-level-domains.git

27
package.json Normal file
View File

@ -0,0 +1,27 @@
{
"name": "@lumeweb/tld-enum",
"version": "0.1.0",
"main": "lib/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "gitea@git.lumeweb.com:LumeWeb/tld-enum.git"
},
"devDependencies": {
"@lumeweb/node-library-preset": "^0.2.7",
"presetter": "*"
},
"readme": "ERROR: No README data found!",
"_id": "@lumeweb/tld-enum@0.1.0",
"scripts": {
"prepare": "presetter bootstrap",
"build": "run build",
"semantic-release": "semantic-release"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
}
}

1579
src/desc.ts Normal file

File diff suppressed because it is too large Load Diff

11
src/index.ts Normal file
View File

@ -0,0 +1,11 @@
import desc from "./desc.js";
import info from "./info.js";
import list from "./list.js";
import type from "./type.js";
module.exports = {
'desc': desc,
'info': info,
'list': list,
'type': type,
}

7887
src/info.ts Normal file

File diff suppressed because it is too large Load Diff

1579
src/list.ts Normal file

File diff suppressed because it is too large Load Diff

1579
src/type.ts Normal file

File diff suppressed because it is too large Load Diff