UNPKG

@vscode/proxy-agent

Version:

NodeJS http(s) agent implementation for VS Code

60 lines (59 loc) 1.62 kB
{ "name": "@vscode/proxy-agent", "version": "0.44.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" } }