forked from TooTallNate/proxy-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 3.14 KB
/
package.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "socks-proxy-agent",
"version": "8.0.4",
"description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": {
"email": "[email protected]",
"name": "Nathan Rajlich",
"url": "http://n8.io/"
},
"contributors": [
{
"name": "Kiko Beats",
"email": "[email protected]"
},
{
"name": "Josh Glazebrook",
"email": "[email protected]"
},
{
"name": "talmobi",
"email": "[email protected]"
},
{
"name": "Indospace.io",
"email": "[email protected]"
},
{
"name": "Kilian von Pflugk",
"email": "[email protected]"
},
{
"name": "Kyle",
"email": "[email protected]"
},
{
"name": "Matheus Fernandes",
"email": "[email protected]"
},
{
"name": "Ricky Miller",
"email": "[email protected]"
},
{
"name": "Shantanu Sharma",
"email": "[email protected]"
},
{
"name": "Tim Perry",
"email": "[email protected]"
},
{
"name": "Vadim Baryshev",
"email": "[email protected]"
},
{
"name": "jigu",
"email": "[email protected]"
},
{
"name": "Alba Mendez",
"email": "[email protected]"
},
{
"name": "Дмитрий Гуденков",
"email": "[email protected]"
},
{
"name": "Andrei Bitca",
"email": "[email protected]"
},
{
"name": "Andrew Casey",
"email": "[email protected]"
},
{
"name": "Brandon Ros",
"email": "[email protected]"
},
{
"name": "Dang Duy Thanh",
"email": "[email protected]"
},
{
"name": "Dimitar Nestorov",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/TooTallNate/proxy-agents.git",
"directory": "packages/socks-proxy-agent"
},
"keywords": [
"agent",
"http",
"https",
"proxy",
"socks",
"socks4",
"socks4a",
"socks5",
"socks5h"
],
"dependencies": {
"agent-base": "^7.1.1",
"debug": "^4.3.7",
"socks": "^2.8.3"
},
"devDependencies": {
"@types/async-retry": "^1.4.9",
"@types/debug": "^4.1.12",
"@types/dns2": "^2.0.9",
"@types/jest": "^29.5.14",
"@types/node": "^14.18.63",
"async-listen": "^3.0.1",
"async-retry": "^1.3.3",
"cacheable-lookup": "^6.1.0",
"dns2": "^2.1.0",
"jest": "^29.7.0",
"proxy": "workspace:*",
"socksv5": "github:TooTallNate/socksv5#fix/dstSock-close-event",
"ts-jest": "^29.2.5",
"tsconfig": "workspace:*",
"typescript": "^5.6.3"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"build": "tsc",
"test": "jest --env node --verbose --bail test/test.ts",
"test-e2e": "jest --env node --verbose --bail test/e2e.test.ts",
"lint": "eslint . --ext .ts",
"pack": "node ../../scripts/pack.mjs"
},
"license": "MIT"
}