forked from felicienfrancois/node-electron-proxy-agent
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "@vscode/proxy-agent",
"version": "0.41.0",
"description": "NodeJS http(s) agent implementation for VS Code",
"main": "out/index.js",
"types": "out/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/microsoft/vscode-proxy-agent.git"
},
"keywords": [
"proxy",
"agent",
"http",
"https",
"socks",
"request",
"access"
],
"authors": [
"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"Félicien François <felicien@tweakstyle.com>",
"Microsoft Corporation"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/vscode-proxy-agent/issues"
},
"homepage": "https://github.com/microsoft/vscode-proxy-agent",
"engines": {
"node": ">=22.15.0"
},
"dependencies": {
"@tootallnate/once": "^3.0.0",
"agent-base": "^7.0.1",
"debug": "^4.3.4",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.2",
"socks-proxy-agent": "^8.0.1",
"undici": "^7.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.9",
"@types/mocha": "^10.0.10",
"@types/node": "^22.18.10",
"mocha": "^11.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test:unit": "mocha --exit -r ts-node/register tests/src/**/*.test.ts",
"test": "npm run test:unit && cd tests && docker compose run --rm test-direct-client && docker compose run --rm test-proxy-client; e=$?; docker compose down; exit $e"
},
"optionalDependencies": {
"@vscode/windows-ca-certs": "^0.3.1"
}
}