UNPKG

proxy-auto-ts

Version:

A comprehensive TypeScript library for automatic proxy management with validation, rotation, and intelligent selection

72 lines (71 loc) 1.81 kB
{ "name": "proxy-auto-ts", "version": "1.1.2", "description": "A comprehensive TypeScript library for automatic proxy management with validation, rotation, and intelligent selection", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "files": [ "dist", "proxies.txt", "README.md", "LICENSE" ], "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "scripts": { "build": "tsc && bun build src/index.ts --outdir dist --target node --format esm", "build:lib": "tsc", "dev": "bun run src/fast-test.ts", "proxy": "bun run src/proxy.ts", "test": "bun run src/fast-test.ts", "test:full": "bun run src/test.ts", "test:quick": "bun run src/fast-test.ts", "examples": "bun run src/examples.ts", "prepublishOnly": "bun run build", "clean": "rm -rf dist" }, "keywords": [ "proxy", "http", "https", "scraping", "typescript", "proxy-rotation", "proxy-validation", "web-scraping", "automation", "proxy-manager" ], "author": "MythEclipse <asepharyana71@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/MythEclipse/proxy-auto-ts.git" }, "bugs": { "url": "https://github.com/MythEclipse/proxy-auto-ts/issues" }, "homepage": "https://github.com/MythEclipse/proxy-auto-ts#readme", "dependencies": { "@types/node": "^22.10.6", "axios": "^1.7.9", "https-proxy-agent": "^7.0.6", "p-limit": "^6.2.0", "pino": "^9.6.0", "pino-pretty": "^13.0.0", "puppeteer": "^23.11.1", "puppeteer-real-browser": "^1.3.22" }, "devDependencies": { "typescript": "^5.7.2" }, "engines": { "node": ">=18.0.0" } }