| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 | {  "name": "socks-proxy-agent",  "version": "8.0.3",  "description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",  "main": "./dist/index.js",  "types": "./dist/index.d.ts",  "files": [    "dist"  ],  "author": {    "email": "nathan@tootallnate.net",    "name": "Nathan Rajlich",    "url": "http://n8.io/"  },  "contributors": [    {      "name": "Kiko Beats",      "email": "josefrancisco.verdu@gmail.com"    },    {      "name": "Josh Glazebrook",      "email": "josh@joshglazebrook.com"    },    {      "name": "talmobi",      "email": "talmobi@users.noreply.github.com"    },    {      "name": "Indospace.io",      "email": "justin@indospace.io"    },    {      "name": "Kilian von Pflugk",      "email": "github@jumoog.io"    },    {      "name": "Kyle",      "email": "admin@hk1229.cn"    },    {      "name": "Matheus Fernandes",      "email": "matheus.frndes@gmail.com"    },    {      "name": "Ricky Miller",      "email": "richardkazuomiller@gmail.com"    },    {      "name": "Shantanu Sharma",      "email": "shantanu34@outlook.com"    },    {      "name": "Tim Perry",      "email": "pimterry@gmail.com"    },    {      "name": "Vadim Baryshev",      "email": "vadimbaryshev@gmail.com"    },    {      "name": "jigu",      "email": "luo1257857309@gmail.com"    },    {      "name": "Alba Mendez",      "email": "me@jmendeth.com"    },    {      "name": "Дмитрий Гуденков",      "email": "Dimangud@rambler.ru"    },    {      "name": "Andrei Bitca",      "email": "63638922+andrei-bitca-dc@users.noreply.github.com"    },    {      "name": "Andrew Casey",      "email": "amcasey@users.noreply.github.com"    },    {      "name": "Brandon Ros",      "email": "brandonros1@gmail.com"    },    {      "name": "Dang Duy Thanh",      "email": "thanhdd.it@gmail.com"    },    {      "name": "Dimitar Nestorov",      "email": "8790386+dimitarnestorov@users.noreply.github.com"    }  ],  "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.4",    "socks": "^2.7.1"  },  "devDependencies": {    "@types/async-retry": "^1.4.5",    "@types/debug": "^4.1.7",    "@types/dns2": "^2.0.3",    "@types/jest": "^29.5.1",    "@types/node": "^14.18.45",    "async-listen": "^3.0.0",    "async-retry": "^1.3.3",    "cacheable-lookup": "^6.1.0",    "dns2": "^2.1.0",    "jest": "^29.5.0",    "socksv5": "github:TooTallNate/socksv5#fix/dstSock-close-event",    "ts-jest": "^29.1.0",    "typescript": "^5.0.4",    "proxy": "2.1.1",    "tsconfig": "0.0.0"  },  "engines": {    "node": ">= 14"  },  "license": "MIT",  "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"  }}
 |