@dnscmp/providers 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +34 -34
  2. package/package.json +40 -40
  3. package/src/index.ts +17 -17
package/README.md CHANGED
@@ -1,34 +1,34 @@
1
- # @dnscmp/providers
2
-
3
- Curated list of public DNS providers for use with [`@dnscmp/core`](../core).
4
-
5
- ## Usage
6
-
7
- ```ts
8
- import { dnscmp } from "@dnscmp/core";
9
- import { providers } from "@dnscmp/providers";
10
-
11
- const results = await dnscmp({ providers });
12
- ```
13
-
14
- ## Providers
15
-
16
- | Name | Resolvers |
17
- | --- | --- |
18
- | Cloudflare | `1.1.1.1`, `1.0.0.1` |
19
- | Google | `8.8.8.8`, `8.8.4.4` |
20
- | Quad9 | `9.9.9.9` |
21
- | Quad9 (ECS) | `9.9.9.11` |
22
- | OpenDNS | `208.67.222.222`, `208.67.220.220` |
23
- | AdGuard | `94.140.14.14` |
24
- | NextDNS | `45.90.28.55` |
25
- | UncensoredDNS | `91.239.100.100` |
26
- | Hurricane Electric | `74.82.42.42` |
27
- | DNS.WATCH | `84.200.69.80` |
28
- | Level3 | `4.2.2.1` |
29
-
30
- ## Build
31
-
32
- ```bash
33
- bun run build
34
- ```
1
+ # @dnscmp/providers
2
+
3
+ Curated list of public DNS providers for use with [`@dnscmp/core`](../core).
4
+
5
+ ## Usage
6
+
7
+ ```ts
8
+ import { dnscmp } from "@dnscmp/core";
9
+ import { providers } from "@dnscmp/providers";
10
+
11
+ const results = await dnscmp({ providers });
12
+ ```
13
+
14
+ ## Providers
15
+
16
+ | Name | Resolvers |
17
+ | --- | --- |
18
+ | Cloudflare | `1.1.1.1`, `1.0.0.1` |
19
+ | Google | `8.8.8.8`, `8.8.4.4` |
20
+ | Quad9 | `9.9.9.9` |
21
+ | Quad9 (ECS) | `9.9.9.11` |
22
+ | OpenDNS | `208.67.222.222`, `208.67.220.220` |
23
+ | AdGuard | `94.140.14.14` |
24
+ | NextDNS | `45.90.28.55` |
25
+ | UncensoredDNS | `91.239.100.100` |
26
+ | Hurricane Electric | `74.82.42.42` |
27
+ | DNS.WATCH | `84.200.69.80` |
28
+ | Level3 | `4.2.2.1` |
29
+
30
+ ## Build
31
+
32
+ ```bash
33
+ bun run build
34
+ ```
package/package.json CHANGED
@@ -1,40 +1,40 @@
1
- {
2
- "name": "@dnscmp/providers",
3
- "description": "Curated list of public DNS providers for use with dnscmp.",
4
- "version": "0.0.1",
5
- "type": "module",
6
- "exports": {
7
- ".": {
8
- "bun": "./src/index.ts",
9
- "types": "./dist/index.d.ts",
10
- "default": "./dist/index.js"
11
- }
12
- },
13
- "files": [
14
- "dist",
15
- "src"
16
- ],
17
- "homepage": "https://github.com/oBusk/dnscmp#readme",
18
- "bugs": {
19
- "url": "https://github.com/oBusk/dnscmp/issues"
20
- },
21
- "repository": {
22
- "type": "git",
23
- "url": "git+https://github.com/oBusk/dnscmp",
24
- "directory": "packages/providers"
25
- },
26
- "license": "MIT",
27
- "author": "Oscar Busk (https://github.com/oBusk)",
28
- "scripts": {
29
- "build": "bun run build.ts"
30
- },
31
- "dependencies": {
32
- "@dnscmp/types": "workspace:*"
33
- },
34
- "devDependencies": {
35
- "@types/bun": "latest",
36
- "bun-plugin-isolated-decl": "^0.2",
37
- "oxc-transform": "~0.123",
38
- "typescript": "^5"
39
- }
40
- }
1
+ {
2
+ "name": "@dnscmp/providers",
3
+ "description": "Curated list of public DNS providers for use with dnscmp.",
4
+ "version": "0.0.3",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "bun": "./src/index.ts",
9
+ "types": "./dist/index.d.ts",
10
+ "default": "./dist/index.js"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "src"
16
+ ],
17
+ "homepage": "https://github.com/oBusk/dnscmp#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/oBusk/dnscmp/issues"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/oBusk/dnscmp.git",
24
+ "directory": "packages/providers"
25
+ },
26
+ "license": "MIT",
27
+ "author": "Oscar Busk (https://github.com/oBusk)",
28
+ "scripts": {
29
+ "build": "bun run build.ts"
30
+ },
31
+ "dependencies": {
32
+ "@dnscmp/types": "0.0.1"
33
+ },
34
+ "devDependencies": {
35
+ "@types/bun": "latest",
36
+ "bun-plugin-isolated-decl": "^0.2",
37
+ "oxc-transform": "~0.123",
38
+ "typescript": "^5"
39
+ }
40
+ }
package/src/index.ts CHANGED
@@ -1,17 +1,17 @@
1
- import type { DnsProvider } from "@dnscmp/types";
2
-
3
- export type { DnsProvider };
4
-
5
- export const providers: readonly DnsProvider[] = [
6
- { name: "Cloudflare", resolvers: ["1.1.1.1", "1.0.0.1"] },
7
- { name: "Google", resolvers: ["8.8.8.8", "8.8.4.4"] },
8
- { name: "Quad9", resolvers: ["9.9.9.9"] },
9
- { name: "Quad9 (ECS)", resolvers: ["9.9.9.11"] },
10
- { name: "OpenDNS", resolvers: ["208.67.222.222", "208.67.220.220"] },
11
- { name: "AdGuard", resolvers: ["94.140.14.14"] },
12
- { name: "NextDNS", resolvers: ["45.90.28.55"] },
13
- { name: "UncensoredDNS", resolvers: ["91.239.100.100"] },
14
- { name: "Hurricane Electric", resolvers: ["74.82.42.42"] },
15
- { name: "DNS.WATCH", resolvers: ["84.200.69.80"] },
16
- { name: "Level3", resolvers: ["4.2.2.1"] },
17
- ];
1
+ import type { DnsProvider } from "@dnscmp/types";
2
+
3
+ export type { DnsProvider };
4
+
5
+ export const providers: readonly DnsProvider[] = [
6
+ { name: "Cloudflare", resolvers: ["1.1.1.1", "1.0.0.1"] },
7
+ { name: "Google", resolvers: ["8.8.8.8", "8.8.4.4"] },
8
+ { name: "Quad9", resolvers: ["9.9.9.9"] },
9
+ { name: "Quad9 (ECS)", resolvers: ["9.9.9.11"] },
10
+ { name: "OpenDNS", resolvers: ["208.67.222.222", "208.67.220.220"] },
11
+ { name: "AdGuard", resolvers: ["94.140.14.14"] },
12
+ { name: "NextDNS", resolvers: ["45.90.28.55"] },
13
+ { name: "UncensoredDNS", resolvers: ["91.239.100.100"] },
14
+ { name: "Hurricane Electric", resolvers: ["74.82.42.42"] },
15
+ { name: "DNS.WATCH", resolvers: ["84.200.69.80"] },
16
+ { name: "Level3", resolvers: ["4.2.2.1"] },
17
+ ];