-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 923 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 923 Bytes
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
{
"name": "tor-proxy-agent",
"version": "0.1.1",
"description": "A lightweight Node.js wrapper for routing HTTP(S) traffic through Tor, including optional ControlPort circuit rotation.",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"files": [
"src",
"README.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test",
"lint": "eslint ."
},
"keywords": [
"tor",
"socks",
"proxy",
"ip",
"privacy",
"http",
"request",
"onion router",
"agent",
"security"
],
"license": "MIT",
"dependencies": {
"request": "^2.88.2",
"socks-proxy-agent": "~4.0.1",
"dotenv": "^16.4.5"
},
"devDependencies": {
"eslint": "^9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hrach347/tor-proxy-agent.git"
}
}