-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "worldpool",
"version": "0.1.0",
"description": "Global proxy pool. Self-maintaining, free, open.",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"pipeline": "tsx src/pipeline.ts",
"pipeline:scrape": "tsx src/pipeline-scrape.ts",
"pipeline:validate": "tsx src/pipeline-validate.ts",
"pipeline:merge": "tsx src/pipeline-merge.ts",
"build": "tsc",
"lint": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^1.19.12",
"axios": "^1.7.0",
"b4a": "^1.8.0",
"better-sqlite3": "^11.0.0",
"hono": "^4.0.0",
"hypercore-crypto": "^3.6.1",
"hyperswarm": "^4.17.0",
"maxmind": "^5.0.6",
"msgpack-lite": "^0.1.26",
"p-limit": "^6.0.0",
"proxy-agent": "^6.4.0",
"socks-proxy-agent": "^8.0.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/msgpack-lite": "^0.1.12",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
},
"keywords": [
"proxy",
"proxy-list",
"proxy-checker",
"proxy-scraper",
"proxy-pool",
"socks5",
"socks4",
"free-proxy"
],
"author": "CelestialBrain",
"license": "AGPL-3.0-only",
"private": true
}