domain-rank 0.1.1

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.
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "domain-rank",
3
+ "version": "0.1.1",
4
+ "description": "Domain Rank Top Million domains, source names, duplicates, and favicons",
5
+ "scripts": {
6
+ "download": "bun src/import-domains-1m.js",
7
+ "info": "bun src/parse-domain-info.ts",
8
+ "merge": "bun src/merge-domain-lists.ts",
9
+ "favicons": "bun src/favicons.js",
10
+ "test": "bun test",
11
+ "build": "tsc",
12
+ "build:export": "vite build --config vite.config.ts",
13
+ "export": "node dist/export.cjs",
14
+ "export:all": "pnpm run build:export && pnpm run export -- --formats=json,csv,ndjson",
15
+ "type-check": "tsc --noEmit"
16
+ },
17
+ "type": "module",
18
+ "dependencies": {
19
+ "fuse.js": "^7.1.0",
20
+ "grab-url": "^1.6.19",
21
+ "tldts": "^7.0.11",
22
+ "unzipper": "^0.12.3",
23
+ "vitest": "^1.6.0",
24
+ "zlib": "^1.0.5"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^22.0.0",
28
+ "cors": "^2.8.5",
29
+ "express": "^5.1.0",
30
+ "tsx": "^4.19.2",
31
+ "typescript": "^5.7.2"
32
+ }
33
+ }