Skip to content

Commit

Permalink
chore: package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
wmalinowski committed Oct 21, 2024
1 parent fcc8c0c commit 333b662
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 52 deletions.
101 changes: 51 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 29 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,48 @@
{
"name": "universal-doh",
"version": "0.0.1",
"version": "0.0.2",
"description": "DNS over HTTPS universal TypeScript library",
"keywords": [
"universal-doh",
"dns",
"dns-over-https",
"doh",
"dns-client",
"dns-resolver",
"typescript",
"nodejs",
"browser",
"web-workers",
"cloudflare-workers",
"bun",
"universal",
"idn",
"punycode",
"async-dns",
"dns-lookup",
"dns-query",
"cloudflare-dns",
"google-dns",
"quad9-dns"
],
"author": {
"name": "Wojciech Malinowski"
},
"license": "MIT",
"homepage": "https://wmalinowski.github.io/universal-doh/",
"repository": {
"type": "git",
"url": "git+https://github.com/wmalinowski/universal-doh.git"
},
"bugs": {
"url": "https://github.com/wmalinowski/universal-doh/issues"
},
"type": "module",
"files": [
"dist"
],
"main": "dist/universal-doh.umd.cjs",
"browser": "dist/universal-doh.umd.cjs",
"module": "dist/universal-doh.js",
"types": "dist/universal-doh.d.ts",
"exports": {
Expand Down
5 changes: 5 additions & 0 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
<link rel="icon" type="image/svg+xml" href="/universal-doh.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>universal-doh TS library</title>
<meta name="description" content="" />
<meta
name="keywords"
content="universal-doh, dns, dns-over-https, doh, dns client, dns resolver, typescript, nodejs, browser, web workers, cloudflare workers, bun, universal, idn, punycode, async dns, dns lookup, dns query, cloudflare dns, google dns, quad9 dns"
/>
<script type="module" src="/src/main.ts"></script>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion vite.site.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default defineConfig({
emptyOutDir: true,
cssCodeSplit: false,
},
base: "/universal-doh",
base: "/universal-doh/",
define: {
__LIB_VERSION__: JSON.stringify(process.env.npm_package_version),
},
Expand Down

0 comments on commit 333b662

Please sign in to comment.