-
Notifications
You must be signed in to change notification settings - Fork 276
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.42 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
57
58
59
60
61
62
{
"name": "proxy-agent",
"version": "7.0.0",
"type": "module",
"description": "Maps proxy protocols to `http.Agent` implementations",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"lint": "eslint . --ext .ts",
"pack": "node ../../scripts/pack.mjs"
},
"engines": {
"node": ">= 20"
},
"repository": {
"type": "git",
"url": "https://github.com/TooTallNate/proxy-agents.git",
"directory": "packages/proxy-agent"
},
"keywords": [
"http",
"https",
"socks",
"agent",
"mapping",
"proxy"
],
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"license": "MIT",
"dependencies": {
"agent-base": "workspace:*",
"debug": "catalog:",
"http-proxy-agent": "workspace:*",
"https-proxy-agent": "workspace:*",
"lru-cache": "^7.14.1",
"pac-proxy-agent": "workspace:*",
"proxy-from-env": "^2.0.0",
"socks-proxy-agent": "workspace:*"
},
"devDependencies": {
"@types/agent-base": "^4.2.0",
"@types/debug": "catalog:",
"@types/node": "catalog:",
"@types/proxy-from-env": "^1.0.1",
"@types/ws": "catalog:",
"async-listen": "catalog:",
"proxy": "workspace:*",
"socksv5": "catalog:",
"tsconfig": "workspace:*",
"typescript": "catalog:",
"ws": "catalog:"
}
}