@journeyapps/https-proxy-socket
Version:
Node library to enable opening Socket connections via an HTTPS proxy.
54 lines • 1.4 kB
JSON
{
"name": "@journeyapps/https-proxy-socket",
"version": "1.0.1",
"author": "JourneyApps",
"repository": "journeyapps/https-proxy-socket",
"license": "MIT",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"exports": {
".": {
"import": {
"default": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts"
},
"require": {
"default": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts"
}
}
},
"bin": {
"mongo-replicas": "lib/esm/bin/mongoReplicas.js"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/agent-base": "^4.2.0",
"@types/node": "^24.7.2",
"async-listen": "^3.1.0",
"lerna": "^9.0.0",
"node-fetch": "^3.3.2",
"prettier": "^3.6.2",
"proxy": "^2.2.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"agent-base": "^7.1.4",
"socks": "^2.8.7"
},
"files": [
"/README.md",
"/lib"
],
"scripts": {
"ci:publish": "changeset publish && git push --follow-tags",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"clean": "rm -rf ./lib && tsc -b --clean",
"clean:modules": "rm -rf node_modules",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "pnpm build:esm && pnpm build:cjs",
"test": "vitest run"
}
}